fbpx

Author - zalam

How to integrate Instant Articles with your website

Following are the major steps for integrating instant articles Requirements Format an Instant Article How to publish an Instant Article   Requirements: You have Facebook page Admin or Editor Permission on that page Instant Articles are available on iPhones and Android devices. Required software is Facebook for iPhone Version 30.0 and...

Read more...

How To Clear Plesk Mail Queue Via SSH (Postfix)

If you are running a Plesk server and you notice a script which has filled up the server with spam emails awaiting delivery then it is probably a good idea to clear the mailqueue. The mail queue can be cleared using the following: postsuper -d ALL how to flush postfix mail...

Read more...

Raspberry Pi tutorials & links

Raspberry Pi Official Website instructables.com - Raspberry Pi Projects - This website have lots of raspberry projects which you can make. Adafruit - Raspberry Pi Projects How to Use a Breadboard and Build a LED Circuit Controlling DC Motors Using Python With a Raspberry Pi Access Raspberry Pi via VNC (VIRTUAL NETWORK COMPUTING) Client for VNC...

Read more...

No IP service points your dynamic IP to a hostname

If you want to make your computer accessible to the web and don't have a broadband account with a fixed IP address you can use a service called No IP to point a domain name at your blog. Most ISP’s use dynamic IP addresses which are assigned each time you...

Read more...

Find linux command to get all extensions in a directory

Find all extensions in a directory find . -type f | sed -e 's/.*\.//' | sed -e 's/.*\///' | sort -u Find all extensions in a directory with count find . -type f | sed -e 's/.*\.//' | sed -e 's/.*\///' | sort | uniq -c | sort -rn Find all extensions in...

Read more...

MySql slow query file parsers

These are the list of mysql parser which will beauify you log files Online http://nk.gl/slow_queries/analyze Restrictions: 8mb file only and replaces some characters with its own custom variables.

Read more...

Links for testing website security & weak areas for penetration

https://www.kali.org/ Penetration Testing Redefined with the Kali Linux Distribution http://www.irongeek.com/i.php?page=videos/web-application-pen-testing-tutorials-with-mutillidae#determine-server-banners-using-netcat-nikto-and-w3af Web Application Pen-testing Tutorials With Mutillidae http://www.irongeek.com/i.php?page=mutillidae/mutillidae-deliberately-vulnerable-php-owasp-top-10 https://www.joedog.org Siege is an http load testing and benchmarking utility. http://www.cyberciti.biz/tips/linux-security.html http://www.openwall.com/john/ http://www.l0phtcrack.com/  

Read more...

Install WiringPi and controlling raspberrypi gpio pins with php

WiringPi is a GPIO access library written in C for the BCM2835 used in the Raspberry Pi. How to download wiring pi? If you do not have GIT installed, then under any of the Debian releases (e.g. Raspbian), you can install it with: sudo apt-get install git-core To obtain WiringPi using GIT git clone...

Read more...

How to stress test a server

Siege is an http/https regression testing and benchmarking utility. It was designed to let web developers measure the performance of their code under duress, to see how it will stand up to load on the internet. Install seige apt-get install siege Run the following command to seige a server. -t is the...

Read more...