11 Nov 2009 @ 11:55 PM 

Finally, Google makes its contribution apart from “www” after its yet another linux distro Google Chrome OS.  This time in language space.  Its name is “Go”.

Its released for Linux and Mac only.  After downloading the source from https://go.googlecode.com/hg, building the packages and set some environment variables (guide @ http://golang.org/doc/install.html), tried a small sample which greets the arg(0) given from console.

The syntax is neither smart nor friendlier at my first sight.  Seems it is a mix of JavaScript, Java and ofcourse, C++.  For each and every compilation you need to specify target machine architecture, 6g – for AMD, 8g – for 386.

See the following sample hello, <user> sample:


package main

import (
"fmt"; // formatted stdin
"flag"; // command line parser
)

func main(){
 flag.Parse();

 fmt.Printf("hello," + flag.Arg(0) + "\n");
}

After the compilation with 8g, invoke the linker 8l and generate the executable (normally 8.out).  Since I did not evaluate this language at some level and did not read its architecture, I could not give any comments of this early stage compiler. However, at my first sight,

GO = Neither C# Nor Ruby

Tags Tags: ,
Categories: Uncategorized
Posted By: udooz
Last Edit: 12 Nov 2009 @ 07 33 AM

EmailPermalinkComments (2)
 12 Aug 2009 @ 8:47 AM 

As a response to growing Bing and Facebook search engines, Google is developing next generation search engine with new architecture. It keeps the features and internals secret.

The development version is available at http://www2.sandbox.google.com/. The only difference I found when I googled “Next generation Google search engine” is search result. Current engine gives 37,300,000 results, and the new one gives 10,100,000 results (could be more accuracy!).

Differences between these has been explained at http://www.betanews.com/article/Googles-next-search-engine-Whats-the-difference/1250012846.

Tags Tags: ,
Categories: General
Posted By: udooz
Last Edit: 12 Aug 2009 @ 08 50 AM

EmailPermalinkComments (0)
\/ More Options ...
Change Theme...
  • Users » 1
  • Posts/Pages » 54
  • Comments » 39
Change Theme...
  • VoidVoid « Default
  • LifeLife
  • EarthEarth
  • WindWind
  • WaterWater
  • FireFire
  • LightLight