Skip to main content

Mac OSX Yosemite : Good, bad and Ugly


Mac OSX Yosemite : Good, bad and Ugly

I can’t start my review with some statement like “yet another operating system”. Because it is still the same with some differences. I will start with my journey so far with Yosemite.

Sometime back when I saw the preview images, it was like WOW. Are they transforming the Mac into iPhone/iPad? Wait, does it look familiar? Is it somewhat like Material Design of Android? Never mind, what we need is a clean and powerful OS. Mac is already clean and Yosemite seemed much cleaner. Fingers-crossed and waited for official launch.

Finally my AppStore said, here is a powerful OS for you, that too for FREE. Lets talk about this FREE tag later. Just remind me if I missed it. It took some time to install (almost an hour after downloading. Pre- and post-installation….).

Warning: What follows is strictly my opinion.

When I looked at the lock screen for my first boot, I literally shouted WOW. It seems like I’m on an iPad. With no delay I logged into my PC and that’s it. Now my expression changed to OH! What was that? Did I just installed the first generation OS? The colour of text and icons, that dark look, its all like oldest and latest combination.

Dock: It is the best thing happened to the Mac users. But now it has lost its charm. I updated iTunes ahead of Mac and the icon suggested that they are trying to take Mac away from Steve. Also the trash. I feel like throwing it into trash. How beautiful the trash used to be!


Dock

That’s it to hate. New look seems refreshing, but the texture of fonts and icons needs an appointment with a stylist. Its time for the good ones.

Spotlight: They surely thrown some spotlight on spotlight, instead of throwing it at corner. It has got everything which you didn’t even asked for. Every result will have a preview and you can play music/movie in background. Wait a minute. If you can’t find where the sound is coming from, just open the spotlight. Its the culprit. Don't forget to look at auto-filling (suggestions) while searching.
Spotlight


Notification Center: It used to push your desktop away, but now it its creeps over it. Along with notifications, there is one more tab “today”, which does what your dashboard does, but in collective manner. Lets see what all can we get from it.
notification

Finder: You won’t find the usual + button. It got replaced with the full screen button. For me, + never behaved properly and I always use Spectacle. Nothing much to say, but it need some styling (colour and texture).

Volume: It doesn’t make those pop sounds while changing levels, which is handy when you are at work.

It seems Yosemite is bit faster than its predecessors. Also it can be integrated with i-devices, which I don’t have.

All these made me say Yosemite is Good, Bad and Ugly.

Oh, the reminder. FREE tag. Again, its completely my opinion. I felt that this free tag is stopping them from giving out their innovations. There might be more in their plate, which they are resisting to serve. If that’s the case, we can expect a complete make over with some GOOD PRICE TAG sometime later.

That’s it form my side. Shower your thoughts below.
Thank you.

Comments

Popular posts from this blog

Find an old archived link on web

In recent past, I'm need of a tool, to which the provider no longer provides the link to download. Previously I've blogged about Openlogic , which serves this purpose. Openlogic contains unofficial fork of the original repository, and to be precise, I haven't found the tool I'm in search of. I found Internet Archive : Wayback Machine , while searching for it. It has got 412 billion stored pages and you may look into older versions of any website or you can get link to any software/tool which used to be a website. All you have to do is, provide a link or part of a link to search. For example, to know how my website used to be in 2013, just type http://www.thechaithanya.com and you can see a calender with some of the dates highlighted, on which they had the snapshot of my website. You can even provide a part of link. For example, to get the link of older version of Android ADT, search using http://dl.google.com/android/adt/* You can find a set of links and...

Reverse Engineering : Extract contents from .img file

Unyaffs is a program to extract files from a YAFFS2 file system image. Currently it can only extract images created by mkyaffs2image. Download the source from here . Compiling : Extract the contents into a suitable place and run the following command make Usage : unyaffs [options] <image_file_name> [<extract_directory>] Options: -d detection of flash layout, no extraction -b spare contains bad block information -c <chunk size> set chunk size in KByte (default: autodetect, max: 16) -s <spare size> set spare size in Byte (default: autodetect, max: 512) -t list image contents -v verbose output -V print version Source: Official github repository

Setting JVM Heap size at runtime

To set the JVM heap size, compile the program normally. For example, consider Runtime.java program. Compilation: javac Runtime.java Now, to set minimum heap size(let, 16 MB) required by JVM, run the program as follows : java -Xms16m Runtime  We can also restrict maximum size(let 512 MB) utilized by JVM: java -Xmx512m Runtime  Both these options can also be combined to specify upper and lower bounds of JVM heap size: java -Xms16m -Xmx512m Runtime Now you can run a program that requires huge computational space.