Archive for the ‘Apple’ Category

New iPhone featured: Google Brings Location To The Mobile Web

Thursday, July 16th, 2009

iPhone-location-based-safariIf you are iPhone user, you will happy with this featured, the latest iPhone has been added some Location to the mobile web, This featured has been added by Google. This featured avaliable on iPhone 3.0, this is some details info about this featured

If you have the new iPhone 3.0 software and go to Google’s homepage in Safari, you’ll notice a new message below the search box that reads, “New! Try My Location to find restaurants, shops and bars near you!” If you click on the My Location link, the iPhone will pop open a dialogue asking if it’s okay for Safari to use the device’s location services to locate you. If you opt-in, you’ll see a new blue dot below the search box with your location next to it. Do a search, and it will return local results.

Enjoy your iPhone and make a good life ;) Need more information about this? You can check it on TechCrunch

Popularity: 1%

Download Safari 4 Beta

Friday, February 27th, 2009

safari-4-beta

For you Webkit browser lover, Apple has been released Beta version they next major browser Apple Safari, you can download Safari 4 beta on this page. They have new tagline for this browser, Browsing made beautiful. And smart.

This is some cool features on Safari 4

Top Sites

safari-topsites

Thanks to Top Sites, you can enjoy a stunning, at-a-glance preview of your favorite websites without lifting a finger. Safari 4 Beta tracks the sites you browse and ranks your favorites, presenting up to 24 thumbnails on a single page. You can even customize the display by pinning a favorite site to a specific location in the grid. That locks it into position, so you know just where to find it every time you open Top Sites.

Wonder which sites have changed since your last visit? Sites with a star in the upper-right corner have new content. A single click opens the page and updates its thumbnail. Whenever you want to return to your ever-evolving Top Sites page, just click the new Top Sites button in the bookmarks bar. (more…)

Popularity: 2%

How To Install iPhoto ‘09 Stand Alone

Friday, January 30th, 2009

iphoto-09

If you iPhoto fans and need new version of iPhoto ‘09 and didn’t need other iLife ‘09 product, you can simply try this procedure.

The first time is download iPhoto ‘09 stand alone version

  • http://rapidshare.com/files/190932052/drawings.zip.001
  • http://rapidshare.com/files/190952511/drawings.zip.002
  • http://rapidshare.com/files/190955164/drawings.zip.003

And extract it, after successfully extract simple double click iPhoto.mpkg. and maybe you will got this error

installer: Error - You are attempting an unsupported installation. If you wish to install an individual
application, please use the iLife installer and select the Custom button.

To fix this problem, just open your Terminal and write this command

touch /tmp/com.apple.mpkg.iLife

And Try to Run the installer again. And you iPhoto ‘09 Stand Alone version will work just perfect ;)

Popularity: 3%

Download Google Quick Search for Mac

Sunday, January 18th, 2009
Google Quick Search

Google Quick Search

Have you know, that Google have been release tiny application for Mac? This application is look like Quicksilver. This application has develop by the guys how has develop Quicksilver.You can download Google Quick Search on this page.

Here some list that you will got On Google Quick Search and what still missing on it.

Features

  1. It works as a location bar AND a search box – It’ll autocomplete URLs and you can use TAB to search any website using Site Search.
  2. The tab key has special functionality beyond just site search. It is equivalent to “search in this context”: you’ll see that the results of a contextual search include related items, contents, and actions.
  3. Calculation, Weather, and Definition one boxes will show up periodically. More are on the way. What else would you expect to see?
  4. If you enable it, spotlight results will show up. Usually these are relegated to the “More” section at the bottom of the window, but once you use these items, they’ll be learned and become much faster to access.

The basics

  • Search the web (Type “britney spears”)
  • Start applications (Type “itunes”)
  • Open websites (Type “wikipedia.com”)
  • Search for contacts in Address Book (Type “Bob”)
  • Find files on your computer (Type the filename)
  • Find music (Type the name of a song or artist in your iTunes library)
  • Definitions and more: “Define Word”, “Weather 94043″, “5 + 5″

What’s missing

  • QSB does not yet search Gmail
  • QSB does not yet search Firefox

Advanced features

  • Type (TAB) to restrict your search to the selected results:
    • “wikipedia.com (TAB) toy” will return matches from wikipedia
  • Type (TAB) to see actions for the selected results:
    • “CONTACTNAME (TAB) email” will show the “Email” action

So, For all of you Mac user, you should download google quick seach this application and replace you Spotlight ;) Because Google Quick Search integrates with Spotlight, so it’s not reinventing the wheel, either. Where it really covers new ground, however, is its integration with Google search.

Popularity: 2%

How To Fix: Can’t connect to local MySQL server through socket /tmp/mysql.sock

Friday, November 21st, 2008

If you found trouble on your Mac OS X Leopard or other Mac OS X Can’t connect to local MySQL server through socket /tmp/mysql.sock. I got the solutions how to fix it.

When connecting to a MySQL server located on the local system, the mysql client connects thorugh a local file called a socket instead of connecting to the localhost loopback address 127.0.0.1. For the mysql client, the default location of this socket file is /tmp/mysql.sock. However, for a variety of reasons, many MySQL installations place this socket file somewhere else like /var/lib/mysql/mysql.sock.

While it is possible to make this work by specifying the socket file directly in the mysql client command

mysql –socket=/var/lib/mysql/mysql.sock …

If you must do so this way (because you don’t have permissions to the file in the solution below), you could create an alias in your shell to make this work (like alias mysql=”mysql –socket=/var/lib/mysql/mysql.sock” depending on your shell).

To make your life easier, you can make a simple change to the MySQL configuration file /etc/my.cnf that will permanently set the socket file used by the mysql client. After making a backup copy of /etc/my.cnf, open it in your favorite editor. The file is divided into sections such as

[mysqld]
datadir=/usr/local/mysql/data
socket=/var/lib/mysql/mysql.sock

[mysql.server]
user=mysql
basedir=/usr/local/mysql

If there is not currently a section called [client], add one at the bottom of the file and copy the socket= line under the [mysqld] section such as:

[client]
socket=/var/lib/mysql/mysql.sock

If there is already a [client] section in the my.cnf file, add or edit the socket line as appropriate. You won’t need to restart your server or any other processes. Subsequent uses of the mysql client will use the proper socket file. And have a nice day ;)

Popularity: 2%