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
<?php | |
while (strlen(fgets(STDIN)) > 1) | |
echo array_rand(array('ใใธใง' => 0, 'ใคใใ' => 0, 'ใฆใฑใซใผ' => 0)), "\n"; |
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
module Result | |
::R = ::Result | |
def self.create(result = nil, error = nil, code = 0) | |
Data.new(result, error, code) | |
end | |
def self.create_error(error = nil, code = 1) | |
Data.new(nil, error, code) | |
end |
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 base64_decode_dataview = (function() { | |
var __map = {} | |
, __map_18 = {} | |
, __map_12 = {} | |
, __map_6 = {}; | |
!function() { | |
var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/' | |
for (var i = 0, j = chars.length, c; i < j; i ++) { |
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 twitter.com ใใคใผใ่ชๅ่ชญใฟ่พผใฟใใ | |
// @version 0.1 | |
// @namespace http://n-at.me/ | |
// @description twitter.com ใใคใผใ่ชๅ่ชญใฟ่พผใฟใใ ( โโกโพ) | |
// @include http://twitter.com/* | |
// @include https://twitter.com/* | |
// @author tatใt | |
// ==/UserScript== |
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 nyan = {}; | |
(function u_nyan(key, value) { | |
nyan[key] = value; | |
return u_nyan; | |
}) | |
('nyan0', 'ใซใใ') |
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(g, undefined) { | |
var __create = Object.create ? function(o) { | |
return Object.create(o); | |
} : function (o) { | |
function F() {} | |
F.prototype = o; | |
return new F(); | |
} |
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 OAuth = require('oauth').OAuth; | |
var tokens = { | |
consumer_key: 'YOUR CONSUMER KEY', | |
consumer_key_secret: 'YOUR CONSUMER KEY SECRET', | |
access_token: 'YOUR ACCESS TOKEN', | |
access_token_secret: 'YOUR ACCESS TOKEN SECRET' | |
}; | |
var oa = new OAuth( |
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
#!/usr/bin/env node | |
var util = require('util') | |
, express = require('express') // npm install express | |
, OAuth = require('oauth').OAuth // npm install oauth | |
, opts = require('opts'); // npm install opts | |
opts.parse([{ | |
'short': 'p' | |
, 'long': 'port' |
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
<!--[if IE]><script> | |
๏ผผใใ ใใใใ ใใใใใใใ๏ฟคใใใใใใ ใ / | |
ใ ๏ผผใใใใใ ใใใใใใใ๏ฟคใใใใใ ใ / | |
ใใใใใใใใใใใใใ๏ผ๏ฟฃ๏ฟฃใใฝ, | |
ใใใใใใใใใใใใ/ใใใใใ ใ ',ใใใใใใ/ใใ ใใ๏ผฟ/๏ผผ๏ผ๏ผผ/๏ผผ๏ผ|๏ผฟ | |
ใใใ ๏ผผใใใ ๏พ//, {โ}ใ /ยจ`ใฝใ{โ}ใ,๏พใฝใ ใ /ใ ใใ ๏ผผใใ ใใใใใใใ๏ผ | |
ใใใใใ๏ผผ ๏ผใใใ๏ฝใใ ใฝ._.ใใใใ', ใใ๏ผผใใใ ใใ ๏ผใใ IE ๆญปใใ๏ผ | |
ใใใใใ๏ผ ๏ผโใ๏พใใใ๏ฝใผ'โฒใใ ' โ๏ผผ ๏ผผใใใใ๏ผใ ใใใใใใใใ๏ผผ | |
ใใใใใ(ใใ๏ฟฃ๏ฟฃโใใใใใใใใใใโ๏ฟฃใ๏ผฟ)ใใใ๏ฟฃ|๏ผ๏ผผ/๏ผผ/๏ผผ/๏ฟฃ | |
ใใใใใใ๏ฝ๏ฟฃ๏ฟฃ๏ฝใฝใใใใใใใใใใใ/ยด๏ฟฃ |
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
/* | |
* CREATE TABLE `test` ( | |
* `id` int(10) unsigned NOT NULL AUTO_INCREMENT, | |
* `text` text, | |
* `binary` blob, | |
* PRIMARY KEY (`id`) | |
* ) ENGINE=InnoDB DEFAULT CHARSET=utf8 | |
* | |
*/ |