Skip to content

Instantly share code, notes, and snippets.

View redbug312's full-sized avatar
🎃
Any pun-pkin?

redbug312

🎃
Any pun-pkin?
  • Foxtronev
  • New Taipei City, Taiwan
  • 19:16 (UTC +08:00)
View GitHub Profile
@redbug312
redbug312 / nub.hs
Created May 1, 2018 15:19
FLOLAC'18 prerequisite p1
nub :: [Int] -> [Int]
nub [] = []
nub [x] = [x]
nub (x:xs) = if x `elem` xs then nub xs else x : nub xs
@redbug312
redbug312 / cpp.json
Last active April 16, 2016 05:02
My C++ Snippets for Visual Studio Code.
{
"Local Debug": {
"prefix": "DEBUG",
"body": [
"#define FLAG fprintf(stderr,\"\\033[32;1m#FLAG\\033[0m\\n\");",
"#define BIN(x) {fprintf(stderr,\" \\033[33;1m#DEBUG:\\033[0m \"#x\" = \"); \\",
"\tfor(int i=15;i>=0;--i)fprintf(stderr,\"%c\",((x)&(1<<i))?'1':'0'); \\",
"\tfprintf(stderr,\"\\n\");}",
"#define INT(x) fprintf(stderr,\" \\033[33;1m#DEBUG:\\033[0m \"#x\" = %d\\n\", x);",
"#define CHR(x) fprintf(stderr,\" \\033[33;1m#DEBUG:\\033[0m \"#x\" = %c\\n\", x);",
@redbug312
redbug312 / main.gs
Last active April 17, 2016 13:26
[Google App Scripts] send emails when the sheet received a submitting from the form
// https://developers.google.com/apps-script/reference/properties/properties#deletepropertykey
var colMap = PropertiesService.getScriptProperties();
colMap.setProperties({
"時間戳記": 0,
"蘆薈洗面乳": 4,
"蘆薈水晶凝露": 5,
"原味魷魚絲": 7,
"水晶魚": 8,
"紅豆糕": 9,
"泉利鹹餅": 11,