-
下ごしらえ
- 材料を切る
-
タレ1
- お湯ににんにくと生姜を入れる
- ダシも入れる
- 沸騰したら酒
-
豚
-
豚を茹でる
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
https://pastebin.com/6vKp6rh6 の日本語訳です(この英文は中国語からの翻訳)。 | |
この日本語訳の翻訳者は、中国のインターネット規制については明るくありません。また、 Web セキュリティが主戦場であって、ネットワーク関連は専門 | |
ではない (DPI がどういうものなのかを理解している程度のレベル) ので技術的に不正確な訳が含まれるかもしれません。 | |
あと私訳であり、英文法的に不正確な訳が含まれるかもしれません。 | |
あらゆるフィードバックを歓迎します。 | |
----- |
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 python | |
# coding: utf-8 | |
import re | |
from subprocess import Popen, PIPE | |
import sys | |
line = sys.stdin.readline().strip() | |
if not line: | |
sys.exit(0) |
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 python | |
import re | |
from subprocess import Popen, PIPE | |
import sys | |
COMMIT_EDITMSG = sys.argv[1] | |
branch = Popen(['git', 'rev-parse', '--abbrev-ref', 'HEAD'], stdout=PIPE).stdout.read().strip() | |
matched = re.search('t-?([0-9]+)', branch) |
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
<!DOCTYPE feed [ | |
<!ENTITY kurorekishi SYSTEM "php://filter/convert.base64-encode/resource=s3://phpcon/ebihara-kaicho.jpg"> | |
]> | |
<feed xmlns="http://www.w3.org/2005/Atom"> | |
<title>example</title> | |
<updated>2013-06-24T11:56:27+09:00</updated> | |
<id>example</id> | |
<entry> | |
<title>&kurorekishi;</title> | |
<link href="http://example.com/" /> |
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
--- urlencode 2013-08-09 20:57:57.000000000 +0900 | |
+++ rawurlencode 2013-08-09 21:11:45.000000000 +0900 | |
@@ -1,43 +1,30 @@ | |
-PHPAPI char *php_url_encode(char const *s, int len, int *new_length) | |
+PHPAPI char *php_raw_url_encode(char const *s, int len, int *new_length) | |
{ | |
- register unsigned char c; | |
- unsigned char *to, *start; | |
- unsigned char const *from, *end; | |
- |
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 python | |
import sys, os | |
info = sys.stdin.read().strip().split(" ") | |
range = "" | |
if info: | |
range = "{}..{}".format(info[3], info[1]) | |
sys.stdin = open('/dev/tty') |
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
<?php | |
require_once __DIR__.'/vendor/autoload.php'; | |
$lib = new PasswordLib\PasswordLib(); | |
$hash = $lib->createPasswordHash('tetete', '$6$'); | |
var_dump($hash); | |
var_dump(date('Y-m-d H:i: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
# -*- coding: utf-8 -*- | |
# LICENSE INFORMATION: | |
# Please treat this script as CC0 | |
from immlib import * | |
imm = Debugger() | |
class KamikazeHook(LogBpHook): |
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
// ==UserScript== | |
// @name Non scheduled blogger posting preventer | |
// @namespace http://co3k.org/ | |
// @version 0.1 | |
// @description This script alerts when you try to post without scheduling | |
// @match http://www.blogger.com/blogger.g?* | |
// @copyright CC0 | |
// ==/UserScript== | |
window.addEventListener ("load", (function(){ |
NewerOlder