You are currently browsing the archives for the Technology category


Windows on inactivity

Here’s a little tip for anyone like me still using Windows Vista who’s having trouble with the system logging/locking you out after a certain period of inactivity (usually 5 or 10 minutes). The two most common culprits for this are the screensaver settings or possible power saving options, both accessible from within the Control Panel. However, what isn’t obvious and what drove me mad trying to find, is that even if you have None selected as your screensaver of choice, it appears Windows still sees fit to still log the user out after the allotted period of time. This despite the fact that the On resume, require logon checkbox is greyed out.

After much headscratching and searching through forums, I eventually discovered that you can prevent Windows automatically presenting you with the login screen after a few minutes of inactivity by reenabling the screensaver, providing an extraordinarily large number and unchecking the On resume, require logon checkbox. No more interrupted video viewing!

Changing your phpBB3 domain

If like me you’ve decided at some point to move your phpBB install to a new domain or location within a domain, there are a number of little hurdles to jump before you can successfully consider the move complete. Here’s my short one-two-three guide for getting your forum moved over to a new address.

Continue reading →

The Google Docs Server Rejected Roundabout

It might not be particularly well featured, but Google Docs does at least provide a quick and easy way to share your documents, albeit with messed up formatting and various other caveats. Today, however, I came across a problem uploading some small files which produced the rather pallid error message “Server rejected.” Something wrong with my files? With the browser upload? With the server itself? No idea.

Fortunately there was an easy, if rather roundabout fix available: simply email the files to my Gmail account, and use the option there to open them with Google Docs. Bingo!

The WordPress 3.0 Milestone

Although it’s only slated for release sometime in May, the first beta of the new WordPress 3.0 is already doing the rounds. Blog Oh Blog has a nice summary of the changes and additions in the new version: most of the updates are fairly innocuous, perhaps the largest mention should go to the integration of WordPress-mu, for setting up multi-user blogs and networks.

However, the announcement that really put the cat amongst the pigeons has been that the core development team may now be promoting what were formally called canonical plugins, now known as core plugins following the unpublished results of a poll in December. It appears that whilst attempting to address a genuine issue, the very idea of having plugins that stand in the limelight with an official stamp of approval has incensed many community plugin developers.

Some really excellent debate has been held which has, amongst other things, revealed that the initial go ahead for core plugins will be very limited; just three plugins, including an old, out-of-date plugin, a chunk hived off from the core, and a newly developed plugin. Nevertheless, the potential for these core plugins to have wide-reaching effects on the plugin development pool, create stagnation in the community and a greater top-down hierarchy is something that in the eyes of many developers and enthusiasts, has not been addressed.

Continue reading →

Internet footprint

The Internet Trail
The Internet Trail

An email arrives from a company you’ve never heard of telling you about a change to their user policy. It could very well have been spam, except that the details are actually correct for a change, and you’re not being offered a credit card, mortgage, or a million dollars from a Nigerian general. The email details alterations to a privacy policy you probably never read, particularly since the company name itself doesn’t register. You’ve just stumbled upon your Internet trail, crumbs you’ve scattered around the place registering here and there over the years.

But just how big is your Internet footprint? If you’re a conscientious user who goes out of their way to protect their information and avoid pointless trivia on the Web, it could be that you’ve only left a few grains behind you. But for the rest of us, those little titbits could very well be quite liberally scattered throughout the Internet, potentially accessible to just about anyone with the time and inclination. Whilst the content we’ve created ourselves might be relatively humble, today’s social web has ensured that all but the most camera shy can end up having their pictures online for virtually anyone to see, and references to us can be found with just a few simple searches. But our Internet footprint isn’t just limited to those relevant bits which appear when we’re Googled—which after all is as much dependent on the uniqueness of our names or the fields in which we work—but simply, how many little instances there are of us out there.

Continue reading →

Fixing a broken network printer

There’s one problem which was driving my parents nuts on XP for some time before we finally got around to finding a reasonable solution. For whatever reason, one of their computers insisted on automatically adding the shared network printer on the other machine as the default printer in the list. This regardless of whether we had already assigned a local default, and whether the network printer was already in the list.

Whilst that already caused some consternation when documents would be sent to the wrong machine, it was compounded by the fact that if the printer was offline at the time, Windows XP would spend 100% CPU time trying to find the damn thing, leaving the PC highly unresponsive until the print queue was manually cleared. Meaning the options were between remembering to change the printer on every print job, or forgetting and rebooting the machine in between.

Fortunately, we found the handy little script below on some forum or other (praise be to the original author). It stops Windows’ printer service, deletes any waiting print jobs, and then restarts the service. Copy the lines below into a batch file (or into a simple text file and change its extension to .bat) or alternatively download the same script as a file.

@echo off
echo.
echo Purging the print queue . . .
net stop Spooler
echo Deleting all print jobs . . .
ping localhost -n 4 > nul
del /q %SystemRoot%\system32\spool\printers\*.*
net start Spooler
echo Done!
ping localhost -n 4 > nul

  Clear Printer Queue Batch (240 bytes, 242 hits)

Ten reasons Valve’s Steam fails to live up to standards

Steam

I’ve been using Steam for a fair while now, in fact pretty much since the beginning, and have seen the program grow on from its fairly humble origins. There are now hundreds of titles available, including games from big-name publishers and independent game houses alike, and the usual crashes and quirks that afflicted the early releases are pretty much gone. Nevertheless, there are still a number of key areas in which Steam continues to live up to standards, at times making using the system a bit of a nightmare. This is a list of some of those issues which in my eyes prevent Steam from becoming a really top class product, delivering everything the platform really promises. Some of these issues admittedly have their origins outside of Valve’s headquarters, but the way in which they are dealt with only compounds the problems further, for both customers and clients.

Continue reading →