how to speed up social network badge loading

Reading Time: < 1 minute

I have had some problem with my Tripit badge on the left of the screen. For some strange reason it wouldn’t load on my Google Chrome. It would load if I would open this page with Firefox or IE though. The weirdest thing is that after loading it from Firefox or IE, I could then load it with Chrome. 

So I decided I would take a different approach and cache the badge somewhere.

Here is how to do it:

First get the URL of the javascript file of your badge.

Here is the code of my badge:

New ADM3 FM module

Reading Time: < 1 minuteThis summer I finished a partial rewrite of the FM (Fault Management) module of the NetAct OSS ADM3 Troubleshooting class.
I have been compiling lots of troubleshooting guides and troubleshooting techniques into this course and applied it to all the FM processes of a regional cluster.

It has now been tried several times and it seems people are liking it.
If you want to follow this course, contact your local NSN solution manager or go to the academy website if you’re an NSN internal and enroll for the course OS9033 (customers) or OS9034 (internals)

TeleFinland HTC Magic Data Settings

Reading Time: < 1 minute Easy as a breeze:
APN Name: TeleFinland
APN: internet
MMS protocol: Wap 2.0
MCC: 244
MNC: 91
APN type: default

All the rest, don’t touch.

Nexus one power button not working

Reading Time: < 1 minuteMy Nexus one has been a good friend for the past year but now I am running into problems with the power button.
I had 2 options:
– open heart surgery, order the replacement unit and change it myself.
– flash the phone in order to remap the power button to the trackball.

I chose the second option as it was available to me right now.
I followed this guide:
https://www.cyanogenmod.com/devices/nexus-one

Reset the default drupal theme with SQL

Reading Time: < 1 minuteSometimes a drupal theme can be broken and it can be needed to reset the default theme so the site can be accessed again in order to fix the problem.

As a rule of thumb I always try to use the theme "Cube" for the administrive part of drupal. that makes things a lot easier and if you breeak the theme you can at least still use the admin part.

Here is anyhow how to reset the theme using SQL:

Simply execute the three following commands:

UPDATE system SET status=1 WHERE name = 'garland';

Bloom’s taxonomy, action verbs for objectives setting

Reading Time: < 1 minute

Bloom is categorizing action verbs in 6 groups:

Knowledge: acquire, attend, choose, collect, complete, copy, define, describe, detect, differentiate, distinguish, duplicate, find, identify, imitate, indicate, isolate, label, list, mark, match, name, order, outline, place, recall, recognize, reproduce, select, state, underline

Export putty settings

Reading Time: < 1 minuteIt looks like your putty sessions are stored in the registry.

 
Start up the registry editor: regedit.exe (on Windows 7, hit the windows key and type regedit.exe)
 
Browse to HKEY_CURRENT_USER\Software\SimonTatham
 
Right click on "Sessions", choose export. Give a name. Email the file.
 
On the other computer, get the file, save it, right click on it, click on merge. Done

bypass authentication for a specific URL with squid and webmin

Reading Time: 2 minutesIf you need to setup some webmin rule for bypassing authentication for a specific URL, it’s VERY easy to setup.

This is something that can be needed if you have a windows server behind a proxy and that server needs direct access to the internet in order to be activated:

Activation fails when you try to activate Windows 2008 over the Internet… 

Trainer Assessor

Reading Time: 3 minutes

Today I got an interesting call from my boss. I am going to become an assessor for other trainers at Nokia Siemens Networks. This means that I will have to assess the training capabilities of my peers.
Since I have been a respectable trainer for the past 5 years I have indeed accumulated a good experience.
I feel very proud that my efforts are rewarded with this opportunity.

How to find which SQL is executed by a process

Reading Time: < 1 minute

If you are looking for the last SQL query ran by a specific process, try this: 

 
select substr(sa.sql_text,1,1000) txt
from v$process p, v$session s, v$sqlarea sa
where p.addr=s.paddr
and s.username is not null
and s.sql_address=sa.address(+)
and s.sql_hash_value=sa.hash_value(+)
and spid=&SPID;