Google Announce Chromium OS Project

Today Google released Chromium OS, the open source project behind Google Chrome OS. Google Chrome OS is an operating system that is intended for people who spend most of their time on the web. It aims to provide a computing experience that is fast, simple and secure. The Chromium OS project as you’ll see it today is comprised of the code that has been developed thus far, our early experiments with the user interface, and detailed design docs for many parts that are under active development.

Fore more information and announcement:

http://chrome.blogspot.com/2009/11/announcing-chromium-os-open-source.html
http://googletesting.blogspot.com/2009/11/testing-chrome-os.html

Google Create New Programming Language : GO

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

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

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;
Oyun