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
var UNICODE_RANGE_MAP = { | |
BAIDC_LATIN : [ 0x00, 0x7F ], | |
LATIN_1_SUPPLEMENT : [ 0x80, 0xFF ], | |
LATIN_EXTENDED_A : [ 0x100, 0x17F ], | |
LATIN_EXTENDED_B : [ 0x180, 0x24F ], | |
IPA_EXTENIONS : [ 0x250, 0x2AF ], | |
SPACING_MODIFIER_LETTERS : [ 0x2B0, 0x2FF ], | |
COMBINDING_DIACRITICAL_MARKS : [ 0x300, 0x36F ], | |
GREEK_AND_COPTIC : [ 0x370, 0x3FF ], | |
CYRILLIC : [ 0x400, 0x4FF ], |
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
$.fn.addUiState = function() { | |
$(this).hover(function() { | |
$(this).addClass("ui-state-hover"); | |
}, function() { | |
$(this).removeClass("ui-state-hover"); | |
}).mousedown(function() { | |
$(this).addClass("ui-state-active"); | |
}).mouseup(function() { | |
$(this).removeClass("ui-state-active"); | |
}); |
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
var keyword = 'KEYWORD'; | |
FB.api('/search?q=' + keyword + '&type=post', { | |
limit : 10 | |
}, function(response) { | |
var content = ''; | |
var data = response.data; | |
for ( var i in data) { | |
var icon = ''; | |
var nameSpan = ''; |
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
package com.yujikosuga.http; | |
import java.io.IOException; | |
import java.io.UnsupportedEncodingException; | |
import java.net.HttpURLConnection; | |
import java.net.URL; | |
import java.net.URLEncoder; | |
/** | |
* This HttpUtils class has static utility methods for HTTP manipulation. |
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
/* Decrease the padding top size. */ | |
int update_interval_millis = 25; | |
int decrease_size_per_interval = 10; | |
int toSize = 100; | |
View view; | |
final Handler handler = new Handler(); | |
Runnable runnable = new Runnable() { | |
@Override |
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
import java.io.BufferedInputStream; | |
import java.io.BufferedOutputStream; | |
import java.io.File; | |
import java.io.; | |
import java.i FileOutputStream o.IOException; | |
import java.util.Enumeration; | |
import java.util.jar.JarFile; | |
import java.util.zip.ZipEntry; | |
/** |
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
<a href="http://www.yujikosuga.com/httpParams.php" | |
class="post4a" | |
data-postdata='{"userid":"43ec7d99d05064.98961542", "lang":"en"}'> | |
HTTP Environment Checker | |
</a> |
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
<plugin> | |
<groupid>org.apache.maven.plugins</groupid> | |
<artifactid>maven-assembly-plugin</artifactid> | |
<configuration> | |
<finalname>${project.build.finalName}</finalname> | |
<descriptorrefs> | |
<descriptorref>jar-with-dependencies</descriptorref> | |
</descriptorrefs> | |
<appendassemblyid>false</appendassemblyid> | |
</configuration> |
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
otool: at least one file must be specified | |
Usage: otool [-fahlLDtdorSTMRIHvVcXm] <object file> ... | |
-f print the fat headers | |
-a print the archive header | |
-h print the mach header | |
-l print the load commands | |
-L print shared libraries used | |
-D print shared library id name | |
-t print the text section (disassemble with -v) | |
-p <routine name> start dissassemble from routine name |
OlderNewer