pythonをインストールしている環境ではmakeコマンドよりもmake.pyが優先して実行されることがあり混乱する。
同じコード値を示すグリフは複数ある場合がある。 この場合cidFlattenは期待しない結果となる。
| // ==UserScript== | |
| // @name npm: package support types | |
| // @namespace info.efcl | |
| // @match https://www.npmjs.com/package/* | |
| // @grant GM_xmlhttpRequest | |
| // ==/UserScript== | |
| // License: MIT © azu | |
| const NAME = "$Greasemonkey:package support types$"; | |
| const fetchPackage = (packageName) => { |
| PostScript Core Font | URW Core35 | TeX Gyre | Liberation | croscore | TypeKit | Bitstream |
|---|---|---|---|---|---|---|
| Helvetica | Nimbus Sans | TeX Gyre Heros | Liberation Sans | Arimo | Nimbus Sans | Swiss 721 |
| Helvetica Condensed | Liberation Sans Narrow | Nimbus Sans Condensed | Swiss 721 | |||
| Times | Nimbus Roman | TeX Gyre Termes | Liberation Serif | Tinos | Nimbus Roman | Dutch 801 |
| Courier | Nimbus Mono | TeX Gyre Cursor | Liberation Mono | Cousine | Courier |
| PostScript2 Core Font | URW Core35 | TeX Gyre | Liberation | croscore | TypeKit | Bitstream | |-------------------------|--------------|-------------------|------------------------|--------
| // ==UserScript== | |
| // @name Service Worker Killer | |
| // @version 0.4.0 | |
| // @description Unregister ServiceWorker(s) before page unload | |
| // @author Gavin Lloyd <gavinhungry@gmail.com> | |
| // @match http://*/* | |
| // @match https://*/* | |
| // @grant none | |
| // ==/UserScript== |
| use std::io::{self, Read, stdin}; | |
| use std::collections::HashMap; | |
| #[derive(Debug)] | |
| struct BFM { | |
| program: String, | |
| tape: Vec<i32>, | |
| ip: usize, | |
| dp: usize, | |
| braces: HashMap<usize, usize>, |
| (import (scheme base) | |
| (scheme write) | |
| (srfi 1) | |
| (gauche partcont)) | |
| (define-syntax green-threads | |
| (syntax-rules () | |
| ((_ (yield) a) | |
| (reset a (call/pc yield))) | |
| ((_ (yield) a b ...) |
| import java.util.Random; | |
| class Sort{ | |
| public static void main(String[] args){ | |
| Sort sort = new Sort(); | |
| int[] arr = sort.makeArray(100); | |
| sort.printArray(arr); | |
| arr = sort.selection_sort(arr); | |
| sort.printArray(arr); | |
| } |
| // ==UserScript== | |
| // @name Github Repository Info | |
| // @namespace artisresistance | |
| // @description Show github repository size and creation date | |
| // @include https://github.com/* | |
| // @version 1.01 | |
| // ==/UserScript== | |
| let regex = /^https:\/\/github.com\/([0-9A-Za-z\-_]*)\/([^\/]*)$/; | |
| let match = document.URL.match(regex); |