Pages

Friday, March 30, 2012

Lets GO!

GO is an open source programming language created by Google that started in 2007 by 
Robert Griesemer, Rob Pike, and Ken Thompson.

Last March 28, 2012, Google announced the release of the very first version of the language,
and it was named GO Version 1 or GO 1. The language supports many flat forms like Linux,
FreeBSD, Mac OS X and Windows (Yes, Windows). Go Lang is also supported by Google App Engine SDK which was also released together with GO 1.

The GO Syntax is more likely in C language. Curly Braces {} in every block of codes.

Here is a "Hello World" sample

package main

import "fmt"

func main() {
        fmt.Println("Hello, World")
}


Everything about GO is in golang.org, visit this now and start studying the new language.

Monday, March 5, 2012

Java and C Developers Needed

If you are experienced Java and C programmer or developer, and in need of a job or wanted to get a new employer. Feel Free to send your information and resume to productions.twotone@gmail.com, with the subject JAVA and C programmer or Developer and include basic information of yours in the message. (Philippine residents only)

NAME
AGE
ADDRESS
EMAIL ADD

Thanks. 

Friday, January 20, 2012

Goodbye, Arfa Karim Randhawa

The programming prodigy died few days ago due to epileptic seizures. Arfa Karim Randhawa became the worlds youngest Microsoft Certified Professional at the age of 9. There were reports that Bill Gates offered the child to  pay for her treatment in US, but due to her medical conditions, Randhawa cannot travel abroad.

In an interview with "Digital Life" she shared her philosophy as a young child. She told:

“If you want to do something big in your life, you must remember that shyness is only the mind.
If you think shy, you act shy. If you think confident you act confident. Therefore never let shyness conquer your mind.”


May you Rest In Peace, thanks for inspiring us.

Monday, January 9, 2012

ODBC, A Database Connection

ODBC stands for Open Database Connectivity. ODBC is a method to connect and modify a database, allowing developers to manipulate a system’s database regardless of DBMS (Database Management System) managing the data. SQL Access Group created this connection that was first released in 1992.

In order to use ODBC, an ODBC database driver is needed to be installed (most database system have their own ODBC drivers). For this connection to operate properly the application and the database management system must be compatible and supports ODBC in able to send commands that the DBMS also understands.