What does File.readlines($file)[z] mean in ruby?Calling shell commands from RubyA concise explanation of nil v. empty v. blank in Ruby on RailsHow to write a switch statement in RubyWhat does ||= (or-equals) mean in Ruby?How to convert a string to lower or upper case in RubyWhat does map(&:name) mean in Ruby?What does %w(array) mean?Check if a value exists in an array in RubyWhat does <![CDATA[]]> in XML mean?What is attr_accessor in Ruby?

Is exact Kanji stroke length important?

Inappropriate reference requests from Journal reviewers

Why escape if the_content isnt?

What is the best translation for "slot" in the context of multiplayer video games?

Do the temporary hit points from the Battlerager barbarian's Reckless Abandon stack if I make multiple attacks on my turn?

Would this custom Sorcerer variant that can only learn any verbal-component-only spell be unbalanced?

How to check is there any negative term in a large list?

How did Doctor Strange see the winning outcome in Avengers: Infinity War?

How did Arya survive the stabbing?

How do I go from 300 unfinished/half written blog posts, to published posts?

Is it appropriate to ask a job candidate if we can record their interview?

How do we know the LHC results are robust?

How to write papers efficiently when English isn't my first language?

Pole-zeros of a real-valued causal FIR system

Failed to fetch jessie backports repository

How to safely derail a train during transit?

Increase performance creating Mandelbrot set in python

Why, precisely, is argon used in neutrino experiments?

Short story about space worker geeks who zone out by 'listening' to radiation from stars

India just shot down a satellite from the ground. At what altitude range is the resulting debris field?

What is the opposite of 'gravitas'?

Escape a backup date in a file name

Detecting if an element is found inside a container

Integer addition + constant, is it a group?



What does File.readlines($file)[z] mean in ruby?


Calling shell commands from RubyA concise explanation of nil v. empty v. blank in Ruby on RailsHow to write a switch statement in RubyWhat does ||= (or-equals) mean in Ruby?How to convert a string to lower or upper case in RubyWhat does map(&:name) mean in Ruby?What does %w(array) mean?Check if a value exists in an array in RubyWhat does <![CDATA[]]> in XML mean?What is attr_accessor in Ruby?













-2















I am study XXE, and I clone the XXEinjector int github: https://github.com/enjoiz/XXEinjector, but I got a problem, there is a piece of code, break if File.readlines($file)[z].chomp.empty?, I really can't understand what does this mean, where does the [z] means??










share|improve this question


























    -2















    I am study XXE, and I clone the XXEinjector int github: https://github.com/enjoiz/XXEinjector, but I got a problem, there is a piece of code, break if File.readlines($file)[z].chomp.empty?, I really can't understand what does this mean, where does the [z] means??










    share|improve this question
























      -2












      -2








      -2








      I am study XXE, and I clone the XXEinjector int github: https://github.com/enjoiz/XXEinjector, but I got a problem, there is a piece of code, break if File.readlines($file)[z].chomp.empty?, I really can't understand what does this mean, where does the [z] means??










      share|improve this question














      I am study XXE, and I clone the XXEinjector int github: https://github.com/enjoiz/XXEinjector, but I got a problem, there is a piece of code, break if File.readlines($file)[z].chomp.empty?, I really can't understand what does this mean, where does the [z] means??







      ruby xml






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 21 at 15:57









      anonymousanonymous

      306




      306






















          1 Answer
          1






          active

          oldest

          votes


















          4














          File#readlines returns an array of lines and z in an index in this array.



          It’s initialized here and is altered here.




          Sidenote: the code there is absolutely not ruby idiomatic and has tons of code smell. I strongly discourage you to study ruby by examining this code.






          share|improve this answer


















          • 2





            Agree, the sidenote is very important in this context.

            – spickermann
            Mar 21 at 16:15











          • Very well,in fact, I'm not from an English country, so I want to ask what does "tons of code smell" mean??

            – anonymous
            Mar 22 at 0:53











          • Basically it means every single line of code done in counter-idiomatic way.

            – Aleksei Matiushkin
            Mar 22 at 3:18










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55284502%2fwhat-does-file-readlinesfilez-mean-in-ruby%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          4














          File#readlines returns an array of lines and z in an index in this array.



          It’s initialized here and is altered here.




          Sidenote: the code there is absolutely not ruby idiomatic and has tons of code smell. I strongly discourage you to study ruby by examining this code.






          share|improve this answer


















          • 2





            Agree, the sidenote is very important in this context.

            – spickermann
            Mar 21 at 16:15











          • Very well,in fact, I'm not from an English country, so I want to ask what does "tons of code smell" mean??

            – anonymous
            Mar 22 at 0:53











          • Basically it means every single line of code done in counter-idiomatic way.

            – Aleksei Matiushkin
            Mar 22 at 3:18















          4














          File#readlines returns an array of lines and z in an index in this array.



          It’s initialized here and is altered here.




          Sidenote: the code there is absolutely not ruby idiomatic and has tons of code smell. I strongly discourage you to study ruby by examining this code.






          share|improve this answer


















          • 2





            Agree, the sidenote is very important in this context.

            – spickermann
            Mar 21 at 16:15











          • Very well,in fact, I'm not from an English country, so I want to ask what does "tons of code smell" mean??

            – anonymous
            Mar 22 at 0:53











          • Basically it means every single line of code done in counter-idiomatic way.

            – Aleksei Matiushkin
            Mar 22 at 3:18













          4












          4








          4







          File#readlines returns an array of lines and z in an index in this array.



          It’s initialized here and is altered here.




          Sidenote: the code there is absolutely not ruby idiomatic and has tons of code smell. I strongly discourage you to study ruby by examining this code.






          share|improve this answer













          File#readlines returns an array of lines and z in an index in this array.



          It’s initialized here and is altered here.




          Sidenote: the code there is absolutely not ruby idiomatic and has tons of code smell. I strongly discourage you to study ruby by examining this code.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 21 at 16:02









          Aleksei MatiushkinAleksei Matiushkin

          84.4k95795




          84.4k95795







          • 2





            Agree, the sidenote is very important in this context.

            – spickermann
            Mar 21 at 16:15











          • Very well,in fact, I'm not from an English country, so I want to ask what does "tons of code smell" mean??

            – anonymous
            Mar 22 at 0:53











          • Basically it means every single line of code done in counter-idiomatic way.

            – Aleksei Matiushkin
            Mar 22 at 3:18












          • 2





            Agree, the sidenote is very important in this context.

            – spickermann
            Mar 21 at 16:15











          • Very well,in fact, I'm not from an English country, so I want to ask what does "tons of code smell" mean??

            – anonymous
            Mar 22 at 0:53











          • Basically it means every single line of code done in counter-idiomatic way.

            – Aleksei Matiushkin
            Mar 22 at 3:18







          2




          2





          Agree, the sidenote is very important in this context.

          – spickermann
          Mar 21 at 16:15





          Agree, the sidenote is very important in this context.

          – spickermann
          Mar 21 at 16:15













          Very well,in fact, I'm not from an English country, so I want to ask what does "tons of code smell" mean??

          – anonymous
          Mar 22 at 0:53





          Very well,in fact, I'm not from an English country, so I want to ask what does "tons of code smell" mean??

          – anonymous
          Mar 22 at 0:53













          Basically it means every single line of code done in counter-idiomatic way.

          – Aleksei Matiushkin
          Mar 22 at 3:18





          Basically it means every single line of code done in counter-idiomatic way.

          – Aleksei Matiushkin
          Mar 22 at 3:18



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55284502%2fwhat-does-file-readlinesfilez-mean-in-ruby%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript