Jash: JavaScript Shell
jsdb
is equivalent to this:
Enamored of you
[url=http://www-cs-faculty.stanford.edu/~knuth/]Don Knuth[/url]
[url=http://www.cs.unc.edu/~brooks/]Brooks[/url]
[url=http://www.systemsguild.com/GuildSite/TDM/TDMBio.html]Tom DeMarco[/url]
[url]http://www.dinkumware.com/[/url]
[url=http://sites.google.com/site/misoo777/begin/yyy]高煥堂的4本Android書籍介紹[/url]
[url]http://androidappdocs.appspot.com/index.html[/url]
pushlets适用么?
[url]http://www.parashift.com/c++-faq-lite/[/url]
Scalable Vector Graphics
“What else is burried down in the depth’s of Google’s amazing JavaScript?”
Short-circuit logic operators
InsertDeleteSelectUpdate
Slynkr
mysql> select addr_id, value from data where value in(select value from data where value regexp '^[0-9]{11}$' group by value having count(value) > 1) union all select id, mobile from addr where mobile regexp '^[0-9]{11}$';
jsdb
function Hello() {alert("caller is " + arguments.callee.caller.toString());}
is equivalent to this:
function Hello() {alert("caller is " + Hello.caller.toString());}
Enamored of you
[url=http://www-cs-faculty.stanford.edu/~knuth/]Don Knuth[/url]
[url=http://www.cs.unc.edu/~brooks/]Brooks[/url]
[url=http://www.systemsguild.com/GuildSite/TDM/TDMBio.html]Tom DeMarco[/url]
[url]http://www.dinkumware.com/[/url]
[url=http://sites.google.com/site/misoo777/begin/yyy]高煥堂的4本Android書籍介紹[/url]
[url]http://androidappdocs.appspot.com/index.html[/url]
pushlets适用么?
[url]http://www.parashift.com/c++-faq-lite/[/url]
<script>
setTimeout(function() {alert(1);}, 0);
setTimeout(function() {alert(2);}, 0);
var xhr = new XMLHttpRequest();
xhr.open("get", "hhhhh.html", true);
xhr.onreadystatechange = function() {
if(xhr.readyState == 4) {
if(xhr.status == 200) {
} else {
alert(3);
}
}
};
xhr.send(null);
</script>
java -jar a.jar
永远不要对你的另一半撒谎。
The Art of Dealing with Rejection
Scalable Vector Graphics
“What else is burried down in the depth’s of Google’s amazing JavaScript?”
set expandtab
set shiftwidth=4
set softtabstop=4
set tabstop=4
Short-circuit logic operators
js>var o = null;
js>var name = o && 23;
js>writeln(name);
null
js>var o = false;
js>var name = o && 23;
js>writeln(name);
false
js>var o = {};
js>var name = o && 23;
js>writeln(name);
23
js>var o = true;
js>var name = o && 23;
js>writeln(name);
23
http://www.51leifeng.net
alfa
mysqladmin status -uroot -proot
mysqladmin processlist -uroot -proot
http://www.websiteoptimization.com/speed/tweak/css-sprites/
http://css-tricks.com/css-sprites/
SWEEGI
COTTA
DUMOKA
CORNER
Oracle Bone Script
faaya
InsertDeleteSelectUpdate
Slynkr
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\UnreadMail\xscript@live.com]
"MessageCount"=dword:00000017
"TimeStamp"=hex:9c,a6,1e,ca,de,4c,ca,01
"Application"="http://www.hotmail.com/"
mysql> select addr_id, value from data where value in(select value from data where value regexp '^[0-9]{11}$' group by value having count(value) > 1) union all select id, mobile from addr where mobile regexp '^[0-9]{11}$';