I have just finished a wonderful book, Reading in the Brain: The New Science of How We Read, which ostensibly is about the origins and the neural underpinnings of the human ability to read. Dehaene not only takes on the conventional wisdom that reading is a sequential, letter by letter process, but...
Usability lessons from neuroscience
on
Jul 11, 2012 1:16 pm EDT
U
More ModRewrite - Using a dbm file instead of a txt file
on
Sep 4, 2008 8:41 pm EDT
M
The most confusing thing is when you use the perl script on the official apache site here it's written for the NDBM format (which isn't available on my box). Here's the perl script: #!/path/to/bin/perl ## ## txt2dbm -- convert txt map to dbm format ## use NDBM_File; use Fcntl; ...
Mod_rewrite: Attempting to bend RewriteMap, RewriteCond, and RewriteRule to my will...
on
Aug 21, 2008 8:39 pm EDT
M
RewriteEngine On RewriteMap redirects txt:/home/.../.../rewriterules.map RewriteRule ^(.*)$ ${redirects:$1|$1} [R,L,NC] How does it work? (See here for details.) The first line turns on mod_rewrite. The next line sets the location of the map file (the two column list of source/destina...