Things You Didnt Know You Could Do With Google

Things you can do with GoogleCalculate complex equations, track shipments, build a Web site, and more--all on Google. Plus, how not to move a palm tree.

Every time I turn around, Googles come up with something new, cool, or innovative. Its no wonder it has Microsoft on the run.

Nifty Google Features

Calculate This: You can use Google Calculator to crunch numbers and figure out conversions. Try entering 12*12 and see what happens; you can also run more complex equations, like G*(6e24 kg)/(4000 miles)^2). Google Calculator handles conversions of all types, such as 3 ounces in tablespoons, 16 dollars in euros, or 19999GB to MB.

Find That Number: You can track FedEx, UPS, and U.S. Postal Service shipments just by sticking the tracking number into Googles search field; do the same with zip and area codes, vehicle IDs, patent numbers, airplane registration numbers, and even UPC codes.

Make Me Special: Google has special search sites just for you. Theres one for Firefox users, another for Linux users, and a spot for those of you who cant get enough of Microsoft.

Dig This: This is one flight Im glad I missed. [Thanks to MCraig.] The other video had me going until the passengers started jumping out of the plane.

Dig This, Too: So you need to move a palm tree? Watch this safety video first. Step one: Hire a professional.

Useful Google Services

Sights on Google: My buddy Leo F. sent a note asking if I wanted to create a quick Web page, or something fairly complex, with just novice skills. "Google Sites is fun to play with," Leo said, "and even makes a useful Web page, too. Of course, its free."

Ongoing Experiments: If you like poking around with Web tools, you need to explore Google Labs. For instance, Experimental Search gives you five new ways to search, each aimed at tightening and focusing on specific results.

BTW, Goog411 is a Google Labs graduate and a great service. Read about how its replaced traditional 411 in a blog I posted last year.

Alert Me! Google sends me an e-mail every time it sees a new occurrence of "steve bass PC World," "steve bass PC Annoyances," or keywords about my various hobbies and interests. If you havent tried Google Alerts, youre missing out on a terrific service.

Hello, Google? If youre using Firefox and find something cool on the Web, you can use Google Send to Phone to pass the info along to a U.S.-based cell phone. Its a nifty service thats really useful for, say, sending a map to a lost buddy. Check the FAQ for details.

Dig This: You may not be old enough to remember Soap, the LOL TV spoof from the seventies. So heres a short video excerpt of "Chuck and Bob Mindreading."

Even More Fun With Google

You probably think theres not much more to say about Google. Nope, theres still lots.

Start by downloading the Google Cheat Sheet, a two-page PDF with lots of valuable Google shortcuts, search and query examples, and services.

Even better is 55 Ways to Have Fun with Google, a free e-book with Google trivia, games, and nonsense, enough to kill an afternoon (I did). The more I explored, the better I liked this 228-page book. For instance, I wasted time with The Image Quiz, which has you guess the Google search term for a bunch of images. I also picked up a nifty Google magic trick, learned how to find world records, read IRC chat logs people didnt know were public, and browsed to some very funny Google parody sites, such as UnderGoos, the underwear search site, and Cthuugle, the Lovecraft search engine.

Dig This: I always get a kick out of the way the folks at Google occasionally transform the logo to match up with the day. Here are some Google logo rejects.

Dig This, Too: Whats more interesting than a hole in the ground? Not much, youll think, after you take a gander at these amazing pictures.

Source- http://www.pcworld.com/article/id,143229-c,google/article.html
Read More..

Google App Engine for PHP with PhpStorm


Today’s guest post comes from Maarten Balliauw, Technical Evangelist at JetBrains, the vendor of smart developer tools such as IntelliJ IDEA, PyCharm, PhpStorm, Android Studio and many more.



At JetBrains we are building tools that aim to enhance developers’ productivity by automating routine tasks and helping you concentrate on coding.



Our IDE for PHP, PhpStorm, provides seamless integration with Google App Engine for PHP — allowing you to locally develop, debug and deploy your PHP applications on Google App Engine. When testing your application locally, we also support full emulation of App Engine services through the App Engine Development server.



The following video shows how to get started with Google App Engine for PHP in PhpStorm. We also have a comprehensive tutorial which covers Google App Engine with PhpStorm in detail.









When creating Google App Engine applications in PHP using PhpStorm, chances are that you’ll also be using Google Cloud SQL to store data. For these next steps, we will have assumed you have created a Cloud SQL instance from the Google Cloud Console.



PhpStorm, as well as IntelliJ IDEA and PyCharm, provides database management tools (see the right-hand side of the IDE or hit Ctrl+Alt+A (Cmd+Alt+A on Mac) and search for “Database”). You can use these built-in tools to create new tables, run arbitrary SQL commands and insert, update and delete data.



Opening the database pane, you can create a new connection or Data Source. You’ll have to specify the JDBC database driver to be used to connect to our database. Since Google Cloud SQL supports native MySQL connections, we can use the standard MySQL connector and enter connection details.




Connecting to a Google Cloud SQL database using PhpStorm database tools

The JDBC driver to use is com.mysql.jdbc.Driver, the database URL will be jdbc:mysql://:3306/ where cloudsql_ip_address is the IP address of our Google Cloud SQL instance, and database_name is the name of the specific database on that instance to which you want to connect.



As for database credentials, you can create a root user password through the Google Cloud Console or manually create a new user through PhpStorm using the following SQL statement:





CREATE USER user_here@% IDENTIFIED BY password_here;
GRANT ALL PRIVILEGES ON *.* TO user_here@% WITH GRANT OPTION;



You can now make use of these new credentials to connect to Google Cloud SQL and do things like create tables.






Creating a table in Google Cloud SQL using PhpStorm database tools

Now, from our PHP code, you can easily create a new connection to our Google Cloud SQL instance using PDO:




Connecting to a Google Cloud SQL database using PDO

Give it a try (a trial version is available for PhpStorm) and let us know your thoughts through the comments below.



-Contributed by Maarten Balliauw, Technical Evangelist, JetBrains
Read More..

App Engine SDK 1 3 5 Released With New Task Queue Python Precompilation and Blob Features

Today we are happy to announce the 1.3.5 release of the App Engine SDK for both Python and Java developers.


Due to popular demand, we have increased the throughput of the Task Queue API, from 50 reqs/sec per app to 50 reqs/sec per queue. You can also now specify the amount of storage available to the taskqueue in your app, for those with very large queues with many millions of tasks. Stay tuned for even more Task Queue scalability improvements in the future.


Additionally, in this release we’ve also added support for precompilation of Python source files to match the same feature we launched for Java last year. For Python, you can now use precompilation to speed up application loading time and to reduce CPU usage for new app instances. You can enable precompilation by including the following lines in your app.yaml file:


derived_file_type:

- python_precompiled

This will start offline precompilation of Python modules used by your app when you deploy your application. Currently precompliation is off by default for Python applications, but it will be enabled by default in some future release. (Java precompilation has been enabled by default since the release of 1.3.1.)


To give you a taste of what this feature is like, we tested this on a modified version of Rietveld (which included a copy of Django 1.0.4 in the app directory, and which did not use the datastore in its base url). The latency and CPU usage results for the initial load of the application, after uploading a new version of the app and requesting the homepage, were:



Before precompilation enabled:

Test 1: 1450ms 1757cpu_ms

Test 2: 1298ms 1523cpu_ms

Test 3: 1539ms 1841cpu_ms

After precompilation enabled:

Test 1: 805ms 669cpu_ms

Test 2: 861ms 702cpu_ms

Test 3: 921ms 803cpu_ms

Of course, any individual app’s performance will vary, so we recommend that you experiment with the setting for your application. Please submit your feedback and results to the support group!


In addition to Task Queues and Python precompilation, we have made a few changes to the Blobstore in 1.3.5 We have added file-like interfaces for reading Blobs. In Python, this is supported through the BlobReader class. In Java, we have implemented the BlobstoreInputStream class, which gives an InputStream view of the blobs stored in Blobstore.


More information on this release can be found by reading the release notes for Python and Java.



Read More..

RIM Faces The World Today With Blackberry 10 Launch

RIM, the company that makes the Blackberry phone and Playbook devices will today formally launch Blackberry Z10 and X10 to the entire world.
The company had lost a lot of money in the past and still looking for a way to get back into the game; a game that Apple and Google stole from them a while back.
RIM has been struggling with this fierce competition that iPhone and Samsung is pulling, the range of smartphones offered by RIM isnt good enough to compete thereby forcing the company to completely redesign, remake and rebuild their devices from the scratch in other to retake the market they long lost.
The outcome of this new strategy is the birth of Blackberry 10

The blackberry 10 program started months back, taking all the energy, commitment and focus of the design team is expected to fulfill the dreams of its makers i.e, to put RIM back on her feet.
Whether this new device can do that will be seen from today onward when it will be officially available for sale and use and in later days to come.

As for design, flow, usability and stability during the testing stages of this device, reports are that it was superb and more than capable to rival both the iPhone 5 and Galaxy S3 smartphones.

Today, RIM will be in the spotlight and they should be really prepared if the BB10 doesnt meet the expectation of consumers.

On a quick note on specs, the BB 10 has a new operating system different from other previous Blackberry devices, a 1800mAh battery, 1.5GHz processor, 2GB RAM, 8mp camera, Bluetooth 4.0, NFC and a 355ppi display.

Personally, I believe that this device would perform well, meet expectations and fulfill the desires and dreams of its creators.
If you think otherwise, share your thoughts and of course, in the coming days we shall know where RIM stands and the weight Blackberry 10 will pull







Read More..

Alcatel Announces the Idol X with a 2GHz Octa Core Processor for just 330

gsmarena_001


Alcatel, has announced a brand new flagship phone today. This one is the Idol X+, and it has some pretty impressive specs. This one was announced in China, and more than likely it’ll remain in China. So if you’re interested in this device, you’ll have to import it. The Idol X+ features a 2GHz octa-core MediaTek MT6592 processor, with 2GB of RAM, along with a 2,500mAh battery inside. It is featuring the same 5-inch 1080p IPS display and 13MP camera as it’s predecessor. Which isn’t bad, but I would have liked to see more improvements there.


Additionally, Alcatel has also announced the Boom band along with the phone. It’s more or less a Bluetooth sports wristband that is available in multiple colors. It does allow you to track your performance with fitness applications, there’s also a proximity alarm in case your phone gets stolen or you’re separated from it. It will also work with Bluetooth apps that take advantage of wearable technology.


The Idol X+ from Alcatel is already a pretty beefy phone, spec-wise. What’s going to make it fly off the shelves. Alcatel is selling it for about $330 unlocked and free from any carrier subscriptions. Which would make it a more worthy buy than the Nexus 5, in some aspects. As we stated earlier, this was announced in China, and normally Alcatel doesn’t make their devices available in the US. Although that could change, and that would definitely make us happy. The Idol X+ and Bom band should be available around January 15th, and if you’re interested in pre-ordering it, you’ll have to head over to jd.com and get that taken care of.


For a phone with a 2GHz octa-core processor, 2GB of RAM and a 5-inch 1080p display sitting at $330, it’s kind of hard to pass that up. Since it would normally be about twice that price unlocked. I’m really hoping Alcatel brings this to the States, at least in the unlocked variety. How about the rest of you?


The post Alcatel Announces the Idol X+, with a 2GHz Octa-Core Processor for just $330 appeared first on AndroidHeadlines.com |.






via AndroidHeadlines.com | http://www.androidheadlines.com/2013/12/alcatel-announces-idol-x-2ghz-octa-core-processor-just-330.html
Read More..

Blog Archive

Powered by Blogger.