Skip to content

Category Archives: Asides

Live Traffic

12-Jul-08

I’ve added a real-time traffic feeder on the sidebar. That way I don’t have to WHOIS everyone.

All-Time High

07-Jul-08

Yesterday, the site reached an all-time high number of visits. It nearly reached 2000 visits before the day ended. I couldn’t tell where the traffic came from (actually I do, but I couldn’t tell why they needed the information badly yesterday).

Optimism

03-Jul-08

Here I am sitting, thinking of something optimistic to write about. It’s very difficult, so here’s what I came up with… String inputDir = "/home/user/"; String inputFile = "in.txt"; if (!inputDir.endsWith("/")) inputDir += "/"; File iFile = new File(inputDir + inputFile); String outputDir = "/home/user/backup/"; if (!outputDir.endsWith("/")) outputDir += "/"; iFile.renameTo(outputDir + inputFile);

Moonstar 88

02-Jul-08

I’m giving Moonstar 88 recognition in my site. They keep making hits, yet they are not very well known. They’re the band who brought us Torete. During my week-long trip to Canada, I had their latest album Todo Combo as my personal radio. I mostly enjoy the cover of Yano’s Senti, the original Migraine and [...]

Icewm Preferences

21-May-08

Manipulation of IceWM for EeePC: nano /home/user/.icewm/preferences

Info On Philippine Officials

18-May-08

If you want to know more about the officials representing your town, province, region, or the Philippines, there is a site that has a database of all information from personal to how much money they have on the bank (declared of course). Grafted incomes are not included I’m pretty sure. At least the site will [...]

Linux: Change FileName/FolderName

11-May-08

Changing file name or folder name in UNIX. mv OrigFileName NewFileName mv OrigFolderName NewFolderName