January, 17, 2005 archives
eric meyer wrote up his experience with teaching his daughter (now thirteen months old) sign-language using baby signs. very cool.
nospaceforyou
so i sort of understand the fascination with tags (although i haven’t provided any way for browsing my entries here by tag), but it seems a shame that the common implementations eschew spaces within tags.
one thing that is fun about tags is that they can provide a bit of meta-commentary about an entry, sort of like a title sometimes does.
e= mc²
obviously my furious pace of work-related blogging tapered off pretty quickly. i’ve still been fighting the good fight against bugs (two swatted today).
something i’ve always been very flexible on is coding style, so i haven’t had much trouble adapting to the coding style for the mysql server, although my brace-placement reflexes need some re-training. one rule it has that i haven’t run across before is how assignment is handled, with the equal sign next to the variable name, like so:
lower_case_table_names= arg;
this makes it easy to use basic search tools (like grep
or vim’s /
command) to find where assignments to a particular variable happen, without also getting hits at equality tests, which should always have a space between the variable name and ==
.