This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Lingr room bookmarklet</title> | |
<style> | |
html { margin: 0; padding: 0; } | |
body { margin: 0; padding: 0; color: #555; background-color: #fdfdd1; } | |
h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; color: #CB7500; font-family: Georgia, Times, serif; text-shadow: #DDD 0px 0.05em 0.05em; } |
This file contains hidden or 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
/** | |
* rfc3986.js | |
* Uniform Resource Identifier (URI): Generic Syntax (RFC3986) | |
* | |
* @version 1.0 | |
* @author think49 | |
* @url https://gist.github.com/770087 | |
* @see <a href="http://www.ietf.org/rfc/rfc3986.txt">www.ietf.org/rfc/rfc3986.txt</a> | |
* @see <a href="http://www.studyinghttp.net/rfc_ja/rfc3986">Uniform Resource Identifier (URI): 一般的構文</a> | |
* @license http://www.opensource.org/licenses/mit-license.php (The MIT License) |
This file contains hidden or 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
/** | |
* getAncestorElementByTagName.js | |
* | |
* @version 1.0 | |
* @author think49 | |
*/ | |
/** | |
* get Ancestor Element by tagName. |
This file contains hidden or 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
/** | |
* addEvent.js | |
* | |
* @version 2.1.3 | |
* @author think49 | |
*/ | |
/** | |
* removeEventListener wrapper. | |
* @function |
This file contains hidden or 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
[Patterns] | |
Name = "Array [2010/12/02] prototype v0.1.31" | |
Active = TRUE | |
Limit = 256 | |
Match = "array" | |
"$SET(ArrayStatements=var hoge = ["foo","\\"Hello, World!\\"",'test'];)" | |
"$LST(ArrayCommand)" | |
Replace = "ArrayCSVLine = $GET(ArrayCSVLine)\r\n" | |
"ArrayCSV = $GET(ArrayCSV)\r\n" | |
"\\9 = \9 " |
This file contains hidden or 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
/** | |
* Div.js | |
* | |
* @version 0.2 | |
* @author think49 | |
*/ | |
/** | |
* DOM HTMLDivElement constructor. | |
* @constructor |
This file contains hidden or 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
/** | |
* removeNodesAll.js | |
* | |
* @version 1.1.1 | |
* @author think49 | |
*/ | |
/** | |
* Remove NodeList. | |
* @function |
This file contains hidden or 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
/** | |
* ElementTraversal.js | |
* | |
* @version 1.0 | |
* @author think49 | |
*/ | |
/** | |
* Interface Node |
This file contains hidden or 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
/** | |
* toGreatestCommonDivisor.js | |
* @version 1.0 | |
* @author think49 | |
*/ | |
/** | |
* 最大公約数を求める。(ユークリッドの互除法) | |
* @function |
This file contains hidden or 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
/** | |
* get-primes.js | |
* Get a prime list. | |
* | |
* @version 1.0.1 | |
* @author think49 | |
* @url https://gist.github.com/675313 | |
* @license http://www.opensource.org/licenses/mit-license.php (The MIT License) | |
*/ |