Quotes of the week
[Posted April 11, 2012 by corbet]
People who can't do object-oriented programming in a procedural
language perhaps don't understand object-oriented programming,
which is not about syntax, nor about enforcement, but about
deliberately choosing a narrower subset of mechanisms to produce
programs that are easier to maintain.
--
John Gilmore
It may be possible to improve the situation by adhering to the
following rules throughout your program:
- avoid struct types which contain both integer and pointer fields
- replace pointer identity with value equivalence (this can lead to a more
explicit memory management in your program)
- avoid integer values which may alias at run-time to an address; make sure
most integer values are fairly low (such as: below 10000)
- ...
--
"⚛"
on avoiding out-of-memory problems in 32-bit Go programs
Clearly Go is a superior weapon if the goal is to shoot everyone in
the foot at the same time. The GIL in python forces you to shoot
each person in the foot in sequence.
--
Kyle
Lemons
(
Log in to post comments)