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
// empty |
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
Winsock Catalog Provider Entry | |
------------------------------------------------------ | |
Entry Type: Layered Chain Entry | |
Description: qlsp over [MSAFD Tcpip [TCP/IP]] | |
Provider ID: {FFCF919C-A5F8-48B7-B1C0-8230524D2871} | |
Provider Path: C:\Windows\system32\qproxy.dll | |
Catalog Entry ID: 1045 | |
Version: 2 | |
Address Family: 2 |
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
8: 8027 | |
HLDLLD | |
HLLDLL | |
HLDLDL | |
HDLDLL | |
HLLLDL | |
542462016 http://pad.dawnglare.com/?patt=HLDLLDHLLDLLHLDLDLHDLDLLHLLLDL | |
HDLLDL | |
HLLDLL | |
HLDLDL |
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
8: 7 | |
LDLLL | |
LLDLD | |
LDLDL | |
DLDLL | |
LLLDL | |
8563330 http://pad.dawnglare.com/?height=5&width=5&patt=LDLLLLLDLDLDLDLDLDLLLLLDL | |
LDLLD | |
LLDLL | |
LDLDL |
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
10: 8 | |
HDHHDH | |
HDHDHH | |
HDHHDD | |
HHDDHH | |
HDHHHH | |
155519904 http://pad.dawnglare.com/?patt=HDHHDHHDHDHHHDHHDDHHDDHHHDHHHH | |
HDHHDH | |
HDHHDH | |
HHDDHH |
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
diff --git a/examples/demo.rs b/examples/demo.rs | |
index ff14042..2ec627d 100644 | |
--- a/examples/demo.rs | |
+++ b/examples/demo.rs | |
@@ -150,9 +150,14 @@ mod parser { | |
statements[s] => Program { stmts: s } | |
} | |
+ optionalSemi: () { | |
+ => (), |
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
uv_shutdown_t: 48 bytes | |
uv_write_t: 160 bytes | |
uv_connect_t: 64 bytes | |
uv_udp_send_t: 184 bytes | |
uv_tcp_t: 216 bytes | |
uv_pipe_t: 232 bytes | |
uv_tty_t: 280 bytes | |
uv_prepare_t: 88 bytes | |
uv_check_t: 88 bytes | |
uv_idle_t: 88 bytes |
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 child = require('child_process'); | |
var net = require('net'); | |
var dgram = require('dgram'); | |
// Create a new fd. | |
var sock = dgram.createSocket('udp4'); | |
sock.bind(4321, function() { | |
// Send that fd to another process. | |
// This keeps the file description open, | |
// even after we close our local fd. |