$ uname -a
Linux dti-vps-srv25 2.6.18-194.3.1.el5.028stab069.6 #1 SMP Wed May 26 18:31:05 MSD 2010 i686 GNU/Linux
$ df -lh
Filesystem Size Used Avail Use% Mounted on
* 材料 | |
- ベース油(食用油を模索中、ごま油がベター) : 欲しい量 | |
- 白ネギ(の青い部分) : 適量 | |
- ニンニク : 適量 | |
- カレースパイス : パウダーではなくホールが良い(たぶん ※要検証) | |
- 唐辛子:適量 | |
- クミンシード : 適量 | |
- コリアンダーシード : 適量 | |
- ターメリック : 適量 | |
- ガラムマサラ : 適量 |
Sub Zenkaku2Hankaku() | |
Dim t As Integer | |
Dim myMsg As String | |
Dim FChr As String | |
Dim LChr As String | |
Selection.HomeKey Unit:=wdStory '文書の先頭に | |
On Error GoTo Errmsg: | |
With Selection.Find | |
.ClearFormatting |
#!/bin/sh | |
curl -s "http://ajax.googleapis.com/ajax/services/language/translate?v=1.0&q=$1&langpair=en%7Cja" |sed -e 's/^.*translatedText":"//'|sed -e 's/\".*/\n/' |
#!/bin/bash | |
/usr/bin/killall vlc |
#!/bin/bash | |
YOUR_ACCOUNT='YOUR_ACCOUNT' | |
YOUR_PASSWORD='YOUR_PASSWORD' | |
KEYWORD=$1 | |
curl -u ${YOUR_ACCOUNT}:${YOUR_PASSWORD} -d track=${KEYWORD} http://stream.twitter.com/1/statuses/filter.json |
class Display | |
attr_accessor :print | |
def initialize | |
@print = [] | |
end | |
def write(msg) | |
@print.push(msg) | |
end | |
end |
print("Hello,World") |
ruby -e "(7**5).times {|r| puts format('%05d', r.to_s(7)).unpack('aaaaa').join(' ')}" | |
0 0 0 0 0 | |
0 0 0 0 1 | |
0 0 0 0 2 | |
0 0 0 0 3 | |
0 0 0 0 4 | |
0 0 0 0 5 | |
0 0 0 0 6 | |
0 0 0 1 0 |
1.times do |t| | |
2.times do |h| | |
3.times do |a| | |
4.times do |n| | |
5.times do |k| | |
6.times do |s| | |
puts 'thanks!' | |
end | |
end | |
end |