Archive for February 23rd, 2010

Apple COO Tim Cook Speaks at Goldman Sachs Conference

News| No Comments »

Apple Chief Operating Officer Tim Cook today participated in a Q&A session at the Goldman Sachs Technology & Internet Conference, and while he did not offer any major revelations, some of his comments off…

Apple Confirms: iPad Uses PowerVR SGX Graphics Hardware

News| No Comments »

While this shouldn’t be much of a surprise to most, Apple has confirmed that the iPad uses the same family of graphics chip as the iPhone and iPod Touch. According to reports, Apple’s latest iPad SDK Beta 3 documentation…

Apple Releases iPhone SDK 3.2 Beta 3 for iPad [Updatedx3]

News| No Comments »

Apple today released an update to its iPhone SDK 3.2 for developers looking to create applications for the company’s forthcoming iPad tablet device. The new update is the third beta version of the SDK, and there is no word yet on changes inc…

Apple Releases iPhone SDK 3.2 Beta 3 for iPad

News| No Comments »

Apple today released an update to its iPhone SDK 3.2 for developers looking to create applications for the company’s forthcoming iPad tablet device. The new update is the third beta version of the SDK, and there is no word yet on changes inc…

AT&T Tops 3G Wireless Performance Study

News| No Comments »

PCWorld reports on the results of its recent 13-city performance tests of wireless carriers in the United States, and Apple’s iPhone partner AT&T came out well ahead of the pack in both upload and download speeds while also fairing well in reliabilit…

Custom Hangman by Collins Research Inc. Loses Noose – Gains Plank

News| No Comments »

Collins Research Inc. today announces Custom Hangman for iPhone and iPod touch. The Custom Hangman game is truly habit-forming that allows players to select a category of their interest from which the app will generate an animated hangman game with a fun pirate-themed background. Several word lists are already pre-loaded into the app so players can challenge themselves from subjects ranging from SAT vocabulary words to Twilight terms.

Gartner: iPhone Sales Double in 2009 as Apple Claims Third Place in Smartphone Sales

News| No Comments »

Earlier this month, research firm IDC released sales figures for 2009 showing Apple holding 14.4% of the smartphone market for the year on nearly 82% sales growth over 2008, with the company grabbing third place among smartphone vendors behind Nokia …

Create a Thunderbird-like mail archiving feature in Mail

News| No Comments »

In my recent Thunderbird 3 usage, I’ve come to rely on search almost exclusively. I leave messages in my inbox until they are dealt with, and when they are dealt with, I just hit the ‘A’ key to archive them. Now I can do that with Mail.app, too.

When you hit ‘A’ in Thunderbird, it archives each message in a folder based on the date of the message, e.g. INBOX/Archives/2010 for messages from this year. The following AppleScript also does this in Mail. (The script will also mark archived messages as read — Thunderbird’s ‘A’ key does not do that.)

Copy and paste the following into AppleScript Editor:

on run
tell application "Mail"
set selectedMessages to selection
repeat with selectedMessage in selectedMessages
set msgDate to date sent of selectedMessage
set msgYear to...

Add to digg
Add to Reddit
Add to Slashdot
Email this Article
Add to StumbleUpon


Change the carrier name in the iPhone Simulator

News| No Comments »

For you iPhone/iPad/iPod touch developers out there, did you know you can change the name of the carrier that appears in the iPhone Simulator? The default carrier name is Carrier, but you can change this to a custom name of your choice.

In Terminal.app, run this command, replacing your_user with your user’s short username:

defaults write "/Users/your_user/Library/Application Support/iPhone Simulator/User/Library/Preferences/com.apple.springboard" SBFakeCarrier "AT&T"

[robg adds: I haven't tested this one.]

Add to digg
Add to Reddit
Add to Slashdot
Email this Article
Add to StumbleUpon


10.6 Server: How to get NFS disk serving working properly

News| No Comments »

Snow Leopard only hintYou may be surprised to learn that if you follow the detailed 136 page instructions for setting up an NFS disk server that Apple provides for the OS X server machines, it won’t actually work. The problem is the firewall. Unlike the non-server OS, which has an application firewall, the Server OS uses IPFW, which is port-based not application-based.

This means every service that takes inbound connections has to have fixed port range assignments so you can tell IPFW which port to open. NFS required the RPC deamon, and by default, RPC takes whatever ports are free at the moment and does not keep them fixed. You need to fix these to specific ports by hand because the GUI won’t do it.

This can be confusing to diagnose because if you start NFS with the firewall down and then put it up, you find the server continues to work for about 30 minutes, bec…

Add to digg
Add to Reddit
Add to Slashdot
Email this Article
Add to StumbleUpon