Useful Firefox Plugins February 18, 2008
Posted by Mayank in Uncategorized.Tags: firefox plugins
add a comment
This is a list of some of my favorite firefox plugins …
Tab Mix Plus – https://addons.mozilla.org/en-US/firefox/addon/1122
DownloadThemAll! – https://addons.mozilla.org/en-US/firefox/addon/201
Web Developer – https://addons.mozilla.org/en-US/firefox/addon/60
Firebug – https://addons.mozilla.org/en-US/firefox/addon/1843
Greasemonkey – https://addons.mozilla.org/en-US/firefox/addon/748
Live HTTP Headers – http://livehttpheaders.mozdev.org/installation.html
IE Tab – https://addons.mozilla.org/en-US/firefox/addon/1419
WML Browser – https://addons.mozilla.org/en-US/firefox/addon/62
Mouse Gestures – https://addons.mozilla.org/en-US/firefox/addon/39
Google Toolbar – http://toolbar.google.com
Google Notebook – http://www.google.com/notebook/download
Enjoyyy!!!
Howto: Uninstall Powershell 1.0 February 16, 2008
Posted by Mayank in powershell.Tags: powershell, powershell 1.0
15 comments
When you try to install Powershell 2.0, you are prompted to uninstall other versions of Powershells before going ahead with the installation. But neither does powershell appear in Add/Remove programs nor is there an uninstall shortcut in the programs menu.
To uninstall powershell 1.0 run add/remove programs (appwiz.cpl from Win+R) and click the “show updates” checkbox. Powershell will now be shown. It can be removed by clicking on remove
.
Enjoyyy!!!
Maven <classifier> tag February 16, 2008
Posted by Mayank in maven.Tags: maven, testng, testng jdk14, testng jdk15, testng pom.xml
add a comment
Maven has a <classifier> tag which helps in locating artifacts in the repo with a further level of granularity.
Hence, if you were using testng 5.7 for jdk1.5 your pom would look like this:
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>5.7</version>
<classifier>jdk15</classifier>
<scope>test</scope>
</dependency>
This will get the artifact testng-5.7-jdk15.jar from the repo.
Enjoyyy!!!
