Senin, 20 Februari 2012

Google’s Biggest Challenges Internal, Says CEO


google_logoHeavy is the head that wears the crown, and the biggest threat facing Google is … well, Google itself, actually. That’s according to company co-founder and current CEO Larry Page.
During a rare public appearance last week (at Google’s Zeitgeist conference, in Arizona), Page said that big companies tend to be slow-moving companies, and that there are “basically no companies that have good slow decisions.” Former chief executive Eric E. Schmidt, joining Page on stage at the conference, concurred, saying “the problems at a company at Google’s scale are always internal at some level.”

Jumat, 17 Februari 2012

WOW Camera is Amazing

Nikon COOLPIX P510 Digital Camera

For the outdoor photographer, the COOLPIX P510  puts you where you need to be. Bring your subjects up close and personal, with an incredible zoom range of 24-1,000mm. Spontaneous action is captured sharp and clear with optical VR Image Stabilization and amazingly fast autofocus. Every image and Full HD (1080p) movie dazzles when produced by the advanced 16.1 MP CMOS sensor.

  

Superheadz CLAP Digital Camera

  Slightly larger than a flash drive, the Clap from SuperHeadz is one of the most portable digital cameras in the market. Don’t let the small size fool you though as the Clap takes extremely stylized – “faint, fluent, and soft” – pictures. It’s super easy to operate, and transporting photos is also a breeze – no need for messy cables, just remove the cap and connect it directly to your computer’s usb port (doing so also charges the built-in battery). The Clap  is also well designed, with a clean, minimalist body that comes in a variety of colors. And lastly, it shoots video!

 

Kamis, 16 Februari 2012

Location Targeting For Google Revamps AdWords’

adwords
Google AdWords is a service that enables you to create and run ads for your business that run on Google and its advertising network; you pay only when people click your ads. AdWords also includes location targeting so you can target ads to specific locations, which is great for small businesses that only have customers in certain regions or those that want to target top-performing geographic areas so more clicks translate into actual sales.

Rabu, 01 Februari 2012

How To Create Login/Registration Using Flash with PHP and mySQL

For this Tutorial you will have to have some basic knowledge of PHP and mySQL, hopefully you won't need much though.  It is also assumed that you have a good understanding of Flash Actionscript.   What this tutorial basically does is to show you how to set up a table in a mySQL database, then using PHP (or asp with a few minor changes) manipulate that table and interact with Flash.  The first part of the Tutorial shows you how to create a unique user ID in the database, In this case it will be the persons name.  With a few minor changes however you'll be able to make it a secure password protected user login.  The unique user ID is required because in the next part we'll be saving the position of a couple movie clips and some of their property's.  In this way a user can return to the (your) site at anytime and the movie Clips will be in the exact same position that they left them in. I also added in a place for the user to add in a comment, which is also saved.  With a couple modifications you can turn that into a guest book or anything else you can think of.   This is a much more of a hands on tutorial so it's helpful if you follow the scripts and Fla source included, in addition to viewing the working example at the same time. 
It is recommended that you read over the PHP scripts first. These have all been extensively commented.  In PHP the # symbol is a comment.  Also it may be best to try to follow the code in the included Flash movie along as well.

 Go to setting mySQL database
You must have a mySQL server set up by your host or on your local machine.  I'll be using the most basic shell commands to set up the table. However their are GUI's out there to make this part easier.  Your host may already have one set up for you to use. Make sure to read all the documentation your host has available on using mySQL on their servers - some may be different.  But it should all basically be the same.
Once your database has been set up. Open up your shell account. In most cases you can use Telnet to get to your account.  From the telnet command prompt - type in mysql -p YourDatabaseName Then you will be prompted for a password. Type in your password.  You'll see some text appear after this, then the command prompt changes to read mysql> (then Type) use Database Name.  We will name the table saveMovie for this example. Then type in the following create table syntax exactly as it appears below:

You can then use the describe table command to see what the table looks like.
Here are a couple other mySQL commands you may find useful from the shell.
Change the Column Name:  mysql>alter table saveMovie change Name SomeotherName varchar(30);  (This just changes the name notice the syntax - after change enter the old Column Name followed directly after by the New column name and definition.
Delete one of the Columns: mysql>alter table saveMovie drop Name; This just deletes the column that you had previously named "Name".
Select and view everything in the Table: mysql>Select * from TableName;
Delete the whole table and start over: mysql>drop saveMovie;
Short List of Column types (note if the data that you have entered into one of these definitions is larger then the amount you specified in the table it will be cut off):
varchar (Number) - A variable text type - in my opinion the easiest and most flexible to use when first starting out. Maximum is 60 characters Long.
char (number) - A fixed character type column.
int (number) - A fixed integer type column. Default is 14 if you leave it blank.
text or blob - use either when you want to enter a large amount of text.