View .gitignore
target |
View hello.lto.js
This file has been truncated, but you can view the full file.
// 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 |
View gunosy_redirect.user.js
// ==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 <makoto.nksm+github@gmail.com> | |
// ==/UserScript== |
View phantom-lifetime.rs
struct Doc; | |
#[cfg(not(phantom))] | |
struct Node<'a> { | |
doc: &'a Doc | |
} | |
#[cfg(phantom)] | |
struct Node<'a>; |
View ldrnail.ks.js
// 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> |
View Makefile
subdirs=c d java haskell rust | |
.PHONY: all clean $(subdirs) | |
all: $(subdirs) | |
clean: $(subdirs) | |
$(subdirs): | |
make -C $@ $(MAKECMDGOALS) |
View titech_portal_auto_login.user.js
// ==UserScript== | |
// @name Titech Portal Auto Login | |
// @namespace http://www.titech.ac.jp/ | |
// @id titech-portal-auto-login@www.titech.ac.jp | |
// @description 東工大ポータルに自動的にログインします | |
// @author NAKASHIMA, Makoto <makoto.nksm@gmail.com> | |
// @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 |
View pager.js
(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 = []; |
View datagrid.js
(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 || ''; |
View data_format.txt
Data = { | |
count: Integer, // タグの個数 | |
first: Date, // タグ情報を最初に取得した日時 | |
last: Date, // タグ情報を最後に取得した日時 | |
tags: [Tag] // タグ情報の配列 | |
}; | |
Tag = { | |
id: Integer, // タグのID | |
name: String, // タグ名 |
NewerOlder