Design guru Philippe Starck’s interview from Engadget – Must watch for all gadget savvies’

If you care about design, then you know the name Philippe Starck. As an industrial designer, Starck has been responsible for some of the most groundbreaking -- and divisive -- products ever created. He's been both vilified and deified, and while there are solid arguments for both stances, there is no denying that he is a force to be reckoned with. Fresh off of his design of LaCie's new Mobile and Desktop drives, Engadget's Senior Editor Thomas Ricker had a chance to sit down with the man himself in Paris and hear his thoughts on life, love, and good design. What we learn will shock you, amaze you, warm your heart... and convince you that Starck is a serious Apple fanboy. The full video is after the break. Don't be a fool -- watch it now!

Philippe Starck interview
Download The Engadget Show in HD (720p M4V)
Download The Engadget Show formatted for iPod / iPhone

 

via Engadget

Comparison of all Latest Antivirus products

Detection rates of various anti-virus software available current market!!

 

Proactive on-demand detection capabilities

 

Interestingly Microsoft’s free software flared pretty well in the tests though it was in its betas!!!

Google's new operating system Chrome OS available for download with source code!!

Google unveiled its Chrome OS operating system during a press event at the company's headquarters, and it's pretty much exactly what was expected it to be: a streamlined Linux kernel booting straight into the Chrome web browser. The code is available starting today.
Download and installation instructions here

SQL SERVER – Introduction to JOINs – Basic of JOINs

INNER JOIN

This join returns rows when there is at least one match in both the tables.

OUTER JOIN

There are three different Outer Join methods.

LEFT OUTER JOIN
This join returns all the rows from the left table in conjunction with the matching rows from the right table. If there are no columns matching in the right table, it returns NULL values.

RIGHT OUTER JOIN
This join returns all the rows from the right table in conjunction with the matching rows from the left table. If there are no columns matching in the left table, it returns NULL values.

FULL OUTER JOIN
This join combines left outer join and right after join. It returns row from either table when the conditions are met and returns null value when there is no match.

CROSS JOIN

This join is a Cartesian join that does not necessitate any condition to join. The resultset contains records that are multiplication of record number from both the tables.

Additional Notes related to JOIN:

The following are three classic examples to display where Outer Join is useful. You will notice several instances where developers write query as given below.

SELECT t1.*
FROM Table1 t1
WHERE t1.ID NOT IN (SELECT t2.ID FROM Table2 t2)
GO

The query demonstrated above can be easily replaced by Outer Join. Indeed, replacing it by Outer Join is the best practice. The query that gives same result as above is displayed here using Outer Join and WHERE clause in join.

/* LEFT JOIN - WHERE NULL */
SELECT t1.*,t2.*
FROM Table1 t1
LEFT JOIN Table2 t2 ON t1.ID = t2.ID
WHERE t2.ID IS NULL

The above example can also be created using Right Outer Join.

NOT INNER JOIN
Remember, the term Not Inner Join does not exist in database terminology. However, when full Outer Join is used along with WHERE condition, as explained in the above two examples, it will give you exclusive result to Inner Join. This join will give all the results that were not present in Inner Join.

 

An example script of the above all from source

USE AdventureWorks
GO
CREATE TABLE table1
(ID INT, Value VARCHAR(10))
INSERT INTO Table1 (ID, Value)
SELECT 1,'First'
UNION ALL
SELECT 2,'Second'
UNION ALL
SELECT 3,'Third'
UNION ALL
SELECT 4,'Fourth'
UNION ALL
SELECT 5,'Fifth'
GO
CREATE TABLE table2
(ID INT, Value VARCHAR(10))
INSERT INTO Table2 (ID, Value)
SELECT 1,'First'
UNION ALL
SELECT 2,'Second'
UNION ALL
SELECT 3,'Third'
UNION ALL
SELECT 6,'Sixth'
UNION ALL
SELECT 7,'Seventh'
UNION ALL
SELECT 8,'Eighth'
GO
SELECT *
FROM Table1
SELECT *
FROM Table2
GO
USE AdventureWorks
GO
/* INNER JOIN */
SELECT t1.*,t2.*
FROM Table1 t1
INNER JOIN Table2 t2 ON t1.ID = t2.ID
GO
/* LEFT JOIN */
SELECT t1.*,t2.*
FROM Table1 t1
LEFT JOIN Table2 t2 ON t1.ID = t2.ID
GO
/* RIGHT JOIN */
SELECT t1.*,t2.*
FROM Table1 t1
RIGHT JOIN Table2 t2 ON t1.ID = t2.ID
GO
/* OUTER JOIN */
SELECT t1.*,t2.*
FROM Table1 t1
FULL OUTER JOIN Table2 t2 ON t1.ID = t2.ID
GO
/* LEFT JOIN - WHERE NULL */
SELECT t1.*,t2.*
FROM Table1 t1
LEFT JOIN Table2 t2 ON t1.ID = t2.ID
WHERE t2.ID IS NULL
GO
/* RIGHT JOIN - WHERE NULL */
SELECT t1.*,t2.*
FROM Table1 t1
RIGHT JOIN Table2 t2 ON t1.ID = t2.ID
WHERE t1.ID IS NULL
GO
/* OUTER JOIN - WHERE NULL */
SELECT t1.*,t2.*
FROM Table1 t1
FULL OUTER JOIN Table2 t2 ON t1.ID = t2.ID
WHERE t1.ID IS NULL OR t2.ID IS NULL
GO
/* CROSS JOIN */
SELECT t1.*,t2.*
FROM Table1 t1
CROSS JOIN Table2 t2
GO
DROP TABLE table1
DROP TABLE table2
GO

Microsoft coding parts of Linux!! Yes..Linux!!

You may have already heard, but the unthinkable has happened. That’s right, Microsoft, the self-proclaimed enemy of Linux and free software, has announced that they will be submitting some 20,000 lines of code to the Linux kernel. Come again? Yes, Microsoft wants to get its code into the Linux kernel. You read that right!

It is important to note that this code has not yet been included into the official Linux kernel. The code has also not yet been thoroughly scrutinized by the wider community to see what the code actually consists of. Is it all code, or does it rely on binary blobs? Will the quality of the code make the grade, or will the community be expected to clean it up and maintain it?

When approached by Linux Magazine as to whether he has even looked at the code, Linus Torvalds (the father of Linux) replied:

“I haven’t. Mainly because I’m not personally all that interested in driver code (it doesn’t affect anything else), especially when I wouldn’t use it myself.

So for things like that, I just trust the maintainers. I tend to look at code when bugs happen, or when it crosses multiple subsystems, or when it’s one of the core subsystems that I’m actively involved in (ie things like VM, core device resource handling, basic kernel code etc).

I’ll likely look at it when the code is actually submitted to me by the maintainers (Greg [Kroah-Hartman], in this case), just out of morbid curiosity.”

So why the patch? Well, it contains three drivers which will enhance the performance of Linux when virtualized as a guest under Microsoft’s virtualization product, Hyper-V. Ahh, now the truth starts to emerge. The purpose of the code has nothing to do with being generous, but rather it is to ensure that Linux will run well under their own virtualization technology. Microsoft has well realized that the world is moving towards free software and that users are implementing Linux in their infrastructure.

Even though the motivation is a purely selfish one, is there anything wrong with that? Microsoft certainly plans to “outsmart open source” and this move should be seen in that light, but at the end of the day they are doing the unthinkable - contributing to free software - and that’s a win.

source

Top 10 inventions of millennium

Ten of the most significant objects in science, engineering, technology and medicine were selected for the vote.

Information on all the items is found at the Science Museum in London.

The first three positions were filled by medical inventions or discoveries, the X-ray machine being followed by the discoveries of penicillin and the DNA double helix structure.

X-rays provided the first possibility of looking inside someone's body without cutting them open - a massive medical advance.

THE RESULTS

  • 1st place - X-ray machines
  • 2nd place - Penicillin
  • 3rd place - DNA double helix
  • 4th place - Apollo 10 capsule
  • 5th place - V2 Rocket Engine
  • 6th place - Stephenson's Rocket
  • 7th place - Pilot ACE Computer
  • 8th place - Steam Engine
  • 9th place - Model T Ford
  • 10th place - Electric Telegraph

Culture Secretary Ben Bradshaw said:

"The public's choice of the X-ray machine as the winner is testament to our insatiable curiosity to find out how things work."

Google introducing Google Maps Navigation!!

Finally Google answers all of our million requests and updates Google Maps with Navigation support. Which means now one can get turn by turn navigation directions for free!

This feature is introduced with the new Android 2.0(available on DROID) and of course is still in Beta

World’s strongest boy!!

Many of us might end up kicking ourselves after watching this video for being lazy to workout..

The following video is of a 5-year old Giuliano Stroe (from Italy) – OK! Now you might ask What is so special about him? Good question, then please read along..

He performed the fastest ever 10m hand walk with a weight ball between his legs  – setting the world record for the Strongest Boy In The World

 

Young Giuliano has proved once again it that Nothing is impossible!!

Its better late than never..I know that some where deep down the heart you are thinking about re-scheduling that workout routine you have been postponing…

Windows 7 launch webcast

Microsoft Launches Beta 2 of Visual Studio 2010

Just before a day to Windows 7 launch, Microsoft has released the Beta 2 flavor of the up coming Visual studio 2010 IDE..

image

VS 2010 Product Line SKU Simplifications

With VS 2010 we are simplifying the product lineup and pricing options of Visual Studio, as well as adding new benefits for MSDN subscribers.  With VS 2010 we will now ship a simpler set of SKU options:

  • Visual Studio Express: Free Express SKUs for Web, VB, C#, and C++
  • Visual Studio 2010 Professional with MSDN: Professional development tools as you are used to today with the addition of source control integration, bug tracking, build automation, and more. It also includes 50 hours/month of Azure cloud computing.
  • Visual Studio 2010 Premium with MSDN: Premium has everything in Professional plus advanced development tools (including richer profiling and debugging, code coverage, code analysis and testing prioritization), advanced database support, UI testing, and more.  Rather than buying multiple “Team” SKUs like you would with VS 2008, you can now get this combination of features in one box with VS 2010. It also includes 100 hours/month of Azure cloud computing.
  • Visual Studio 2010 Ultimate with MSDN: Ultimate has everything in Premium plus additional advanced features for developers, testers, and architects including features like Intellitrace (formerly Historical Debugging), the new architecture tools (UML, discovery), test lab management, etc.  It also includes 250 hours/month of Azure cloud computing.

 

- Scott Guthrie, corporate vice president of the .NET Developer Platform

You can download ISO from here..

All versions..

HP ‘touches’ the world in a new way

As expected the upgrades to the HP touchsmart line up to support upcoming Windows 7 has arrived just in time!!

Updates to the Much Familiar HP Pavilion TX 2Z is a welcome note!!

Also are the newly added HP TouchSmart 300 and 600 – at 20- and 23-inches respectively – and the business-centric HP TouchSmart 9100, a 23-inch model targeted at the hospitality and retail markets.


image

The TouchSmart tx2 uses AMD’s Turion X2 dual-core 2.20GHz CPU with 4GB of RAM (8GB supported), ATI Radeon HD 3200  graphics and a 320GB 7,200rpm hard-drive.  Gigabit ethernet, WiFi b/g, HMDI and a 6-cell battery are standard, together with a DVD burner, and it comes with various touch-control apps for entertainment and media playback.  Pricing will start at $799.99.

Read Full Story

Bluetooth Headsets for unwired music experience (A2DP)

I have collected a list of  some latest Bluetooth headsets available today that provide not only just unwired music experience but also are productive with a built-in microphone to answer calls on move!!

  1. Motorola Rokr S9 HD
  2. Sony DR-BT160IK
  3. Sony Ericsson HBH-IS800
  4. Altec Lansing BackBeat 906
  5. Plantronics Voyager 855
Model AVRCP
Bluetooth Transmitter(in box) Special Features Call Quality Price Range/Available
Motorola Rokr S9 HD Yes Motorola D650 iPod adapter to connect to old generation iPods/iTouch SRS WOW effect enables superior HD audio experience. Average $71.99 - $103.24
Sony DR-BT160IK Yes iPod dongle included in box In ear buds fit well, reasonable noise cancellation Good $180
Sony Ericsson HBH-IS800 ?? Not Available Sleekest stereo Bluetooth available today with superior audio quality Average $200
Altec Lansing BackBeat 906 Yes a bluetooth transmitter that plugs-in thru 3.5 mm jack, makes any legacy device with 3.5 mm jack a stereo bluetooth   Excellent $70.99 - $79.99
Plantronics Voyager 855 Yes No Detachable ear hook, allows to plug in another ear plug to have stereo bluetooth. Excellent $31.49 - $84.99

    Following are the video reviews of the respective models from CNET:

      Motorola Rokr S9 HD
      Sony DR-BT160IK
      Sony Ericsson HBH-IS800

      Altec Lansing BackBeat 906

      Plantronics Voyager 855

       

      Though each model has got its own pros & cons..Any of the above ones are worth a try!!

      As with every ear’s size every person’s preferred headphones also vary, isn’t it!!

      Share your experiences with any of the above models or suggest any better ones that you have tried  for we music lovers…

      (I have not tried any of the above head sets personally…)

      Technorati Tags: ,

      GIMP 2.8 to come in single window! GASP!!

      The GIMP is one of those applications that people either seem to love or hate. While it's always been a powerful and capable alternative to big commercial apps like Photoshop, GIMP's multiple floating window interface has been hard for some users to adapt to.
      Good news to those of you who love the program but just couldn't adapt to the UI: version 2.8 will feature a selectable single window mode. As you can see in the mock-up above, it's a much more Photoshop-like experience. Hardcore GIMP fans, don't despair. If you've been convinced that multi-window mode is a superior way to work, you won't have to change.
      GIMP developers have also been looking at ways of better handling multiple images in the editor. Tabs, of course, were added in Photoshop CS4. Don't expect to see them in GIMP 2.8, however. Peter Sikking offers three reasons in his blogs post that they have decided not to use tabs, instead opting for a movable thumbnail tray (image after the break).

      UI customization has always been central to the GIMP. In keeping with that, Sikking anticipates that users will be able to place the strip on the top, bottom, left, or right.
      Another idea being considered are "Polaroids" - floating, independent windows that can be used as references while working on an image in the editor. Apart from full images, you'll also be able to select a region and copy it to its own Polaroid - useful for doing detail work.

      What do you think about the new concepts for GIMP 2.8? Do you think the addition of a single window mode will attract new users? Share your take in the comments!

      source