I was reviewing some code not so long ago, and noticed together with the owner of the code, that we had some timing problems. Part of the code looked something like that (Verilog): wire [127:0] a; wir… more →
Adventures in ASIC Digital Designwrote 2 weeks ago: I revisited an old python project today, which had been written for company project. Since there was … more →
wrote 2 months ago: I have been programming for quite sometime now. I see programming as a fun thing where you solve pro … more →
wrote 6 months ago: Here are two C++ style habits that I recommend. Neither is earth-shattering, but both have a benefit … more →
wrote 7 months ago: Say, you have an enum representing a state: enum State { A, B, C, D; } And you want to know if a sta … more →
wrote 7 months ago: I’m experimenting with fluent code for a while now. Fluent code is code that everybody can rea … more →
wrote 8 months ago: Me and one of Unicamp teams Background A few days ago, after a sub-regional phase of ACM ICPC, one i … more →
wrote 8 months ago: Scala has a value modifier called “lazy” and I have a bit of a problem with it. Let … more →
wrote 9 months ago: In an effort to not lose points on their grade, many students will end up writing code like this: #i … more →
wrote 1 year ago: A funny quotation from http://wiki.openstack.org/CppCodingStandards FIXME: Desc says they should be … more →
wrote 1 year ago: Looking for opinions on CamelCase in C++, I have found a nice quotation (http://www.schmid.dk/wiki/i … more →
wrote 1 year ago: I’ve been coding in Haskell for a couple years. Now, Haskell does not really have an establish … more →
wrote 1 year ago: JavaScript is not only amazing language but also very tricky language. To make correct use of it, yo … more →
wrote 1 year ago: The following post is going to be an advanced curly-braces discussion with no right or wrong answer, … more →
wrote 1 year ago: FSM Design Techniques This post is about a paper entitled “Synthesizable Finite State Machine Design … more →
wrote 1 year ago: http://www.ibm.com/developerworks/aix/library/au-hook_duttaC.html 1. 함수 이름 checkSize()보다는 validSize( … more →
wrote 1 year ago: http://namhyung.springnote.com/pages/858738 적지 않은 시간을 개발 업무에 투자했지만 아직도 일관성을 못 가지고 있는 듯하다 -_-;;; 그 일관 … more →
wrote 1 year ago: A few weeks ago I was about to write an acceptance test involving socket communication. Since I was … more →
wrote 1 year ago: Following up on various previous posts on code readability and style I want to provide two more exam … more →
wrote 1 year ago: When you develop software, you most likely have to think in two target domains at the same time. One … more →