Programming

Ag: The Silver Searcher

I don't know if I've mentioned "ack" before — it's been my favorite tool for searching code for a while (it's better than grep, because it's fairly speedy because it knows how to search only files that are code and how to...
ProgrammingPython

Cython bug?

I have this Cython code: cdef struct MyStruct: int x def byte_bugginess(x=1): cdef char val = 1 cdef MyStruct foo print("1 - val = %d" % val) if x in (3, 4): print("2 - val = %d" % val) val = 2 print("3 - val = %d" % val) else:...