Code Monkey home page Code Monkey logo

codewalk's People

Contributors

changemewtf avatar

Stargazers

 avatar

codewalk's Issues

Default filename

When codewalk is run without any arguments provided, it looks for files with basename examples and uses the extension to decide what command to use to run the file.

If there are multiple files with basename examples, it runs the one with the most recent modification time.

View output from a specific example

A command line option can be provided to codewalk which causes output from a previous example to be displayed, as opposed to the example printed last.

# examples.rb
colors = %w(red white blue)

print "\nEXAMPLE 1\n"
puts "pop() from the end: #{colors.pop()}"

print "\nEXAMPLE 2\n"
puts "shift() from the start: #{colors.shift()}"
$ codewalk ruby examples.rb
shift() from the start: red

$ codewalk -e1 ruby examples.rb
pop() from the end: blue

Thoughts:

  • Having to put the -e1 in the middle of the already-typed command would be time-consuming and error-prone.
  • But putting -e1 at the end would be ambiguous: is the option being passed to codewalk or to the command codewalk is running (in this case ruby examples.rb)?
  • Perhaps the answer is codewalk -r"ruby examples.rb" -e1
  • Or codewalk <(ruby examples.rb) -e1
  • Or codewalk ruby examples.rb -- -e1
  • Or codewalk -r ruby -f examples.rb -e1
  • Or codewalk -f examples.rb -e1 and require a shebang/executable file
  • Or codewalk ruby examples.rb 1, where ruby, examples.rb and 1 are all positional parameters, as opposed to the current functionality which just evaluates "$@"

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.