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
MAKEFLAGS += --warn-undefined-variables | |
MAKEFLAGS += --no-builtin-rules | |
MAKEFLAGS += --no-builtin-variables | |
SHELL := bash | |
.SHELLFLAGS := -eu -o pipefail -c | |
.DELETE_ON_ERROR: | |
.SECONDARY: # don't remove intermediate files | |
.SECONDEXPANSION: |
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
target |
This file has been truncated, but you can view the full file.
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
// The Module object: Our interface to the outside world. We import | |
// and export values on it, and do the work to get that through | |
// closure compiler if necessary. There are various ways Module can be used: | |
// 1. Not defined. We create it here | |
// 2. A function parameter, function(Module) { ..generated code.. } | |
// 3. pre-run appended it, var Module = {}; ..generated code.. | |
// 4. External script tag defines var Module. | |
// We need to do an eval in order to handle the closure compiler | |
// case, where this code here is minified but Module was defined | |
// elsewhere (e.g. case 4 above). We also need to check if Module |
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
// ==UserScript== | |
// @name gunosy redirect | |
// @namespace gifnksm.hatenablog.jp | |
// @include https://gunosy.com/articles/* | |
// @version 1.0.2 | |
// @grant none | |
// @downloadURL https://gist.github.com/gifnksm/cc0ae271dab4b31036d1/raw/gunosy_redirect.user.js | |
// @author NAKASHIMA, Makoto <[email protected]> | |
// ==/UserScript== |
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
struct Doc; | |
#[cfg(not(phantom))] | |
struct Node<'a> { | |
doc: &'a Doc | |
} | |
#[cfg(phantom)] | |
struct Node<'a>; |
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
// Info | |
let PLUGIN_INFO = | |
<KeySnailPlugin> | |
<name>LDRnail</name> | |
<description>LDRize clone with KeySnail</description> | |
<description lang="ja">LDRize を KeySnail で</description> | |
<iconURL>https://sites.google.com/site/958site/Home/files/ldrnail.png</iconURL> | |
<updateURL>https://gist.github.com/958/1369730/raw/ldrnail.ks.js</updateURL> | |
<author>958</author> |
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
subdirs=c d java haskell rust | |
.PHONY: all clean $(subdirs) | |
all: $(subdirs) | |
clean: $(subdirs) | |
$(subdirs): | |
make -C $@ $(MAKECMDGOALS) |
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
// ==UserScript== | |
// @name Titech Portal Auto Login | |
// @namespace http://www.titech.ac.jp/ | |
// @id [email protected] | |
// @description 東工大ポータルに自動的にログインします | |
// @author NAKASHIMA, Makoto <[email protected]> | |
// @include https://portal1.nap.gsic.titech.ac.jp/* | |
// @include https://portal.nap.gsic.titech.ac.jp/* | |
// @include http://portal.titech.ac.jp/* | |
// @jsversion 1.8 |
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
(function() { | |
const NAMESPACE = 'mfp.xrea.jp'; | |
if (!(NAMESPACE in window)) | |
window[NAMESPACE] = {}; | |
if (window[NAMESPACE].Pager !== undefined) | |
return; | |
const Pager = function(namePrefix) { | |
this._namePrefix = namePrefix; | |
this._callbacks = []; |
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
(function() { | |
const NAMESPACE = 'mfp.xrea.jp'; | |
if (!(NAMESPACE in window)) | |
window[NAMESPACE] = {}; | |
if (window[NAMESPACE].DataGrid !== undefined) | |
return; | |
const DataGrid = function(property, namePrefix) { | |
this._property = new DataGrid.Property(property); | |
this._namePrefix = namePrefix || ''; |
NewerOlder