Archive for the ‘Uncategorized’ Category
Some videos from Eurovision 2010 press centre
I did some recording at the Eurovision 2010 press centre at the final night:
List of people twittering about the riots in Thailand
Blog post last updated 18:38 GMT, 19.may 2010
This is a manually updated list of people twittering about (or from) the current uprisings going on in Thailand.
Note: please comment if you miss anybody/anything here.
Twitter accounts updated within the last hour:
tukky_nt – Tweets about it
Twitter accounts updated within the last three hours:
markmackinnon – In Bankok
Twitter accounts updated later
alansoon – In Thailand
Hashtags
#redtweet
#bangkok
#thailand
Other resources:
n/a
Simple Apache trick to increase Google Speed Test score
Google Speed Test will (unless set up) complain if you have not set up images to take use of browser caching. To get the browser to start caching static content you can add the following to your Apache vhost file:
ExpiresActive On
ExpiresByType image/gif "access plus 365 days"
ExpiresByType image/jpeg "access plus 365 days"
ExpiresByType image/png "access plus 365 days"
ExpiresByType image/bmp "access plus 365 days"
ExpiresByType image/png "access plus 365 days"
ExpiresByType text/css "access plus 365 days"
ExpiresByType text/x-js "access plus 365 days"
ExpiresByType application/x-javascript "access plus 365 days"
List of people twittering about the Volcano eruption on Iceland
Blog post last updated 17:00 GMT, 19.april 2010
This is a manually updated list of people twittering about the eruption from the Eyjafjallajökull volcano on Iceland.
Note: please comment if you miss anybody/anything here.
Twitter accounts updated within the last hour:
hjortur Tweets about it from Iceland
claudiorosmino A journalist tweeting about it
darenbbc Another journalist tweeting about it
gislio Tweets about it from Iceland
KLM KLM
ElaineKirk Tweets about it, also have some nice pictures
Icelandair Icelandair, Airplane company based on Iceland
FMCNL Tweets about plane news
AirlineIndustry Tweets about the airplane industry
travelworld101 – Travel news
guardiannews British newspaper
TerrenceYoung “In the zone”
calaisrescue “Rescues” people on the continent
NewsZombie Newsfeed, mentions it often
jmsardo Tweets about it
AshAlerts Tweets about it
hjortur Tweets about it
stupidcatstweet (re)tweets about it
klmfan Tweets about KLM
chriswotton Tweets about it
Twitter accounts updated within the last three hours:
flyersview Airplane news
foreignoffice Tweets about it
NealKarlinsky Journalist currently on Iceland
CNNbrk CNN
eurocontrol EU air safety organization
ExamineDisaster General disaster tweeting
salvor Tweets about it from Iceland
from_iceland Tweets about it from Iceland
SHSig Tweets about it from Iceland
UnitedAirlines United Airlines (US)
Twitter accounts updated later
lizmale Tweets about it
michaeltnoel A stuck traveller
BritishAirways British Airways
Hashtags
#iceland
#ashtag
#ashcloud
#stranded
#putmeup
#getmehom
Other resources:
Webcams showing the volcano (Please note that the weather around the volcano is very variating.
http://eldgos.mila.i…-thorolfsfelli/ – Can be slow, i reccomend the mirrors.
http://www.vgtv.no/?id=29824&category=1 – Norwegian mirror #1.
http://www.vgtv.no/?id=29823&category=1 – Norwegian mirror #2.
Webcam pointed at Hekla (another volcano)
Arrow keys + Page up/down not working in Firefox
So, my cat figured out it was time to sleep on my laptop, he also managed to put Firefix into Caret browsing mode.
If you want to get out of it again (and then get page up/down + arrow keys working again), simply press F7
Want Spotify invites?
I have started getting a big bunch of Spotify invites, and i have decicded to give them all out!
So if you want an invite, you can get one here: http://h3x.no/spotify.php
(New invites will be added when needed, still got a small bunch left)
Btw: Got any problems, then please comment about it in this entry
Facepalm @ Google
Finally a good use for the color picker in Google images
http://images.google.no/images?q=Facepalm&gbv=2&hl=no&sa=G&imgcolor=black
Hint: “org.apache.jasper.JasperException: java.lang.NumberFormatException”
Getting the exception “org.apache.jasper.JasperException: java.lang.NumberFormatException” when developing a JavaEE-app?
If you are basing yourself on data from a query, make shure that you are doing a SELECT against the table name and NOT the individual fields!
A hint for the “Object foo is not a known entity type” errors from Glassfish
As a JavaEE-codemonkey you have perhaps noticed this error:
java.lang.IllegalArgumentException: Object: Ting@193c227 is not a known entity type.
This will occur when you have redeployed an app f.ex through Eclipse to Glassfish, the Glassfish server has not quite understood that it`s time to update its version, so what you need to do then is to simply restart the server (or domain).
How to fix that stupid backspace in Vim on SLES
Sometimes the backspace button can be a real pain on SLES-systems, but the fix is simple!
Add this to ~/.vimrc:
set backspace=indent,eol,start