Public Beta of Yosemite is available now!

All those who signed up for the public beta can log in to the beta site and download OS X Yosemite now. The download is around 5.07 GB and seems to be newer than the earlier developer preview.

For people interested in checking out and participating in the public beta of Mac OS X Yosemite, you can sign up for it on the OS X Beta Program Site.

Only the first one million sign ups will be accepted. So, hurry up if interested!

EzeeCube – Great add-on for photos and videos

EzeeCube seems to be a must have for most homes today.

We all have tons of digital photos and videos from our phones that really need to be organised and sorted out. This stackable, and therefore extendable gadget does it all.

No need for any Internet connection. It’s all locally done, right in the comfort of your home network at blazing speeds unlike the relatively slow Internet speeds.

Check out the IndieGoGo page where this gizmo has already been over-subscribed.

There is also a very nice video and a writeup from EnGadget which is worth looking into.

I hope to get my hands on one of these sometime soon…

iTunes U 2.0 with custom classroom support released

Apple released iTunes U 2.0 with support for creating and sharing courses a few hours ago. Although it is too early to figure out the actual impact and overall usage and adoption given the high price of Apple devices, it does look promising.

To create a course, you need to have an iPad and have to register with an Institute name and profile, which, can be edited later. I guess details will emerge as and when people start using it.

A brief description from the application is as follows:

  • The new iTunes U makes it simple for students participating in private courses to pose questions on the course or any post or assignment
  • Other students in the class can jump into the discussion and ask more questions or provide answers
  • Teachers and students can keep up with the conversation when they receive push notifications as the discussion progresses

Create courses on iPad

  • Teachers can now create and update their courses using the iTunes U app on their iPad—getting started is fast, simple, and completely free
  • Provide every student a course outline, write posts, distribute assignments, upload class materials, easily track participating students, and much more
  • Take advantage of the built in camera on iPad to easily capture photos or videos and upload them for course assignments
  • Create materials using Pages, Numbers, and Keynote—or other apps from the App Store—and add them to your course by using “Open in iTunes U” from within each app
  • Teachers affiliated with qualified institutions have the option to publish their courses to the iTunes U Catalog—making them available to everyone for free

 

iOS 7.1.2 and Mavericks 10.9.4 Released – A preliminary look!

Apple released iOS 7.1.2 and Mavericks 10.9.4 a few hours ago. Once again, at least the iOS update appears to be untried and untested. There is also an update for Apple TV, 6.2, although I did not see anything new or different in the brief look I had after the update.

Those attempting to update iOS using iTunes might be out of luck as the update might get stuck after a while. The OTA update seems to work fine on a few devices that I tried.

Continue reading

WWDC 2014 – iOS 8, OS X 10.10 – Apple opens up iOS a bit more!

Well…Not a very exciting event from Apple, but, there are some points that could stretch Apple’s lead in the mobile and desktop market to some extent.

  1. Apple has opened out more APIs on the iOS side allowing app functionality, officially, that was previously available only on jailbroken devices. Given the wide developer base, we could see some exciting apps coming up in the near future. iOS 8 Enterprise features have also been enhanced and could spur wider enterprise adoption.
  2. The introduction of a new programming language, Swift, which could accelerate the development on iOS and OS X platforms far more than ever before.
  3. The integration and extension of the functionality of the 10+ year old Nokia PC Suite into Yosemite is a welcome addition. Most people using iOS devices would probably understand that this could be quite useful on occasion. This page has details.

A word of caution for early adopters. Do not attempt to try iOS 8 just as yet on your primary phone. Most of the current applications will not work as expected and a vast majority would simply crash, including the stock apps. Yosemite, although usable, is quite laggy and slow, which is to be expected from a developer preview. The same applies to Xcode 6 beta.

Continue reading

Setting up a new iPhone/iPad? A brief How-To…

Back in 2010, I had listed out some of the apps I was using and recommended the same. A lot has evolved since. It’s not just the apps, its also the devices that have changed giving rise to better and more powerful apps. I will try to cover the basic setup options for a new iDevice running iOS 7. iOS is currently at version 7.1.1 and, ideally, one should upgrade to this version, if not already on it.

I will focus on the iPhone here since that is the most commonly used iDevice. Most of the following also applies to the iPad. You can find tutorials for the iDevices on Apple’s site as well as YouTube, if needed.

Continue reading

External Drive Issues after installing OS X Mavericks?

HDD

When this first happened to one of my external backup drives, I was at a loss. The drive would not show up in Finder, but, I could see it in the “Disk Utility”. Attempting to repair the disk from Disk Utility, resulted in the message above.

Naturally, I Googled around and found that this was a very common issue and quite a few people had posted similar issues on Apple and other forums. Mostly people put it down to WD hard drives and some had even written to WD about the same.

After some experimenting, I found the solution to be surprisingly simple and pointed to yet another bug in Mavericks.

I tried this on different external drives of different capacities by simply pulling out the USB without ejecting the drive. Sure enough, I got the same issue and message after running disk utility on almost all occasions.

The solution, for me, was quite simple. Let the “Disk Utility” try and repair the drive and come up with the message shown above. Then remove the drive and plug it back in and it will work. Just run repair on it again to make sure that all is as expected.

Keep in mind that it might take around 2-10 minutes for the drive to show up in “Disk Utility” for the first time and it will not auto-mount and show up in Finder. Keep the “Disk Utility” running. After that, it’s simple. Run repair. Ignore the error. Re-plug the drive and run repair again.

I have tried this on 3 WD and 2 Seagate drives with HFS and ExFAT, all work. Hopefully it would work for some others who have similar issues.

OS X Mavericks Release and Update – The Buggiest Ever?

Well, now that OS X Mavericks has a .1 update, with the concentration being on Apple Mail and Graphics, it would be safe to say that OS X Mavericks, like iOS 7, is possibly the worst release of OS X ever. The completely untested releases, not to mention the non-existent UX.

Mavericks, true to it’s name, is one. Almost nothing works as expected. Although Apple acknowledged issues in Apple Mail, it was limited to Gmail related accounts and mentions nothing else. It still has a clutter of draft/versions and sync issues. The rendering of standard HTML email still does not work.

The Contacts still retain the bloat and duplication issues of earlier. All iCloud applications require manual run to sync them across devices. The iCloud Keychain does not work for Exchange accounts…try changing an Exchange account password after the policy expires it. The more iDevices you have on the iCloud Keychain, the worse it becomes.

Continue reading

Extract files from ISO images from a command line script on Mac OS X

I recently ran into a situation where I needed to extract files from ISO images in bulk. Unlike Windows where one has so many popular and free applications for this task, I just made up a multi-line process for the same on OS X.

I used the hdiutil to mount and unmount the ISO file and a simple cp to extract files as follows…

for m in *.iso
do
	if [ "$m" = "*.iso" ]; then
		break
	else
		echo -e "\nFound $m"
		dd=`hdiutil attach "$m" | cut -f3`
		echo -e "\nFound ${m%%.*} - $dd"
		cp -a "$dd"/ .
		if [ $? -ne 0 ]; then
			exit 10
		else
			hdiutil detach "$dd"
			rm -rf "$m"
		fi
	fi
done

Just in case…this is a bash script snippet. The actual script is longer and does some more work, but, this should give a fair idea as to how one can automate the extraction of files from ISO images.