Skip to content

Instantly share code, notes, and snippets.

@hipertracker
Created January 26, 2009 18:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hipertracker/52901 to your computer and use it in GitHub Desktop.
Save hipertracker/52901 to your computer and use it in GitHub Desktop.
Złożoność jezyka
Ansi C: http://flickr.com/photos/nicksieger/281055530/
Ruby: http://flickr.com/photos/nicksieger/280661836/in/photostream/
Python: http://flickr.com/photos/nicksieger/281055485/
JavaScript: http://flickr.com/photos/nicksieger/280662871/in/photostream/
Java: http://flickr.com/photos/nicksieger/280662707/in/photostream/
Diassemblacja kodu
# Ruby 1.9:
puts RubyVM::InstructionSequence.compile("1+1").disasm
puts RubyVM::InstructionSequence.compile("def fun() 1+1 end").disasm
# Python:
import dis
def fun(): 1+1
print dis.dis(fun)
Niespójności (Ruby vs Python)
http://groups.google.com/group/pl.comp.lang.python/msg/080e9b7be996e3e5?dmode=source&pli=1
How to think like a Pythonista?
http://python.net/crew/mwh/hacks/objectthink.html
Ruby eye for the python guy
http://web.archive.org/web/20050204062537/http://www.ruby-doc.org/RubyEyeForThePythonGuy.html
PHP sucks rant
http://b.lericson.se/~toxik/php_sucks_rant.log
Problems with Lisp (+ comments about PHP)
http://blog.jrock.us/articles/Problems%20with%20Lisp.pod
Benchmarks:
https://gist.github.com/734305
Real world usage
http://www.ruby-lang.org/en/documentation/success-stories
http://kenai.com/projects/jruby/pages/SuccessStories
http://www.instiki.org/show/RealWorldUsage
neo4j & rails
https://github.com/andreasronge/neo4j
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment