Welcome To Snipplr
Everyone's Recent Ruby Snippets
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
I needed a quick way to unescape a URL Encoded string. I found 2 chill ways
2
919
posted 16 years ago by chrisaiv
Example of how to use a cron like a daemon and avoid having the cron run two instances of the same script.
1
748
posted 16 years ago by jnunemaker
Simple Outlook automation, the idea is to use this in cygwin to send files without opening the outlook UI, to use it place the code under /bin folder and make it executable with chmod +x.
2
982
posted 16 years ago by narkisr
If you get "JPEG marker not found!" error when you try to open an image file you must read it in binary mode.
1
858
posted 16 years ago by PixelMin
英語ã®ã‚¿ã‚¤ãƒˆãƒ«ãŒé©å½“ãªè‹±è¨³ãªã®ã§ã€èª°ã‹OK/NGã‚’æ•™ãˆã¦ãã ã•ã„。
1
1086
posted 16 years ago by octech
1. Make sure the following environment variable is set:
WinXP:
HOME=C:\Documents and Settings\*username*
Vista:
HOME=C:\Users\*username*
2. Create an .irbrc file in %HOME%:
$ cd %HOME%
$ touch .irbrc
If you don't have...
1
996
posted 16 years ago by charlesroper
This is as simple as it gets, basiclly this templates shows you how to mock an object methods to any other piece of code that you like (open objects at its simplest glory).
1
855
posted 16 years ago by narkisr
https://www.chrisjmendez.com/2008/06/21/ruby-mixing-in-a-module-immediately-after-an-objects-singleton-class/
2
951
posted 16 years ago by chrisaiv
REXML does not seem to have a 'lang' method, which is strange since lang is in the XML 1.0 Specification §2.12 'Language Identification', and in many other libraries. Because of Ruby's 'monkey patching', it's pretty easy to add - you just recursivel...
1
742
posted 16 years ago by tommorris