対応バージョン: 3.7.2218.55
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
import urllib2 | |
import threading | |
from Queue import Queue | |
import sys, os, re | |
class ThreadedDownload(object): | |
REGEX = { | |
'hostname_strip':re.compile('.*\..*?/', re.I) | |
} |
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
// | |
// _oo0oo_ | |
// o8888888o | |
// 88" . "88 | |
// (| -_- |) | |
// 0\ = /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
.. | |
.::::. | |
___________ :;;;;:`____________ | |
\_________/ ?????L \__________/ | |
|.....| ????????> :.......' | |
|:::::| $$$$$$"`.:::::::' , | |
,|:::::| $$$$"`.:::::::' .OOS. | |
,7D|;;;;;| $$"`.;;;;;;;' .OOO888S. | |
.GDDD|;;;;;| ?`.;;;;;;;' .OO8DDDDDNNS. | |
'DDO|IIIII| .7IIIII7' .DDDDDDDDNNNF` |
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
package main | |
import ( | |
"fmt" | |
"log" | |
"net/http" | |
"github.com/skratchdot/open-golang/open" | |
) |
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
[こそ]れ?マジ?[\??] | |
まず(.*?)さ[あぁ]?(?:、|(?:\.|・){2,})(.*?)(?:、|(?:\.|・){2,})?ある?んだけど(?:、|(?:\.|・){2,})(.*) | |
(.+)↑(.+)↓ | |
やっぱ[あぁ]?(?:、|(?:\.|・){2,})?(.*?)(?:くん|君)?の(.*?)を(?:、|(?:\.|・){2,})?(.*?) | |
[\((].*?[\))]ないです | |
[\((](王者の風格|すっとぼけ|サイコパス|ガンギマリ|せっかち|ねっとり|思考停止|諸行無常|ドン引き|意味深|名推理|使命感|震え声|棒読み|半ギレ|淫夢|悟空|威圧|偏見|激寒|呆れ|恍惚|戒め|無知|妥協|提案|驚愕|池沼|正論|絶望|良心|哲学|便乗|困惑|脅迫|小声|適当|レ|素|[至名迷]言|大[嘘破]|[難幻]聴|[憤激]怒|届かぬ[思想]い|(?:察し|冊子)|(?:声だけ)?迫真|無(?:邪気|関心)|語録(?:無視)?|(?:ゲス|真)顏|(?:更|さら)なる高みへ|(?:.*?並(?:みの)?感想?|KONAMI|粉みかん))[\))]? | |
\?{,3}「.*?」 | |
.*?、どうぞ | |
申(?:し訳ないが)?.*?は?[NN][GG]? | |
じゃないですかね[\.・]{2,} |
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
if has('nvim') | |
" exitフックを指定して:terminalを開く | |
function! s:termopen_wrapper(on_exit) abort | |
" https://github.com/neovim/neovim/pull/5529 | |
" でvimのpartialがneovimに取り込まれて以降は、 | |
" on_existに設定するコールバックが関数名でなく、 | |
" 関数値そのもの?(function('関数名'))ようなので、古いneovimの場合注意 | |
" | |
" 7.4.1577が当たっているかどうかで切り分ける | |
if has('patch-7.4.1577') |
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
#include <llvm/IR/LLVMContext.h> | |
#include <llvm/IR/Module.h> | |
#include <llvm/IR/BasicBlock.h> | |
#include <llvm/IR/CallingConv.h> | |
#include <llvm/IR/Constants.h> | |
#include <llvm/IR/Function.h> | |
#include <llvm/IR/GlobalVariable.h> | |
#include <llvm/IR/Instructions.h> | |
#include <llvm/IR/PassManager.h> | |
#include <llvm/IR/Verifier.h> |
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
import | |
dom, jsffi, jsconsole, macros, strutils, | |
nes | |
class Ticker: | |
tickerTempl = html_templ: | |
d(data={"key1": "value1", "key2": "value2"}): | |
h1: "Hello, World!" | |
h2: "It is ${new Date().toLocaleTimeString()}." |
OlderNewer