First, install NestedVM:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'yaml' | |
y=[] | |
(1..10000).each{|x| | |
#next unless x/2==(1.0*x)/2 | |
z=x | |
divisors=[1] | |
_continue=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# gem install benchmark_suite | |
require 'benchmark/ips' | |
class Foo1 | |
def foo | |
"bar" | |
end | |
def foo_call | |
foo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Foo | |
def initialize | |
@var = 0 | |
# pad the variables apart to try to force them onto different cache lines | |
32.times do |i| | |
eval "@pad#{i} = nil" | |
end | |
@updated = false | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Java impl of fib, statically typed but still using RubyFixnum objects | |
headius@headius-desktop:~/projects/jruby$ ~/hsx-hotspot/build/linux/jdk-linux-i586/bin/java -server -cp lib/jruby.jar:build/classes/test/ org.jruby.test.bench.BenchFixnumFibRecursive | |
Took 936ms for boxedFib(35) = 9227465 | |
Took 847ms for boxedFib(35) = 9227465 | |
Took 905ms for boxedFib(35) = 9227465 | |
Took 943ms for boxedFib(35) = 9227465 | |
Took 873ms for boxedFib(35) = 9227465 | |
# Ruby impl of fib. The 20% different from Java is optimization opportunities in JRuby and invokedynamic, but we're very close to Java perf here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'pathname' | |
require 'digest' | |
`touch foo.txt` | |
path = Pathname.new 'foo.txt' | |
digest = Digest::MD5.new # digest type doesn't matter, see same problem with SHA1 | |
# digest.file path # this line throws an error when have JRUBY_OPTS=--1.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
=begin | |
INSTALL: | |
curl http://github.com/defunkt/gist/raw/master/gist.rb > gist && | |
chmod 755 gist && | |
sudo mv gist /usr/local/bin/gist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
String.metaClass.methodMissing { String name, args -> | |
String camel = '' | |
name.split('_').eachWithIndex { part, i -> | |
if (i == 0) camel += part | |
else camel += (part[0].toUpperCase() + part[1..-1]) | |
} | |
delegate."$camel"(args) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Provides a function that allows you to choose a JDK. Just set the environment | |
# variable JDKS_ROOT to the directory containing multiple versions of the JDK | |
# and the function will prompt you to select one. JAVA_HOME and PATH will be cleaned | |
# up and set appropriately. | |
# Usage: | |
# Include in .profile or .bashrc or source at login to get 'pickjdk' command. | |
# 'pickjdk' alone to bring up a menu of installed JDKs on OS X. Select one. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ChunkedArray | |
def initialize(bucket_size = 500) | |
@array, @bucket_size = [[]], bucket_size | |
end | |
def push(item) | |
if [email protected] || @array.last.size == @bucket_size | |
@array << [] | |
end | |
@array.last << item |