Weijian's Technical Notes
Separate concerns. - Edsger Wybe Dijkstra
Wednesday, March 31, 2010
Two Useful Eclipse Plugins
›
FindBugs uses static analysis to look for bugs in Java code. ANTLR IDE provides support for ANTLR parser generator.
3 comments:
Saturday, February 06, 2010
1<<32 = ?
›
Let 1 be a 32 bit integer in Java, what should 1<<32 be? 0? Because the "1" bit will be shifted to the far left? In fact, it...
Monday, January 18, 2010
Ways of Implementing DSL
›
DSL , domain-specific language , or simply our very own language intended to solve our own specific problem, may not be limited to a program...
Sunday, January 10, 2010
Protocol Verification Using Tcpdump and Wireshark
›
It is a must to use Tcpdump (to capture) and/or Wireshark (to analyse) to verify protocol implementation when doing TCP / IP network pr...
Tuesday, December 29, 2009
Capture and Analyse Network Packets
›
tcpdump is the standard packet capturing facility available on most Linux systems, which is based on command line. Wireshark , formerly cal...
›
Home
View web version