Pauvam.com (Heil open source)

Thunderbird for x86_64 architecture

On December 27, 2010, in linux, linux articles, linux tips, by mahesh
0


To know more about Thunderbird wiki, Thunderbird home

I searched for 64 bit version of Thunderbird, finally found it in http://ftp.mozilla.org/pub/mozilla.org/thunderbird/nightly/latest-comm-central/

This is just the nighty build and alpha release.


The actual latest stable release for Linux, Mac and windows is available in

http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/latest/

(This link has Thunderbird for Linux i686)


Source code of latest Thunderbird is available in http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/latest/source/

Share
Tagged with:
 

Selenium suppress authentication popups

On November 11, 2010, in linux, by mahesh
0


Some web page requires authentication, they pop up a authentication window. During automation this pop up is a big problem, they can be avoided in firefox in just 3 steps.

Step 1: (Login to the site)

From Selenium or any automation script, call the site like http://username:password@site.com

eg., in selenium

selenium.open(“http://username:password@site.com");

Step 2: (Suppress the popup in firefox profile)

The above method will pop up an other ok button, to suppress that from firefox on your default profile open about:config and right click->New->Integer  use the preferred name as network.http.phishy-userpass-lengthnew and value as 255.

Step 3: (Use the firefox profile in Selenium)

java -jar selenium-server.jar -interactive -firefoxProfileTemplate “%USERPROFILE%\Application Data\Mozilla\Firefox\Profiles\k2h1lu68.default”

The file “k2h1lu68.default” could vary in your case.

Share
 

Introduction to Memory Leak & Valgrind

On July 12, 2010, in Uncategorized, by admin
2


valggrind
Memory Leak :
A memory leak or leakage in “C Programming” is nothing but a programrammer has dynamically allocated a memory for its use and during the exit of the program, programmer unable/failed to release memory he has acquired.
Is this a hazard ?
(more…)

Share
Tagged with: