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
#! /usr/bin/ruby | |
require 'open-uri' | |
SLEEP_SEC = 1 | |
API_URL = "http://salvageon.textfile.org/" | |
def puts_output(db, index) | |
output = URI("#{API_URL}?db=#{db}&index=#{index}").read |
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
#!/usr/bin/env ruby | |
url = `git config remote.origin.url` | |
puts "BEFORE: #{url}" | |
# https://[email protected]/YOURNAME/myrepo.git | |
if url.match(/https:\/\/([^\/@]+@)?([^\/]+)\/([^\/]+)\/(.+)\.git/) | |
optional_login_name, domain, name, repo = $1, $2, $3, $4 | |
cmd = "git remote set-url origin git@#{domain}:#{name}/#{repo}.git" | |
puts cmd |
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
## AutoGetter - Twitterで自分のツイートから自分へのリプライをまとめるRubyスクリプト(連ツイまとめ作成用) | |
https://gist.github.com/hyuki0000/85989bcf78d1476d74d3 | |
1. config.yamlを自分用に作成する。 | |
2. ruby autogetter.rb を実行する。 | |
3. 自分へのリプライ(リプライ連鎖)ごとに 1.html, 2.html, 3.html, ... とファイルにまとめる(既存ファイル上書き)。 | |
4. HTMLが直接書けるサイトに貼り付ける。 |
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
1. Edit tweet.yaml. | |
2. Prepare tweet.txt (one line for one tweet). | |
3. Run tweet.pl. |
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
# 31foo.eps → 10foo.eps | |
# 35baa.eps → 30baa.eps | |
# のようにファイル名変換するシェルスクリプトを生成するRubyスクリプト | |
MAP = { | |
'31' => '10', | |
'32' => '10', | |
'33' => '20', | |
'34' => '20', | |
'35' => '30', |
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
62 Afghanistan Angola Antarctica Austria Azerbaijan Barbados Belarus Botswana Burundi Canada China Cyprus Denmark Ecuador Eritrea Ethiopia Finland Georgia Germany Ghana Greece Guadeloupe Jordan Kiribati Liberia Libya Liechtenstein Macao Malawi Malaysia Martinique Mongolia Montenegro Montserrat Myanmar Namibia Narnia Niger Nigeria Oman Palau Poland Portugal Romania Rwanda Samoa Senegal Serbia Seychelles Slovakia Slovenia Somalia Sudan Sweden Switzerland Tajikistan Tokelau Turkey Uganda Ukraine Zambia Zimbabwe |
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
#! /usr/bin/ruby | |
class String | |
ALPHABET_LEN = 26 | |
def encode | |
s = self | |
out = '' | |
while m = s.slice(/(.)\1*/) | |
c = m[0] |
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
#! /usr/bin/ruby | |
# lsnote.rb | |
# カレントディレクトリ中の | |
# book-001.txt, book-002.txt, book-004.txt, book-005.txt | |
# teaching-003.txt, teaching-004.txt, teaching-005.txt, teaching-006.txt, teaching-009.txt | |
# writing-001.txt, writing-002.txt, writing-003.txt, writing-008.txt, writing-009.txt | |
# のようなファイルから、コーナー(book,teaching,writing)ごとに番号の最も大きなものを見つけ、 | |
# タイムスタンプ順に表示する。 |
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
#!/usr/bin/ruby | |
def analyze(encrypted_hex) | |
guess = { | |
'CB' => ' ', # 'A', | |
'9C' => 'e', # 'B', | |
'BA' => 't', # 'C', | |
'DA' => 'o', # 'D', | |
'0D' => 's', # 'E', | |
'24' => 'n', # 'F', |
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
*hyuki-help.txt* | |
ジャンプ <CTRL-]> | |
戻ってくる <CTRL-O> | |
|help-writing| ヘルプファイルの書き方 | |
|hyuki-latex| LaTeX用メモ | |
vim:tw=78:fo=tcq2:isk=!-~,^*,^\|,^\":ts=8:ft=help:norl: |