- 来年度予算
- あずにゃんへのLAN配線
- 部室の近代化改修
書きかけ
- nana (09年度機)
| (define | |
| (string-split string splitter) | |
| (let loop | |
| ( | |
| (ls (string->list string)) | |
| (is-splitting #t) | |
| (ret-ls '()) | |
| ) | |
| (if (null? ls) | |
| (map (lambda(x) (list->string (reverse x))) (reverse ret-ls)) ; last return |
| @echo off | |
| set dt=%date% | |
| set tm=%time: =0% | |
| set d=%dt:~2,2%%dt:~5,2%%dt:~8,2% | |
| set t=%tm:~0,2%%tm:~3,2%%tm:~6,2% | |
| psql -U user -L %d%_%t%.log test |
| var host = "pbs.twimg.com"; | |
| if($()){ | |
| var path = $("a.media-thumbnail").attr("data-url").replace("https://pbs.twimg.com",""); | |
| } | |
| if(location.host.match(host)){ | |
| var path = location.pathname; | |
| } | |
| location.href = "//" + host + path.match('[^:]+') + ":orig"; |
| // ==UserScript== | |
| // @name add twitter original image link | |
| // @namespace twinkfrag.net | |
| // @include /https?://twitter\.com/\w+/status/\d+/ | |
| // @include /https?://twitter\.com/\w+/status/\d+/photo/1/ | |
| // @desctiption twitterの画像付きステータスページにオリジナルサイズの画像へのリンクを配置します | |
| // @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js | |
| // @version 1.2 | |
| // @grant none | |
| // ==/UserScript== |
| // ==UserScript== | |
| // @name add twitter tumblr photo post | |
| // @namespace twinkfrag.net | |
| // @include /https?://twitter\.com/\w+/status/\d+/ | |
| // @include /https?://twitter\.com/\w+/status/\d+/photo/1/ | |
| // @desctiption twitterの画像付きステータスページにtumblrへの投稿リンクを配置します | |
| // @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js | |
| // @version 1.00 | |
| // @grant none | |
| // ==/UserScript== |
| using System; | |
| using System.Linq; | |
| using System.Collections.Generic; | |
| using System.Console; | |
| namespace twinkfrag.Transaction | |
| { | |
| class Transaction | |
| { | |
| public static void Main(string[] args) |
| /** | |
| * Created by @twinkfrag on 2015/09/26. | |
| */ | |
| import java.util.*; | |
| import java.util.stream.*; | |
| /** | |
| * アルゴ演習15の課題に関して、解説とJava8などでの改良点 | |
| * 問題に対する解答として間違っている可能性もあるので注意 |
| /** | |
| * Created by @twinkfrag on 2015/09/26. | |
| */ | |
| import java.nio.file.*; | |
| import java.util.*; | |
| import java.io.*; | |
| import java.util.stream.*; | |
| /** |
| /** | |
| * Created by @twinkfrag on 2015/09/26. | |
| */ | |
| import java.nio.file.*; | |
| import java.util.*; | |
| import java.io.*; | |
| import java.util.stream.*; | |
| /** |