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
#!/bin/sh | |
sudo diskutil repairpermissions / | |
purge | |
du -sx / >& /dev/null & sleep 5 && kill $! |
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 focus.js | |
// @namespace http://twitter.com/amasawa | |
// @version 0.1 | |
// @include http://sp.pf.mbga.jp/* | |
// @include https://sp.pf.mbga.jp/* | |
// ==/UserScript== | |
(function(global){ | |
var inputs = document.querySelectorAll('input[type="checkbox"]'); |
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="shift_jis"?> | |
<job> | |
<script language="JScript"><![CDATA[ | |
(function() { | |
var dom; | |
try { dom = new ActiveXObject('Msxml2.DOMDocument.4.0'); } | |
catch (e) { dom = new ActiveXObject('Microsoft.XMLDOM'); } | |
dom.async = false; | |
dom.resolveExternals = true; | |
dom.validateOnParse = true; |
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="Msxml2.DOMDocument.6.0"/> | |
<object id="ado" progid="ADODB.Stream"/> | |
<reference object="ADODB.Stream"/> | |
<script language="JScript"><![CDATA[ | |
(function() { | |
var input = WSH.arguments(0); | |
ado.open(); |
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="Msxml2.DOMDocument.6.0"/> | |
<object id="ado" progid="ADODB.Stream"/> | |
<reference object="ADODB.Stream"/> | |
<script language="JScript"><![CDATA[ | |
(function() { | |
var input = WSH.arguments(0); | |
var output = WSH.arguments(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
<?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:', |
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
// 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
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
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; |