Monthly Archives: April 2013
Python print input data
Basic data printing with python. Data input:
1 2 3 |
name = raw_input("What is your name?") quest = raw_input("What is your quest?") color = raw_input("What is your favorite color?") |
Print input:
1 2 |
print "Ah, so your name is %s, your quest is %s, " \ "and your favorite color is %s." % (name, quest, color) |
Twitter tweet button for magento
To create a Twitter tweet button on every productpage in magento you just have to add this code in your… Continue reading »
Facebook share button for magento
To create a Facebook share button on every productpage in magento you just have to add this code in your… Continue reading »
Change wordpress website domain
If you have access to the site via FTP, then this method will help you quickly get a site back… Continue reading »
Encrypt E-mail address
A small layer of protection you can use on your website against spam is to encrypt your e-mail addresses. This… Continue reading »