Google Create New Programming Language : GO
17
Nov0
Nov0
Google Engineers create new programming language “Go”. In first look it is look like C++ or Java. We will see, how it will be.
More details :
http://www.golang.me/google-launches-its-own-programming-language-go/
Turn Off Autocomplete Form in Internet Explorer
11
Nov1
Nov1
A webmastersucks user ask me “The only problem is that IE will store the MD5 ] password when it “saves” the password. Have you been able to overcome that?”. Solution is really simple, just we can use autocomplete attribute in form tag. It will be close autocomplete in form. It will better in password protected sites.
<form name="form" method="post" autocomplete="off">....</form>
Grouping Date with Datetime in MySQL
4
Nov0
Nov0
This is very basic and very useful command for mysql. I need user registration date by date. Firstly, i calculate with PHP, after i think it must be a basic way. I found this mysql command. I hope you’ll enjoy.
SELECT DATE_FORMAT(registerdate, '%Y-%m-%d') AS dd, COUNT(id) as TotalUser FROM UserTable GROUP BY dd;

