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
############################################ | |
# In lib/do_evil_things_to_strings.rb | |
############################################ | |
class String | |
old_is_utf8 = instance_method(:is_utf8?) | |
define_method(:is_utf8?) do | |
return false if calling_method == 'quote' | |
old_is_utf8.bind(self).() |
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
######################################################################### | |
# A simple Ruby implementation of the Look-and-Say sequence (also known | |
# as the Conway sequence or the Morris puzzle). | |
# | |
# In the Look-and-say Sequence, each term describes the previous term. | |
# So, the first term is "1". This term consists of 1 of the digit '1', | |
# so the next term is "11". This term consists of 2 of the digit '1', | |
# so the next term is "21". This term consists of a single 2, followed | |
# by a single "1", and so the next term is "1211". The next term would | |
# be "111221", and so forth. |
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
module Kernel | |
def on_execute | |
calling_file = caller.first.split(':').first | |
if File.expand_path(calling_file) == File.expand_path($0) | |
yield | |
end | |
end | |
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
#!/bin/env bash | |
############################################################################## | |
# kcurl: Download one or more files and send them to the Kindle. | |
# Version 1.1, Tammy Cravit, [email protected], 10/14/2010 | |
# | |
# Requires that cURL and mutt be installed. The "home Wi-Fi" detection code | |
# only works on MacOS X 10.x (probably with x > 4), but I welcome patches. | |
# | |
# To use this script, you'll need to configure the Kindle e-mail name and | |
# home Wi-Fi SSID below. |
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/env ruby | |
########################################################################### | |
# mkdwc: Behaves like wc(1) but operates on the raw text of one or more | |
# Markdown or Textile files. | |
# Tammy Cravit, [email protected] | |
########################################################################### | |
# This code can also be included into another script if you want to extend | |
# the MarkdownWC class. | |
########################################################################### | |
# This is the third take on this script, and abstracts out the markup- |
NewerOlder