mark on May 8th, 2012

Using irfanview tool you can save a png image with transparent color in background.

Share
mark on May 8th, 2012

In my home banking there is a virtual assistant (Star) with whom you can talk to get information on services offered by the bank.

English translation:

me> hello beautiful girl
Star> fantastic!
me> What are you doing tonight?
Star> I can not go out with you, but thanks for the invitation.
Share
mark on May 8th, 2012

If you have some problems using CronoForm in your Joomla template (eg. the validation of form fields doesn’t work and there are problems with some template animations) probably there are conflicts between javascript libraries (jQuery and Mootools).

One possible solution is insert following code in the form tab “Load JS”:

jQuery.noConflict();
Share
mark on April 15th, 2012

Joomla is one of the world’s most popular open source CMS (content management system). With millions of websites running on Joomla, the software is used by individuals, small & medium-sized businesses, and large organizations worldwide to easily create & build a variety of websites & web-enabled applications.
Find out more about it at http://www.joomla.org/.

How install it:

create new mysql database and relative user

fetch last jommla version at http://www.joomla.org/download.html
mv jommla.zip /web_server_path/
unzip jommla.zip

surf at http://127.0.0.1/web_server_path
and follow instructions provided by installer

change directory permission as show in
System Information->Directory Permissions (admin panel)
Share
mark on April 4th, 2012

Dolibarr ERP & CRM is a modern web software to manage your activity (contacts, invoices, orders, stocks, agenda, etc…), see http://www.dolibarr.org/ for more details.

How install it:

create new mysql database and relative user

fetch http://www.dolibarr.org/files/dolibarr.tgz
tar -xzf dolibarr.tgz
mv dolibarr-3.1.1 dolibarr
chmod -R 755 dolibarr
touch dolibarr/htdocs/conf/conf.php
chown www dolibarr/htdocs/conf/conf.php
mkdir dolibarr/documents
chown www dolibarr/documents
mv dolibarr /web_server_path/

surf at http://127.0.0.1/dolibarr/htdocs/install/
and follow instructions provided by installer

rm -R dolibarr/htdocs/install/
chown root dolibarr/htdocs/conf/conf.php
Share
mark on March 13th, 2012

This graph shows how network packets traverses linux netfilter and relative tables. It can be useful in code developing or to create  iptables/ebtables rules.

Share
mark on March 12th, 2012

In a nutshell, TrackBack was designed to provide a method of notification between websites (more information).

Unfortunately, this mechanism is often a source of spam. You can disable it in two step.

(a) Disable trackbacks/pingbacks for new post/page:

Go in Setting->Discussion and uncheck “ ”

(b) Disable trackbacks/pingbacks for old post/page:

On machine where database lives (assuming mysql):

mysql
mysql> use database_name;
mysql> UPDATE wp_posts SET ping_status = 'closed';
mysql> bye

That all!

Share
mark on February 27th, 2012

Geany is a text editor using the GTK2 toolkit with basic features of an integrated development environment. It was developed to provide a small and fast IDE, … see http://www.geany.org/ for more detail

Geany-plugins provides a lot of plugins, see http://plugins.geany.org/ for more detail.

The FreeBSD port geany-plugins has been update to 0.21.

You can install geany-plugins by package or port:

  • Package:
fetch http://datasked.com/pub/unix/freebsd/ports/geany-plugins-0.21.tbz
pkg_add geany-plugins-0.21.tbz

 

  • Port

see patch attached to http://www.freebsd.org/cgi/query-pr.cgi?pr=165494

Share
mark on February 18th, 2012
pkg_add -r gksu

create launcher in gnome like this:
gksu "mount_smbfs -N //user@samsung-982afca/share /mnt/xpshare/"

create /root/.nsmbrc like this (use upper case!!!):
[SAMSUNG-982AFCA:MARK:SHARE]
addr=192.168.56.1
password=user_password
Share
mark on February 13th, 2012
create new VM (1Gb ram, 1 CPU, 60Mb video ram, 100Gb hd in dynamic vdi)
install freebsd from ISO
fix networking
enable ssh
fix rc.conf
pkg_add -r screen
cvs co script
fix .cshrc for users
pkg_add -r cvsup-without-gui
update ports tree (cvsup -g -L 1 ports-supfile)
pkg_add -r xorg
pkg_add -r gnome2
fetch http://datasked.com/pub/script/vbox
chmod +x vbox
./vbox
pkg_add -r gnome2-fifth-toe gnome2-power-tools gnome2-office gnome2-hacker-tools
Share