Posted: Fri 22nd Jan 2010@09:25
Some error in the Password Manger add-on for Firefox means that everytime the browser opens, it gives the annoying message that the add-on cannot be registered with Chrome.
The solution is to edit one of the files in the add-on, to support this higher version of Firefox.
I have done this fix, and have provided the file to download here, as although there was an abundance of instructions on how to fix it, no-one seems to have provided the file anywhere!
Hope this helps someone out.
Actions:
Trackbacks Disabled,
Permalink,
Posted: Fri 4th Dec 2009@17:16
I recently had the opportunity to test out an iPhone 3G, I wanted to see if I could get it to perform the same functions as my current phone - Nokia N95:
| APN | Username | Password |
|---|---|---|
| 3ireland.ie | none | none |
Actions:
Trackbacks Disabled,
Permalink,
Posted: Tue 24th Nov 2009@15:24
I have noticed whilst reading numerous academic papers, blogs and articles etc., that the Authors tend towards using a the female term to refer to people of an unknown gender, whereas I always understood the default to be the male pronoun.
for example:
We would like to take this opportunity to acknowledge the work of several pioneers, who have worked on making it possible for an average citizen to educate Herself about the laws of the land:
source
I have often wondered to myself, why this is, I wondered whether it was that no-one would get offended at using the female term, but some might get offended if the female term was not represented. Maybe it isn't that at all, perhaps it's just lazyness, as the correct grammer would be to use both e.g.
We would like to take this opportunity to acknowledge the work of several pioneers, who have worked on making it possible for an average citizen to educate Himself or Herself about the laws of the land:
Suspended hyphenation may be accetable, Him- or Herself, but the nearest I could find to an appropriate shortened version would be to use Themselves (but not Themself), but I get the impression that is only acceptable in British English (En-UK?).
I think I will try to use the full terminology. Does anyone know and English expert who can tell me the correct usage? :)
Actions:
Trackbacks Disabled,
Permalink,
Posted: Tue 10th Nov 2009@10:30
I've been meaning to write this post for a while, It's more for my own memory than anything else, and I'm sure my millions of readers will be very un-interested to read it, but after a recent install of a new operating system on my Uni machine (Windows Vista to Windows 7), I thought I would list the tools I use on a daily basis to organise my working/online/offline life.
Actions:
Trackbacks Disabled,
Permalink,
Posted: Tue 15th Sep 2009@13:08
Hello my dear,
Good day and compliments of the seasons, I am Mrs. Mendula Fett I am from Alderan. I lost my husband during the rebel attacked in 2006 before his death, he had an account with a bank here in Tatooine, where he made a deposit of 10.5 Millions Credits. This money was for the purchase of death-star vending machines and development of another factory, unfortunately he did not meet his target before his untimely death.
Why I contacted you, due to the agreement he had with the bank during deposit, I ve been denied total access to the money, the bank Manager told me precisely that the money was deposited in a suspense fixed account with a clause attached to it for onward transfer into a imperial account. That the bank will follow the agreement written and signed by both (the bank and my husband). I was advised to look for an imperial account where the money can be transferred before I can have access to it.
Since security here cannot be guaranteed besides, i've lost my husband, I hereby ask you to do me a favour by standing as my late husband imperial business partner and the beneficiary of the money to enable the bank effect the transfer into your account.
I have plans to invest this money in continuation with the investment vision of my late husband, but not in this place again rather on your planet. I have the vision of going into real estate and industrial production, please if you are willing to assist me and my only son JaJa, indicate your interest in replying soonest.
The bank has given me requirements I should forward to them:
1. Your full name
2. Species Identifier
3. Galactic Postal Address
4. Occupation
5. Age
If you agree on this, I ll give you 15% of the total share when transferred, then 5% will be given to you if you made any expense on the cause of the transfer. Waiting to hearing from you, please once I hear from
you I'll send you my pictures, also the deposit certificate the bank gave to my late husband. Please call me +22508970496
Vader bless you and your family,
Yours Truly,
Mrs. Mendula Fett
Actions:
Trackbacks Disabled,
Permalink,
Posted: Tue 1st Sep 2009@14:29
I recently had to submit a paper in IEEE conference format, that required an IEEE copyright notice and publisher ID, the problem I had was that by default, the functionality is removed from any 'conference' class papers, so in order to make this work using the conference class (\documentclass[10pt, conference]{IEEEtran}) it is neccessary to remove these 'locks' using the following command:
\IEEEoverridecommandlockouts
(I put this just after the \documentclass part)
It is then possible to specify the publication id and copy right notice (make sure it is before the \maketitle command )as follows:
\IEEEpubid{\makebox[\columnwidth]{\hfill 9781-4244-3941-6/09/\$25.00~\copyright~2009 IEEE}
\hspace{\columnsep}\makebox[\columnwidth]{Published by the IEEE Computer Society}}
Note: if you leave the 'Published by the IEEE Compueter Society' part blank, then the second column will fill out nicely (and mean more space for writing!).
It is also necessary to use the \IEEEpubidadjcol command somewhere in your second column text, which makes the relevant adjustments for the text.
Actions:
Trackbacks Disabled,
Permalink,
Posted: Mon 24th Aug 2009@16:19
My research looks like it will involve using mobile phones to collect sensor data, and I have recently been involved in a project that uses a piece of software for the Nokia N95, called Campaignr. This is a nice little application that will log data from all of the various sensors on the N95, and upload them to a server, however, there are a number of issues that prevent a researcher like me from downloading it and running it easily.
So, I've worked around these problems as follows:
Problem 1:
The installation .SIS file, is not signed for all phones, and therefore cannot be installed.
I guess this was something that didn't matter too much before the software was released, as it was being used for research by the developers, and they only signed the .SIS package for a small set of phones.
So, the workaround - Download the non-signed version from the site, get a hold of your phones IEMI number (*#06#) and then follow the instructions on the Symbian Open Signed website. This will give you an application signed for your phone, and will allow access to all of the resources required.
Problem 2:
There is no way of over-riding the hard coded username and password, from the xml campaignr settings file. This means that there is no way to upload data directly to SensorBase.org, without editing the campaignr source code.
I didn't want to delve into the C++ code, edit the lines and recompile, mostly because I haven't written in C++.
So, I wrote a proxy script, that sits on my server, receives the Slog data from the campaignr app, strips out the username and password fields, and replaces them with the correct data.
<?php
$ch = curl_init("http://sensorbase.org/upload.php");
// strip slashes to datastring if the local server adds them
$datastring = $_REQUEST['data_string'];
if(get_magic_quotes_gpc()){
$datastring = stripslashes($datastring);
}
// set post
curl_setopt($ch, CURLOPT_POST, 1);
// dont show headers
curl_setopt($ch, CURLOPT_HEADER, 0);
// get the output as a var not echo
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// set the useragent to that of the calling user agent :)
curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
// add the post variables
curl_setopt($ch, CURLOPT_POSTFIELDS,
array(
"email"=>"EMAIL_ADDRESS",
"password"=>"PASSWORD",
"project_id"=>$_REQUEST['project_id'],
"type"=>$_REQUEST['type'],
"data_string"=>$datastring,
"table_name"=>$_REQUEST['table_name']
));
// execute
$data = curl_exec($ch);
curl_close($ch);
// echo the output from SensorBase.org
echo $data;
?>
Actions:
Trackbacks Disabled,
Permalink,