This file contains hidden or 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
# After installing ruby-debug19, run this file. | |
# | |
# References: | |
# http://blog.wyeworks.com/2011/11/1/ruby-1-9-3-and-ruby-debug | |
# http://stackoverflow.com/questions/8087610/ruby-debug-with-ruby-1-9-3 | |
echo "Installing ruby-debug with $MY_RUBY_HOME ..." | |
curl -OL http://rubyforge.org/frs/download.php/75414/linecache19-0.5.13.gem | |
curl -OL http://rubyforge.org/frs/download.php/75415/ruby-debug-base19-0.11.26.gem |
This file contains hidden or 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
(($) -> | |
default_options = | |
color: 'red' | |
$.fn.samplePlugin = (options = default_options) -> | |
hello() | |
@each -> | |
$(this).css | |
background: options.color |
This file contains hidden or 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/sh | |
# script/server with Rails 3 support | |
ss() { | |
if [ -f ./script/rails ]; then | |
./script/rails server $@ | |
else | |
./script/server $@ | |
fi | |
} |
This file contains hidden or 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
input[type="checkbox"] { | |
-webkit-transform: scale(1.2, 1.2); | |
} |
This file contains hidden or 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
$(function(){ | |
if ("placeholder" in document.createElement( "input" )){ return } | |
$('input[placeholder]').each(function(){ | |
$(this).val($(this).attr('placeholder')).css('color', '#999') | |
}).focus(function(){ | |
var placeholder = $(this).attr('placeholder') | |
$(this).val( placeholder == $(this).val() || $(this).val() == '' ? '' : $(this).val() ).css('color', '#333') | |
}).blur(function(){ | |
var placeholder = $(this).attr('placeholder') |
This file contains hidden or 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
./configure --with-features=huge --enable-cscope --enable-pythoninterp --enable-rubyinterp --enable-perlinterp --enable-gui=macvim --with-mac-arch=intel --enable-multibyte --enable-clipboard=yes --enable-xterm_clipboard=yes |
This file contains hidden or 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
@mixin box-shadow($top, $left, $blur, $color, $inset: false) { | |
@if $inset { | |
-webkit-box-shadow:inset $top $left $blur $color; | |
-moz-box-shadow:inset $top $left $blur $color; | |
box-shadow:inset $top $left $blur $color; | |
} @else { | |
-webkit-box-shadow: $top $left $blur $color; | |
-moz-box-shadow: $top $left $blur $color; | |
box-shadow: $top $left $blur $color; | |
} |
This file contains hidden or 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/ruby | |
require 'net/http' | |
def url(*args) | |
if args.length == 1 | |
"/#{1}/#{args[0]}.json" | |
else | |
"/#{1}/#{args.shift.to_s}.json?#{parametrize args}" | |
end | |
end |
This file contains hidden or 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
Watching Emma discover the world brings back memories of my own childhood. | |
Emma pats materials and things to see how it rubs against her tiny hands. She gets engrossed in the act of hitting two objects together. She doesn't just enjoy the sound they create but in her case often hears that specific sound for the first time. She looks at reflections on objects and is starting to notice that you can learn to follow those light patterns to their sources. She especially loves the metal bowls and the mirror-like surface of my tea pot. Perhaps the way everything is disproportionate in them amuses her. I guess big noses are innately funny. | |
I remember having similar moments as a child but my memory can't go as far back as what Emma is experiencing right now. I remember for instance the scratching sound made by those weird animated holograms. I remember being fascinated by the depth found in the VISA logo of my mother's credit card. I remember that weird feeling you get when your hair is in the proximity o |
This file contains hidden or 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
plugin.command = 'togglementionsound'; | |
plugin.usage = '/togglementionsound'; | |
plugin.onCommand = function(talkerEvent) { | |
if (talkerEvent.command == plugin.command) { | |
$.cookie('ReceivedMentionSound', ($.cookie('ReceivedMentionSound') == 'false' ? 'true': 'false'), { | |
expires: (function() { | |
var d = new Date(); | |
d.setTime(new Date().getTime() + 10 * 365 * 24 * 60 * 60 * 1000); | |
return d |