I no longer mantain this list. There are lots of other very comprehensive JavaScript link lists out there. Please see those, instead (Google "awesome JavaScript" for a start).

#ghc asm backend
_s1Mj_info:
0x00000000000018c0 4983C410 addq $0x10, %r12
0x00000000000018c4 4D3BA590000000 cmpq %ds:0x90(%r13), %r12
0x00000000000018cb 0F873D010000 jal $0x1a0e
0x00000000000018d1 48B8FFFF00000000FFFF movq $0xffff00000000ffff, %rax
0x00000000000018db 488B4B07 movq %ds:0x7(%rbx), %rcx
0x00000000000018df 4821C1 andq %rax, %rcx
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
find: ([a-z]) (["])([a-z]) | |
replace: $1 \\$2$3 | |
find: ."" | |
replace: ./"" | |
find: ([a-z])(["]) ([a-z]) | |
replace: $1\\$2 $3 |
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
descending | |
df[with(df, order(-a)), ] | |
or | |
df[order(-df$col1),] | |
ascending |
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
<div id="insertTest"></div> | |
<script> | |
var wikipediaHTMLResult = function(data) { | |
var readData = $('<div>' + data.parse.text.* + '</div>'); | |
// handle redirects | |
var redirect = readData.find('li:contains("REDIRECT") a').text(); | |
if(redirect != '') { | |
callWikipediaAPI(redirect); |