W3Schools.com on Your Hard Drive

W3Schools.com is world's biggest e-learning program for HTML, CSS, XML, Javascript, ASP, PHP and SQL etc.

I am providing this whole website to All members

Including All E-learning programs and lessons.

Download this archive and browse w3schools.com from your hard drive. (Run index.html)



Download Link : http://hotfile.com/dl/45623773/5955cba/w3schools-by-DarkL00k.zip.html


File Size (Archive ) : 7.1 MB

File Size (After Extract ) : 145 MB

Archive Password :- The-DarkL00k

Gmail Dot Trick

What is the Gmail DOT Trick ?
> See the following example

Suppose There is a Gmail account : Example@gmail.com
with password : abcd

You will get logged in to example@gmail.com If you use
email as : E.xample@gmail.com
password : abcd
email as : Ex.ample@gmail.com
password : abcd
email as : Exa.mple@gmail.com
password : abcd
email as : Exam.ple@gmail.com
password : abcd
email as : Examp.le@gmail.com
password : abcd
and so on..

That means gmail does not count periods (.)

So you can use this trick for using the same email for various GPT, PTC, Twitter accounts as they interpret all the above emails as different but gmail considers it the same.


V.A.T.Z

It was a bit tough to explain the GMAIL DOT trick though.

Comment if you like it.

Default to utf8 encoding for MySQL 5.5

Been banging my head several times trying to set the correct configuration for setting utf8 as default encoding for my MySQL database. Searching the web shows old configuration that is not compatible with MySQL 5.5. However, I’ve found one that really works with 5.5.
Simply insert the following line into /etc/my.cnf (or similar) under mysqld section.
1
2
3
[mysqld]
...
character-set-server = utf8
Then restart the mysqld daemon.
My specs: Slackware 14.0 beta (32 bit), MySQL 5.5, kernel 3.2.23 and PHP 5.4.x.
Enjoy and share.