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/env ruby -Ku | |
require 'net/http' | |
require 'rubygems' | |
require 'nokogiri' | |
require 'meow' | |
$appname = 'Classic.fm' | |
$image = '/Applications/Play.app/Contents/Resources/Play.icns' |
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
package Plagger::Plugin::Publish::Tumblr; | |
use strict; | |
use warnings; | |
use Config::Pit; | |
use base qw( Plagger::Plugin ); | |
use Encode; | |
use Time::HiRes qw(sleep); | |
use WWW::Tumblr; |
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
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by UFRaw configure 0.17, which was | |
generated by GNU Autoconf 2.64. Invocation command line was | |
$ ./configure --disable-dependency-tracking --prefix=/usr/local/Cellar/ufraw/0.17 --without-gtk --without-gimp | |
## --------- ## | |
## Platform. ## |
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
. $topsrcdir/browser/config/mozconfig | |
CC="gcc-4.2 -arch x86_64" | |
CXX="g++-4.2 -arch x86_64" | |
HOST_CC="gcc-4.2" | |
HOST_CXX="g++-4.2" | |
RANLIB=ranlib | |
AR=ar | |
AS=$CC | |
LD=ld | |
STRIP="strip -x -S" |
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
command -nargs=+ tempopen open http://www.google.co.jp/search?hl=ja&q=<args> | |
command -nargs=+ temptabopen tabopen http://www.google.co.jp/search?hl=ja&q=<args> | |
map o -builtin :tempopen<Space> | |
map t -builtin :temptabopen<Space> |
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
. $topsrcdir/browser/config/mozconfig | |
CC="gcc-4.2 -arch i386" | |
CXX="g++-4.2 -arch i386" | |
HOST_CC="gcc-4.2" | |
HOST_CXX="g++-4.2" | |
RANLIB=ranlib | |
AR=ar | |
AS=$CC | |
LD=ld | |
STRIP="strip -x -S" |
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
--- ./android-sdk-mac_86/tools/android.bak 2010-11-18 08:46:46.000000000 +0000 | |
+++ ./android-sdk-mac_86/tools/android 2010-12-09 05:53:23.000000000 +0000 | |
@@ -63,7 +63,7 @@ | |
# Mac OS X needs an additional arg, or you get an "illegal thread" complaint. | |
if [ `uname` = "Darwin" ]; then | |
- os_opts="-XstartOnFirstThread" | |
+ os_opts="-XstartOnFirstThread -d32" | |
else | |
os_opts= |
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/env ruby -Ku | |
require 'rubygems' | |
require 'meow' | |
LIBDIR = '/Users/shenqi/Media/Music/' #set the path for itunes music library | |
def gomi_remover(string) | |
return (`echo "#{string}" | iconv -f UTF-8-MAC -t UTF-8`).chomp |
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
ffmpeg -i $argv[1] -vcodec libx264 -s 640x360 -b 600k -vpre faster -vpre ipod640 -r 24000/1001 -acodec libfaac -ac 2 -ar 48000 -ab 192k -threads 2 -f ipod $argv[2].m4v |
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/env ruby -Ku | |
require 'net/http' | |
require 'rubygems' | |
require 'nokogiri' | |
require 'meow' | |
TOPURL = 'http://baseball.yahoo.co.jp/npb/schedule/' |