Close img bracket to convers from html to xml in Eclipse editor (Regular expression)
Find : <img(([\d]|[\s]|[\w]|\=|\"|\.)*)>
Replace with : <img$1/>
Modifies img source to quick change data source in Eclipse editor (Regular expression)
Find : <img(.*)src="([\w]*[\\.][\w]*)
Replace with : <img$1src="/img/newsletter/$2
* Check if module is installed. Errors mean missing module.
$> perl -MModule::Name -e 1
* See documentation of the module if installed.
* Open CPAN shell:
* To reconfigure the shell if needed.
* Install an available module.
cpan> install Module::Name
* Force install if test fails.
cpan> force install Module::Name
* To manual install perl modules.
$> perl Makefile.PL
$> make
$> make test
$> make install
If there are some missing libraries (ex. libmysqlclient.so )
export LD_LIBRARY_PATH=/usr/local/mysql/lib/
A simple script for Greasmonkey
window.addEventListener(
'load',
function() { init() },
true
);