Geek Stuff category archive
Facebook Weirdness: Nobel Peace Prize Dept. 0
I am a member of this group on Facebook:
(Aside: And I do support the prize. Even though I think it was premature, as I said, it would be incredibly churlish not to support the receipt of such an honor by one of one’s fellow countrymen–but we have no shortage of incredible churls. And, despite the gnashing of churlish teeth, a Nobel Prize is not the type of thing that one turns down.)
The page was created by a fellow from Philly whom I know from DL.
Here’s what’s freaky:
When I Google “We Support President Obama’s Nobel Peace Prize,” the link that comes up, awash in all the news links, is the URL for the Canadian Facebook page in French; the page itself is not translated, but the American English headers are replaced with French ones.
Here’s the link again:
http://www.fr.facebook.ca/group.php?gid=180691720019&ref=share
(Aside: Microsoft’s Bing! couldn’t even find that.)
The American English page does not show seem to appear in the first three pages or so of the Google results. Does this mean more French-Canadians than others are searching for the topic?
Inquiring minds want to know.
Twits on Twitter 0
At the Guardian.
Easter Egg Hunt 0
Found one.
GobbledyGook 0
I mean this article here, which attempts to equate the development of social networks to a Darwinian process of evolution.
Twits on Twitter 0
Like I care.
Adventures in Linux: Automating a Virus Scan (Updated) 0
From time to time I scan for viruses and other malware with AVG for Linux. I decided to automate the process, so I wrote a script to scan my home folder and save the results of the scan to my home folder. If this works, I’ll see about automating a weekly scan for the entire computer (a complete scan takes several hours, because it also scans my 250 GB external hard drive).
Here’s what the script does:
-
1. Declare a variable (“$NOW”) to give the report file a unique name and store it in a unique location.
2. Make a directory to hold the report.
3. Start the scan.
4. Save the report to the selected directory.
The scan command parses as follows:
-
avgscan=scan
-r/home/[username]l/AVG/$NOW/scan$NOW.txt=save the report to this directory with this file name.
/home/[username]=scan this directory (folder)
“Echo” means to display a line of text in a terminal.
Here’s the script:
#!/bin/bash
#Set the variable NOW
NOW=1
#Define now as today’s year-month-date-hour-minute.
NOW=$(date +%Y-%m-%d-%H-%M)
echo “Now = $NOW”
#Make the directory to hold the backup file.
mkdir /home/[username]/AVG/$NOW
echo “Making the directory ~/AVG/$NOW for the backup.”
#run scan home folder
echo “Scanning your home folder”
avgscan -r/home/[username]/AVG/$NOW/scan$NOW.txt /home/[username]/
echo “Scan completed and report saved.”
The script works. Then I put this line in my crontab file
* 2 * * * /home/[username]/scripts/vscan.sh
so that the scan will run automatically at 2 a. m. every morning.
I also put a line in my root crontab to update the virus scanner every morning at 1 a. m.
* 1 * * * /usr/bin/avgupdate
We’ll find out tomorrow whether the cron job runs.
Addendum:
I have some trouble to shoot.
The cron job ran. And ran. And ran. There were multiple instances of the script still running this morning. I’ve added “exit” to the end of the script and will see what happens the next time it runs.
Malware Circulating via Facebook 0
Beware of Facebook messages asking whether you are in a video and purporting to link to a video; you aren’t and it doesn’t.
They may take you to a fake Facebook page that tries to pwn your computer.
I wrote about my investigation at Geekazine.
Housekeeping 1
I’ve removed some RSS feeds from my sidebar, mostly big feeds such as Reuters and MarketWatch, for which the content is readily available elsewhere.
I’ve also removed a couple of blogs that have become relatively quiescent of late. And I’ve added the food recall feed from FoodSafety dog gov, which I learned about from somewhere I forget where I’m trying to remember.
Opera Rocks 0
I have published a tour of Opera v. 10 at Geekazine in two parts. Check it out ahd discover the ultimate Internet experience.
Part One.
Part Two.
Electrons Travel at the Speed of Light 0
But they have to march in formation.
According to the BBC, Unlimited IT dispatched 11-month-old Winston from its call centre in the town of Howick to its Durban office. The bird carried its data payload stored on a memory stick, and in fact made the trip in just one hour and eight minutes.
All joking aside, an hour to download the equivalent of a standard DVD is not so bad. In the States.
Elsewhere, it’s lousy:
eBook Reader 0
I found a neat free and open source ebook reader. It’s not big on eye candy, but it is quite functional.
It was designed for Android, but has been ported to both Windows XP and Linux desktop versions. I reviewed it at Geekazine.
I decided to mention it here because I know that my two or three regular readers also read books.
You Know You Are a Geek When . . . 0
. . . you see an automobile commercial talking about RPMs and you think of “Redhat Package Management.”
Opera Developer Tools 0
I’ve been working on a website for a friend of mine and, as I have tried to clean up the last couple of things so I can invoice so it can go live, I haven’t had a lot of luck.
Then I found Opera Developer Tools. They come with Opera. I just never stumbled over them before.
It shows the css, the rendered page code, and the scripts, as well as lists page errors and all sorts of other neat stuff.

Click the image for a larger picture.
Afterthought: I’m hardly a web developer. But I’m a pretty good editor.








