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() { | |
var gin = new Gin.Grammar({ | |
document : / prolog element Misc* /, | |
Char : / <(?:[\x09\x0A\x0D\x20-\uD7FF\uE000-\uFFFD]|[\uD800-\uDBFF][\uDC00-\uDFFF])> /, | |
S : / <[\x20\x09\x0D\x0A]+> /, | |
NameStartChar : / <[:A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]> /, | |
NameChar : / NameStartChar | <[\-.0-9\xB7\u0300-\u036F\u203F-\u2040]> /, | |
Name : / NameStartChar NameChar* /, | |
Nmtoken : / NameChar+ /, | |
EntityValue : / ( '"' ( <[^%&\"]> | PEReference | Reference )* '"' ) | ( "'" ( <[^%&\']> | PEReference | Reference )* "'" ) /, |
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
var dom = exports; | |
(function() { | |
function extend(d, s) { for (var p in s) d[p] = s[p]; } | |
/* ================ Node ================ */ | |
dom.Node = Node; | |
function Node() {}; | |
Node.__defineGetter__('ELEMENT_NODE' , function() { return 1; }); |
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
Gin = require('Gin').Gin; | |
(function() { | |
var path_out = Main.arguments[2]; | |
var path_dir = Main.arguments[3]; | |
var encoding = Main.arguments[4]; | |
var delimiter = '\t'; | |
var file_out = new File(path_out); | |
var stream_out = file_out.openWrite(); |
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
<?xml version="1.0" encoding="utf-8"?> | |
<job> | |
<object id="dom" progid="Microsoft.XMLDOM"/> | |
<object id="ado" progid="ADODB.Stream"/> | |
<reference object="ADODB.Stream"/> | |
<script language="VBScript"><![CDATA[ | |
Function input_box(ByVal str) | |
InputBox "", "", str | |
End Function | |
]]></script> |
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
<?xml version="1.0" encoding="utf-8"?> | |
<job> | |
<object id="shell" progid="WScript.Shell" /> | |
<script language="JScript"><![CDATA[ | |
(function() { | |
var path = WSH.arguments(0); | |
shell.run([ | |
'ajaxmin', | |
'"' + path + '"', | |
'-out', |
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
import java.io.BufferedReader; | |
import java.io.FileInputStream; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.InputStreamReader; | |
import java.io.OutputStream; | |
import java.net.HttpURLConnection; | |
import java.net.URL; | |
import java.util.HashMap; | |
import java.util.Iterator; |
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
var sys = require('sys'); | |
var http = require('http'); | |
http.createServer(function (req, res) { | |
var str = ''; | |
req.on('data', function(data) { | |
str += data; | |
}); | |
req.on('end', function() { | |
var crlf = '\r\n'; | |
var boundary = str.split(crlf).shift(); |
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
// TinySegmenter_mod (derived from TinySegmenter 0.1) | |
// (c) 2010 Atsushi Takayama | |
// usage: segment('はひふへほ') // => [12399,1240512402,1241112408] | |
// TinySegmenter 0.1 -- Super compact Japanese tokenizer in Javascript | |
// (c) 2008 Taku Kudo <[email protected]> | |
// TinySegmenter is freely distributable under the terms of a new BSD licence. | |
// For details, see http://chasen.org/~taku/software/TinySegmenter/LICENCE.txt | |
var segment = (function TinySegmenter() { |
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
<?xml version="1.0" encoding="utf-8"?> | |
<component> | |
<registration | |
progid="Component.Ado" | |
classid="{FF2C62D7-CBD3-4F87-A509-38942A006553}"/> | |
<public> | |
<method name="loadText"> | |
<parameter name="filename"/> | |
<parameter name="charset"/> | |
</method> |
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
<?xml version="1.0" encoding="utf-8"?> | |
<job> | |
<object id="ado" progid="Component.Ado"/> | |
<script language="JScript"><![CDATA[ | |
(function() { | |
var path = WSH.arguments(0); | |
var shell = WSH.createObject('WScript.Shell'); | |
var shortcut = shell.createShortcut(path.replace(/^(.*)\.min\.js$/, '$1.url')); | |
shortcut.targetPath = [ | |
'javascript:', |
OlderNewer