API制限のため1時間につき60回まで利用できないため注意
% markdown FILENAME
% markdwon < FILENAME
#/bin/sh | |
# Description: Go Playground command line interface | |
# Link: http://blog.golang.org/playground | |
# Usage: | |
# - go-playground.sh FILENAME | |
# - go-playground.sh < FILENAME | |
compile_url=https://play.golang.org/compile | |
version=2 |
(define-macro (\) | |
(expand | |
(append (fn ()) (list (args))) | |
'((% (args 0)) | |
(%1 (args 0)) | |
(%2 (args 1)) | |
(%3 (args 2)) | |
(%4 (args 3)) | |
(%5 (args 4))))) |
API制限のため1時間につき60回まで利用できないため注意
% markdown FILENAME
% markdwon < FILENAME
// attach-console.c | |
// Usage1: > cl attach-console.c & attach-console.exe | |
// Usage2: $ gcc attach-console.c && ./a.exe | |
#define _WIN32_WINNT 0x0501 | |
#define WIN32_LEAN_AND_MEAN | |
#include <windows.h> | |
#include <stdio.h> |
diff --git a/newlisp.c b/newlisp.c | |
index 211ad93..1b9b851 100644 | |
--- a/newlisp.c | |
+++ b/newlisp.c | |
@@ -18,7 +18,6 @@ | |
*/ | |
#include "newlisp.h" | |
-#include "pcre.h" | |
#include "protos.h" |
CC ?= cc | |
usage := make -f $(notdir $(MAKEFILE_LIST)) [CC=cc] | |
platform_list := linux bsd darwin mingw cygwin solaris | |
machine := $(shell $(CC) -dumpmachine) | |
# $(call grep, string, word-list) | |
grep = $(strip $(foreach word,$2,$(findstring $(word),$1))) |
#/bin/sh | |
[email protected] | |
[email protected] | |
SUBJECT=Hello | |
HTML=$(curl -s http://leemunroe.github.io/html-email-template/email.html) | |
sendmail -i $MAILTO <<EOF | |
From: $MAILFROM | |
To: $MAILTO |
# -*- mode: makefile -*- | |
# | |
# force update PCRE embedded in newLISP | |
# ~> wget http://www.newlisp.org/downloads/development/newlisp-10.6.1.tgz | |
# ~> tar xvf newlisp-10.6.1.tgz | |
# ~> cd newlisp-10.6.1 | |
# ~> curl -LOk https://gist.githubusercontent.com/kosh04/36d754f6f9a99fcdf374/raw/Makefile.pcre | |
# ~> make -f Makefile.pcre enable_utf8=1 | |
# ~> make -f Makefile.pcre test |
// ==UserScript== | |
// @name Nicopedia Resanchor Popup | |
// @namespace http://lambda.que.jp/ | |
// @version 0.1.20141108 | |
// @description ニコニコ大百科掲示板のレスアンカーをポップアップ表示する | |
// @grant GM_addStyle | |
// @grant GM_getResourceURL | |
// @grant GM_getResourceText | |
// @match http://dic.nicovideo.jp/* | |
// @require http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js |