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
const sentence = [ | |
'為什麼高中生 很愛參加台大杜鵑花節?', | |
'女兒被假爸舔臉頰會有心理陰影嗎', | |
'乙武洋匡屌打板上肥宅幾條街?', | |
'沈志霖 PTT鄉民xmanhman你錯了!', | |
'西半部空品「一片紅」 台中電廠降載1260M', | |
'年營收16億 486先生仍騎車上班', | |
'原來護廷十三番藍染隊長是叛徒?!', | |
'稱台灣旅行法=「台灣毀滅法」 邱毅遭嗆:', |
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
#!/bin/sh | |
# this script help find possible order of base64 fragment. | |
# | |
# like "hello world" is aGVsbG8gd29ybGQ= , | |
# it would help find "hello world" from "G8g Vsb d2 9yb GQ= aG" | |
# | |
# usage: sh find-base64-fragment-order.sh $known_start $frag1 $frag2 ... | |
# unknown init base: | |
# sh find-base64-fragment-order.sh '' G8g Vsb d2 9yb GQ= aG | |
# know start with h, which is `a` in base64, so first is `aG` |
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 open clean window | |
// @namespace http://gholk.github.io/ | |
// @description when click mouse with WinKey, open ancher in new window without toolbar, manubar, location bar. | |
// @match <all_urls> | |
// @version 10 | |
// @grant none | |
// ==/UserScript== | |
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
var tamagotchi = {} | |
var action = {} | |
action.doNothing = function () {} | |
action.standBy = function () { | |
var date = new Date() | |
if (date.getMilliseconds() % 10000 == 0) { | |
this.say('hello master') |
NewerOlder