The READIN Family Album
Me and Sylvia, smiling for the camera (August 2005)

READIN

Jeremy's journal

One must write in a tongue which is not one's mother tongue

Vicente Huidobro


(This is a page from my archives)
Front page
Most recent posts about Projects

Archives index
Subscribe to RSS

This page renders best in Firefox (or Safari, or Chrome)

Sunday, December 9th, 2007

🦋 Multimedia trouble

Martha comments a few posts down that the media players are starting up automatically when she loads the page. This is not what I was wanting to have happen -- does anybody know what I should change? I have <PARAM NAME="autoStart" VALUE="false"> inside the <OBJECT> definition for each of them. They do not autostart when I load the page. Is anybody else seeing this behavior?

posted afternoon of December 9th, 2007: 2 responses
➳ More posts about The site

Friday, December 7th, 2007

🦋 The Colors

So here's how I came up with the new color scheme for this site, of which I am kind of proud -- I think it looks really pleasant, and might even potentially cause someone to remember the site who would otherwise not.

To start with, the blog had no colors specified, so it used the client's Windows (or whatever operating system) colors. Usually this means black text on white background. Now I have my Windows colors set to a little different, so the background is a very light shade of gray and the text is a dark violet color -- I find it easier to read that way. I was reluctant though to specify colors because I did on the old READIN web site and came to regret having done it.

But, well, I think this combination is good enough to use. Light yellow color for the background, deep violet text in the main portion of the window. Here, links are purple and bold if unvisited, dark gray and normal-weight if visited. If the mouse is over them, they are the horrible iridescent color unknown to man which is represented by #009900. (This is true for all links in the document.)

In the sidebars, a lighter color background* and charcoal text, with the links a brighter sort of aquamarine color if unvisited and teal if visited. The links on the right-hand side (which is practically nothing but links) are not bold but the color should be light enough to draw attention to them -- the text around them is sparse. The links on the left-hand sidebar are the only ones that do not change appearance when visited, because they are small and easy to miss.

(Note: Firefox renders this site better than Explorer. I am not sure why and I don't think it matters much because I think most of the visits to this site are with Firefox or such like. But MSIE does funky things with the borders and the positions of table elements.)

*The two are actually slightly different light colors, the one on the right a little blue or green, the one on the left a little orange or brown. I'm not sure why or what is the use of this.

posted evening of December 7th, 2007: Respond
➳ More posts about Programming Projects

Wednesday, December 5th, 2007

🦋 The New Look

What do you think? More readable or less? Pretty or ugly? Let me know. (Elements of the new look: colors and borders, varying font sizes and styles, dingbats. Everything sort of gradually being moved over from element attributes to style sheets.) Feedback please.

posted evening of December 5th, 2007: 4 responses

Sunday, December second, 2007

🦋 New Dingbats

These are a lot closer to what I was looking for. Still not quite 100% but they will do for now.

posted evening of December second, 2007: Respond

Friday, November 30th, 2007

🦋 Dingbats

Hmm, Sharpie marker isn't giving exactly the effect I was thinking about. It's a step in the right direction though. Also need to learn how to edit GIFs so they are properly transparent.

posted evening of November 30th, 2007: 2 responses

Tuesday, November 20th, 2007

🦋 Filtering out page reads

You get a lot of stuff in your web server log file that does not have to do with actual human reads of your site. I wrote a script that I think shows all the human page views in an Apache log file. It relies on that browsers get css stylesheets, while robots generally don't. (It will miss humans using Lynx; it could easily be tweaked to fix that enough. Also, I have seen Yahoo getting css files; you can fix that by putting "Slurp" in the list of files you're not interested in.)

grep  "blog.css" $logfile  | // get all reads 
                                of blog.css
        awk '{print $1;}' |  // extract ip address
        sort | uniq |        // only show each ip once
        grep -f - $logfile | // now pass that list 
                                of ip's back to grep
        grep " 200 " |       // only show successful reads
        egrep -v (any files you're not interested in)

I believe you could also use "favicon.ico" instead of your css file, but this is less reliable -- I don't know how often browsers request favicon for sites they have already visited. Or you could use the filename of a graphic included on one of your pages and hosted on your site, I think this would work reasonably well.

posted evening of November 20th, 2007: Respond

Wednesday, November 14th, 2007

🦋 Blogging activity

So I'm coming up on 900 posts on this blog, in the past 4½ years. (And some number of "posts" in the previous 3½, when the site was something proto-blog-like, but there is not any easy way of counting them.) Here is how the activity breaks down year by year:

        +--------------+----------+
        | year(posted) | count(*) |
        +--------------+----------+
        |         2003 |      184 |
        |         2004 |      175 |
        |         2005 |      160 |
        |         2006 |      135 |
        |         2007 |      232 |
        +--------------+----------+

(Remembering that 2003 was not a full year for the purposes of this discussion) -- it seems like this last year is about the most active since I started blogging -- this becomes particularly noticeable when you consider that I posted very little in the first few months of this year. -- Indeed October '07 has half again as much activity as the next-most-active month, which is August '07; four of the ten most-active months are in 2007. This has been the latest installment of obsessing over meaningless statistics; tune in next month for popular Google search referrals.

posted evening of November 14th, 2007: Respond

Saturday, November 10th, 2007

🦋 Comment Spam II

OK: The comment spam filter I have in place right now is working (so far); but it would be pretty easy to circumvent if a spammer was determined enough. But I have in mind a pretty simple way to expand it and make it secure, and way better than the captcha images that everybody hates. (Drawback is, it relies on Javascript, which not every browser supports. This could be gotten around a couple of different ways.) I am going to try and implement it over the next few weeks and then I will write it up and try to get other people using it -- it's way better than captchas. (I won't write it up until it's in place because the writeup would include information on how to get around the current, insecure filter I have in place.)

Update: Oh wait, no it actually wouldn't be much more secure than the current scheme. A little harder to get around I guess.

posted afternoon of November 10th, 2007: Respond
➳ More posts about Programming

🦋 Comment Spam

Last night I got hit with my first really major spam attack. So, this morning I implemented a solution I've had in mind for a while. I'm not totally sure it will work but we'll see. If it does work, it's pretty elegant and would require substantial amount of legwork on the part of the spammer to circumvent it, work that I'm pretty sure my site is not worth. Again: not disclosing it in public but if you're interested, let me know and I'll tell you how to do it.

Note: I just deleted a ton of comments without checking. If you left one last night, I deleted it and I apologize.

Update: Well the spam is coming fast and furious all morning and getting intercepted by my trap! Groovy, we'll see how it holds up.

Update: It gets even better! Now Lynx users can leave comments without getting tagged as spam. If you are trying to leave a comment and getting rejected as spam, let me know.

posted morning of November 10th, 2007: Respond

Friday, November 9th, 2007

🦋 Reboot! Restore!

Boy oh boy, tonight I rebooted the new server for the first time since I got it running back in late September! Why, you might ask -- it was not sick, nothing was wrong with it. Well: I inherited an oldish flatscreen monitor from my workplace -- a reboot was necessitated in order to get the computer talking to the screen. That's kind of big news; the old monitor was the one I've been running with ever since I inherited the previous computer from my previous workplace back in 1996 or thereabouts. It was a totally inappropriate monitor for the purpose it was serving; a monstrous, 22" CRT that must weigh over 30 lbs., that totally dominated the desk even though it was never turned on. The new screen will be a much better neighbor for the other things on the desk.

I was a little concerned when I rebooted and the web site was not accessible; I had sort of assumed that apache set itself up, when I installed it, to run as a daemon without anyone having to log in. Turns out that's not the case! Anybody want to tell me how to make it so? sshd starts automatically, which is good. Took me a little while to figure out how to start mysqld -- this would also be a great process to have loaded automatically when the system boots.

And: After I posted this, I noticed its id was 877 and I thought that's weird, wasn't I posting stuff in the 880's earlier? And I looked at my database backup from this morning (!) and saw that there were indeed more posts than I was seeing on the site. Kneel before me, Mysql! I know how to backup and restore databases! (And thanks, Mysql, for making it so easy to do, that a lazybones like myself can do it.)

So... If you're commenting on this post and want to tell me how to get mysql and apache auto loading, it would be great if you could drop a hint about how to make mysql exit gracefully as well, because it sure seems like it did not do that this evening.


Update: Developing... it looks like to make apache and mysql load on boot, I need to put them in /etc/rc.d/rc.local. Now, my computer has no such directory; but it does have rc?.d where ? is a number from 0 to 6 or the letter S. There is also etc/init.d. I should be able to figure this out...

posted evening of November 9th, 2007: Respond

Previous posts about Projects
Archives

Drop me a line! or, sign my Guestbook.
    •
Check out Ellen's writing at Patch.com.

Where to go from here...

Texts
Programming
Woodworking
Music
South Orange
Friends and Family
Blogs
Comix