Archive for February, 2006

February 28th 2006

Phantom phone-calls

Phantom calls never used to be a problem for me.. adopting a simple “if you don’t recognise the number, don’t answer it” policy works fine.

This policy, however, is starting to break-down now I’ve started putting my mobile number on important documents.. things like CVs, not the kind of phone-call you want to miss.

Assuming you’re not insistent on answering every phone call, you can just silence it and allow it to ring out, leaving you with the caller’s number. You now have a (software-scale) long time to decide whether you want to call this person back.

For instance, I got a call from 01792474700, Google finds a post on 3g’s forum suggesting that they’re trying to sell me a new phone.

Assuming that I was sitting at a computer with a reasonable speed internet connection I could have found that out while the phone was ringing, and decided not to answer it… a strong negative, attained quickly using only the internet, something you could possibly train a phone to do.

This is, unfortunately, not quite as obvious as it sounds.. it took me two google searches (second attempt was with a space) to find this result, and I’d never heard of 3g’s forums before, I have no idea if it’s a valid source, if it’s a company or an individual with their contact details on the page, etc. You’d have to train your app to work out what context the message was in. This is feasible on PCs, but maybe not in java on current mobile phone processing power in ~3 seconds.

The majority of the calls you receive are unlikely to be strong negatives (when using google as your source, at least), strong positives are unlikely, too. The chance of being rung from the main company reception when being contacted about a job offer is relatively low, it’s more likely that you’ll be rung from someone’s desk, which’ll probably have a unique outside line.

The solution? As always, the solution is over-engineering.

Someone with a small volume of technical skill writes a small java app (and possibly some platform specific (ie. windows mobile) variants) that looks at your ‘missed calls’, ignores all the numbers in your address book and asks you about the numbers. The reply would be something in the range of Private, Unknown, Legitimate and Spam.

  • Private: Things only of interest to me. In theory these should be in your address book anyway.
  • Unknown: Numbers that you don’t recognise and can’t otherwise determine the purpose of, and that you don’t feel like chasing up (ie. ringing back).
  • Legitimate: Numbers that you’d never ring, but rang you at your request/with your permission. ie. ring-backs.
  • Spam: Numbers you know to be malicious.

To answer with either of the final two options you’d need to give a reason/reference/name.

These details are instantly shared with everyone. When querying the service you’d be given the total votes for each category for the given number.

Assuming you require users to have an account to submit, and this account is locked to a uk-mobile-number, the system is relatively hard to abuse.

The technology to do this is available now, the majority of current phones have java and GPRS (the cost would be minimal, the actual amount of data transfered is tiny). As mentioned above, platform-specific versions could have additional features (ie. the windows mobile version adding the votes to the “phone ringing” screen).

If anyone wants to implement this.. be my guest, I’m just too busy right now. If you can think of a way to get any commercial gain from it, good luck to you, at least you’ll spend some of the returns advertising the service, it grows in power as it’s user-count goes up.

113 Comments »

February 16th 2006

Xming + Xlaunch

Xming is a tiny (<13MB with all the optional components), free implementation of an X server for Windows, many times smaller than an alternative, Cygwin, my install of which is currently 344MB.

Until recently, Xming has been hard to use.. prompting someone to write Xlaunch; a wizard-like tool to make Xming work. Previous builds of it have had really stupid bugs (like, for instance, limiting the length of the machine name you were connecting to to 8 characters), but the latest version is better.

It’s bundled with Xming, so all you have to do is download and install Xming, and run Xlaunch.. irritatingly, the 20060209 release didn’t create a shortcut to Xlaunch, only Xming, you have to find and run it manually. It’ll probably be at c:\Program Files\xming\Xlaunch.exe.

Simplest way to get it working: Multiple Windows, next. Start a program, next. Start program: xterm, Using putty. Here you need to fill in the machine you want to connect to, your username and password (unless you have ssh keys setup). Ignore the next screen, just hit next.

The next screen prompts you to ‘Save configuration’ which sensibly (yet irritatingly) doesn’t save the password. This is ideal if you have ssh keys setup properly, but less so if you don’t. It’d be fine if Xlaunch would prompt you for the password when running .xlaunch files, but it doesn’t. So, if you don’t have sshkeys, just click finish.

In theory, you’ll get an xterm, running from the remote machine. If somehting goes wrong, you’ll get nothing (no error, no warning, etc.), and you have to guess what went wrong, good luck.

If it does work, it’s far faster and much more secure than vnc, and it doesn’t kill the remote machine anywhere near as much, and the “multiple windows” feature makes it far more useful.

6 Comments »

February 7th 2006

Outlook 2003 + iCal.

I was trying today to get Outlook 2003 to accept an iCal feed (which turned out to be horribly out-of-date), but never mind. Dropping the file onto Outlook imported the first item in it, importing it using the Import wizard seemed to work, but this still wasn’t quite what I wanted, the idea was to “subscribe” to the calendar feed.

The trick is to use Remote Calendars, worked straight away.

Thanks Alex, and ‘Matt’.

No Comments yet »

February 6th 2006

Windows XP SP2 + DEP

Since DoctorO removed AggressiveOptimize.h’s broken optimisations from his Winamp plugins, I’ve been running Windows fine with NoExecute on “OptOut”, ie. applications can choose not to have DEP applied to them.

Earlier, because I was bored, I decided to switch DEP from OptOut to AlwaysOn. More information on MSDN. This removes the option for applications to opt-out.

So far (ie. in about 10 minutes) the following things have broken:

  • Opera, closed on startup with a DEP error.
  • Firefox, dies on startup: ‘XPCOM:EventReceiver’ attempts to write to memory that it isn’t allowed to.
  • Acrobat Reader, crashes after a few seconds of displaying the page with a DEP error.
  • Internet Explorer 6 has DEP errored once or twice, I’m guessing this is a plugin.

Other things (such as Java6, apache2.2, mysql5, all of the drivers I have installed, etc.) were suprisingly fine.

If I can get a working build of Opera, there’s nothing else on that list that I particularily need.. Acrobat Reader is convenient, but it’ll be nice to have something substantial to complain to them about…

Followup:

  1. Opera’s issue appears to be that it’s packed with ASPack, which just Doesn’t Work, meaning their sales are going to drop off a bit at some point..
  2. Firefox’s issue is, ironically, with the feedback agent. Deleting that fixes the problem.

The other two remain unstable, but IE is unnecessary now I have a non-IE browser working; and Acrobat Reader is now uninstalled.

No Comments yet »