Skip to content

Instantly share code, notes, and snippets.

@BanzaiMan
Created January 9, 2010 04:13
Show Gist options
  • Select an option

  • Save BanzaiMan/272717 to your computer and use it in GitHub Desktop.

Select an option

Save BanzaiMan/272717 to your computer and use it in GitHub Desktop.
surfboard:~$ ruby1.9 -e 'p Marshal.dump(34131348341.384172394817324)'
"\x04\bf\x1A34131348341.384171\x00\x89d"
surfboard:~$ jruby --1.9 -e 'p Marshal.load("\x04\bf\x1A34131348341.384171\x00\x89d")'
34131348341.3842
surfboard:~$ ruby1.9 -e 'p Marshal.load(Marshal.dump(34131348341.384172394817324))'
34131348341.38417
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment