Showing posts with label Apple. Show all posts
Showing posts with label Apple. Show all posts

Friday, April 5, 2013

The Importance of Design Direction

Don't Copy From This Blog...

Protected by Copyscape Plagiarism Detection
There are quite a few articles on the internet, and in print giving reasons for Apple's meteoric rise to success. Those articles are very long, and the writers of those articles use big words because they think it makes them look sophisticated and highbrow. It gives me a headache, and big words only makes it seem as if you're trying too hard. Put simply, the only reason why Apple rocketed to success is because they had a radically different design direction to their rivals.

Design here isn't used in an aesthetic sense. Before Apple, or Steve Jobs, everyone assumed users of technology were just as smart as the people who made them. Steve Jobs assumed the users of his products were morons, and designed them in such a way so that even the most technologically challenged person could use them. Jobs called his design direction intuition.



According to the dictionary,

intuition |ɪntjʊˈɪʃ(É™)n|noun [ mass noun ]the ability to understand something instinctively, without the need for conscious reasoning: we shallallow our intuition to guide us.• count noun ] a thing that one knows or considers likely from instinctive feeling rather than conscious reasoning: your insights and intuitions as a native speaker are positively sought.
Steve Jobs wasn't all that wrong in calling his customers morons. I don't think he ever said it verbally, but we all know that in the face of rapidly advancing technology, even the most tech savvy 5 year olds barely keep up. So there isn't a hope in hell that the average customer has any chance of using any new products. So he took the tech available, and buried it under an extremely simple interface so that it even users who are used to typewriters can easily use it. Till date I haven't seen a middle aged person take to a piece of modern technology as much as the iPad. The iPad is a masterstroke. Middle aged people who have lots of money love it because they can use it easily and keep up with the times, and because they have lots of money they don't mind Apple overcharging them. Another simple reason is that all Apple products simply work. It is a very attractive quality, and it's what makes German cars sell.

Apple designs products that simpletons can use easily. Nokia also perfected this design direction with its now ageing Symbian. Although they fell in a spot of trouble after Apple launched the iPhone due to what I suspect were a few fat cats scared of change. Now though, Nokia is back with Windows Phone 8, and they too are taking the right steps towards now what can now be called a 'successful design'. Samsung, however still doesn't quite understand the reason why Apple is so successful. It could do with the fact that they started off making mobile phones for the lower end of the market, where selling price of the phone was key, and everything else could, and was compromised on. It was, and is a successful strategy, and Samsung decided to adapt the same to the higher end of the market. At this end of the market however, selling price isn't key. Apple, and Nokia cottoned on this, and they soon became very successful. The only reason Samsung has a reasonably large market share is due to the only reason that will ensure its decline in the near future-its operating system, Google Android.

Google does a lot of things right. A list that includes it's search engine, translation, mapping and the ever entertaining Google Doodles. But they are horrible at making operating systems. The ChromeBook was a very shoddily put together weekend project that was aimed at a very specific market which was already taken over by the MacBook Air. Once you go Mac, you never go back? Thats the 11th commandment. It was a project which was doomed before it was ever conceptualised. Still Google hasn't given up, and now it has tried to take the fight to the MacBook Pro with what only be described as a jumped up ChromeBook with a touchscreen. It's hopeless. Its as if Google deliberately shot themselves in the knee, and then jumped off a cliff. I bet they're now simply hoping everyone forgets about the ChromeBook Pixel.

Android is another flawed design. Google nicked iOS in its infancy and then transformed it into Android as Larry Page was on Apple's board of directors. He quit and took the then young iOS into Google's hands. Steve Jobs was furious and he vowed to kill Android at any cost. Which is why Apple is suing Android whenever, and wherever. Nokia and Windows Phone 8 haven't attracted any attention. Android is an iOS clone gone horribly wrong. The design philosophy is stunted, and just like Windows 7, it was designed to be used by any number of manufacturers. So it is a compromised design, unlike Apple and Nokia, both of whom closely integrate their OS and hardware. Not only is a flawed design, but it is also technically inefficient, needing powerful processors to run anywhere near as smooth as iOS or WP8. Of course, many prefer Android because it's "open". There is a small percentage who use the open source OS for various project, but a majority of users use "open" as an excuse to get paid applications for free. In any case, Linux is a much better option, and it is much more versatile and powerful. No matter how many features Android might have, its just not going to match up to the user friendly interface of either iOS or WP8. The user friendly interface is a key point here. No matter how many more features are added to a device, the interface has to be able to maximise those features with minimal action.

iOS, and Mac OS X are classic examples of this design. Both have been constantly updated, but if a person who has been using the first version makes the jump to the latest version without having used any of the versions in between, the user would still feel at home, and would be able to use the device to its maximum potential. Microsoft too had followed a similar design direction, but then took a U-turn with Windows 8. This alienated many Windows 7 users, and forced them to revert back. It's not like Windows 8 is a huge leap forward either so the new UI which is supposed to work with touchscreen laptops and tablets is needlessly complicated. There is a reason why Apple didn't fit a touchscreen to the MacBook Air. There has rarely been a company like Apple which has managed to absolutely perfect their design direction and reap great rewards off it.


On a side note, a trend is emerging in design. The English are very good at this sort of thing. Apple, Formula 1, various fashion labels, all employ english designers. US, not so much. I might be wrong here, but it it something to do with education, or is it simply coincidence. Europe as a whole has better design sense than the US. Again, design isn't being referred to aesthetics, but the overall thinking behind any project.

Wednesday, April 3, 2013

AutoShot: Automatic Screenshot Taker

Don't Copy From This Blog...

Protected by Copyscape Plagiarism Detection
AutoShot. I couldn't resist naming an elementary AppleScript script. It was too good a name to pass up.

Autoshot automatically takes screenshots of your Mac while you play your game, or work on your project, so you can document your work or play, without having to press the combination of keys to take a screenshot. There are full fledged apps out there that might do this, but this is a simple script that can do the same. You can decide the delay between each screenshot, and for how long should the script take the screenshots.

Here is the code incase you want to edit it anyway. I took bits of code from places, as I'm slightly rusty at this. To change the format of the image, simply edit the ".png" bit.

display dialog "AutoShot: Automatic Screen Capture Script 
Gap between each shot(in seconds)" default answer "" buttons {"OK", "Cancel"} default button 1 --Q&A for user, to determine factors of taking screenshots
set beta to text returned of result
display dialog "Period of time for the screenshots to be taken(in minutes)" default answer "" buttons {"OK"} default button 1
set zeta to text returned of result --period of time for shots to be taken
display dialog "Screenshots will be saved on folder named 'AutoShot' on Desktop" buttons {"OK"} default button 1

set dFolder to "~/Desktop/AutoShot/"

do shell script ("mkdir -p " & dFolder)

set zeta1 to zeta * 60 --converting input to seconds
set alpha to (zeta1 / beta) --calculating no. of times the screenshot code has to be repeated


repeat alpha times --Repeat Code
set tTime to do shell script "date +%H%M%S"
do shell script ("screencapture " & dFolder & tTime & ".png")
delay beta --Gap between each shot
end repeat

The download link for the app that doesn't need AppleScript editor. Its a standalone app, so it'll run the script on simply running the app.

Wednesday, February 13, 2013

MacBook Pro 13" Mid 2012 i7 Review

Don't Copy From This Blog...

Protected by Copyscape Plagiarism Detection


MacBook Pro 13" i7

First off, the biggest flaw with this laptop is the name. The official name for this laptop is "MacBook Pro 13" Mid 2012 i7". This is because Apple launches a new MacBook every Tuesday or something. So it has to have a different name corresponding to the launch date to differentiate from it's predecessors. It's a bit like the Porsche 911. Just like the 911, the MacBook evolves generation by generation, never radically changing its design. And just like the 911, the MacBook has around billion variations. So it's a nightmare to pinpoint the version you actually want. Spell something wrong, or say some words in the wrong order, and you get a completely different laptop. However, Porsche figured it out. By giving codenames like '991', and '997', generations can be differentiated. And with names like Turbo, Carrera, and so on, models can be differentiated. The MacBook Pro 13" series has 3 models. 1 retina display equipped model, and 2 non retina ones. The one I will be reviewing is the non retina display one. The non retina display model has 2 variations. On standard configuration, one has 4GB RAM, Intel 2.5 GHz i5 processor, and other one has 8GB RAM, and Intel 2.9GHz i7 processor. Now to simplify the naming, Apple should have taken Prosche's lead and called the i5 model, "Standard", and the i7 model "TURBO V RACING ROCKET FAST TURBO!!!!!!". Because the i7 model is really fast. In a hypothetical laptop drag race, it will do quite well.

[Now before I continue, if you just want to know whether you should buy this laptop, the answer is, yes. Don't hesitate. Go right now and buy it.]

It has a 750 GB hard drive, and although it nice to have a big hard drive, I'd rather opt for the optional smaller capacity flash drive. I didn't opt for the flash drive, because Apple took all my money away after I bought the laptop. Apple will not let you exchange your hard drive for a flash drive either, which is a bit unfair. But even without the flash drive, it is very fast. The processor is impressive(2.9GHz Intel Core i7), and at the time of launch, this has the fastest dual-core processor. In the world. Well, atleast according to GeekBench. I ran a few GeekBench tests, and this is what happened.

32 bit result
64 bit result

It's good isn't it? If you don't understand what these numbers mean, join the club. All I know is, bigger the number, the better. What it actually means is that I never struggle to run any application or game. This will run anything you throw at it. The 8GB RAM which comes as standard helps as well. Call of Duty: Black Ops, AutoCAD, Formula 1 2012, Final Cut Pro, Adobe Creative Studio, Aperture, this will handle it all with ease. Although you might want to upgrade to a quad-core Retina Display equipped 15" MacBook Pro if you actually are a pro user who depends on your laptop to earn money. But for about 80% of users, it'll do just fine. If you upgrade to a flash drive, it'll be even better. The 13" MacBook Pro with the Retina Display is much thinner and lighter, has that fantastic display(It really does make a difference) and comes standard with a 128GB flash drive. However, it has the slower i5 processor, and you can't upgrade the RAM after buying it, as the RAM cards are soldered on to the motherboard. And it is pricier by around $200. Regular pro users need not apply. This is for MacBook Air users who want something faster. So common sense dictates that you should buy the faster non Retina display version, and upgrade to the flash drive and 16GB RAM in a few years to essentially give a new lease of life to what might be a relatively slow laptop in the near future. So this laptop will last you for quite a long time. I think it will last for 5-6 years, which is impressive considering the fact that newer and faster laptops are being launched every 6 months or so.

This is a workhorse 

The webcam is pretty good, the speakers are decent as well, and the build quality is superb. The battery indicator lights, and the sleep light. will never cease to fascinate you. The keyboard is brilliant, but the backlit keyboard is something I have never actually used as I never really have any use for it. But the backlit keyboard has 16 brightness settings. Which is excessive considering the fact that you either want the light on or off. 2 settings would do just fine. The light sensor adjusts the brightness of the screen and keyboard according to the brightness of the surroundings, which works very well. These small touches all add up to your daily experience of using the laptop. You will not able to use normal computers after using the MacBook Pro. It's just not possible. What actually sealed the deal for me was the trackpad. The glass trackpad might actually be best thing about any MacBook. The person who made it deserves a Nobel Award. He really does deserve it. Unlike the president of a certain country. Ahem. The trackpad connects you, the user to the laptop. It is the most important part of the laptop interface. The multi touch gestures, the inertial scrolling, the feel and touch of the thing, it is simply superb. Why haven't other companies figured it out yet? A bad trackpad, is a bad laptop. And why are some trackpads offset to the left side of the laptop? Isn't it a bit racist against the left-handed people? Can I sue?

The magical trackpad


It's all good news till now, and it doesn't stop. The hardware is impressive. But there are other laptops out there with much more powerful setups at a lower price. But what other manufacturers haven't figured out yet, is that the operating system has to be perfectly calibrated with the hardware. A Windows user expects issues with the hardware and software right after opening a brand new laptop. A typical Macintosh user doesn't even know hardware and software compatibility issues exist. The operating system that come standard is Mac OS X 10.8 Mountain Lion. Now 10.6 Snow Leopard is still better than Windows 8. And that is old now. 10.7 Lion was a disaster, and is Apple's Windows Vista moment. But just like Windows 7, 10.8 Mountain Lion(ML) irons out all problems and is the best operating system by a light year. It is intuitive, smooth, helpful, and comes pre-loaded with some stunning wallpapers. The notification bar with Facebook and Twitter integration is a neat touch, along with the iOS design elements that are now implemented in the Mail, Notes, and other Apple applications. 10.8 ML takes the trackpad multi touch to a whole new level, but because it is so intuitive, even a novice user can easily get to grips with it. As you use the MacBook Pro day in, day out, you begin to realize that this unity of hardware and software is incredibly important, and you take joy in the fact that everything simply works.

Mission Control

The only issues I face are really very minor and trivial. When you boot up, it's a bit slow and behaves as if it's hungover. But within a minute or so, it's back upto speed. I suspect this is because it's not using all RAM available at one go. I think it only uses 4GB initially, and only starts using the rest if it really needs it. Even the processor is a little lazy initially. With the hard disk drive, the boot up time is around 40 seconds or so. The solid state drive takes less than 10 seconds to boot up. If you keep your Mac switched on continuously for a few days, and only let it sleep, strange glitches begin to occur. Sometimes Mission Control doesn't work, or the ability to drag specific Finder windows stops working. It starts acting like an annoyed computer fed up with the user for not getting enough sleep. It does have a lot of character, Mountain Lion. The App Store is brilliant, and has better applications than Windows can ever dream of. There's nothing to worry about.


One of the best and most characterful laptops ever. This is a masterpiece.

UPDATE: Apple cuts 13" Retina Display MacBook Pro price by $200. It's still not worth it though.

Official Stats

Saturday, August 25, 2012

Terminal Mischief ;)

Don't Copy From This Blog...

Protected by Copyscape Plagiarism Detection
The Macintosh operating system is often thought to be extremely serious and po-faced, only dedicated to serving corporates and artists alike. But there is a fun, childish side to the Macintosh OS not many people know about, and even fewer know how to access it. Here's a guide to access those awesome features.

First open Terminal
[Applications>Utilities>Terminal] or use Spotlight





Now make your Mac speak anything out loud. Anything you want.
Simply type,
say [type text you want to hear your Mac speak aloud]

Unleash your Mac's artistic talents by producing ASCII art with a few keystrokes.
Type,
banner [text to be converted into ASCII art]


To save the ASCII art to a text file,

Navigate to Desktop.
cd Desktop
 Now type in the command,
banner [text] > [filename].txt 

Now open the file from Desktop.


To show it more clearly here, I converted the txt file to a pdf.



Awesome stuff isn't it? There are many more Terminal tricks. You can even access retro games  such as Pong, Tetris, and others using eMacs.

Thursday, August 9, 2012

Garfield Dashboard Widget [Macintosh]

Don't Copy From This Blog...

Protected by Copyscape Plagiarism Detection


A few years ago, someone made a Garfield widget which displayed every comic since its inception. However due to circumstances only know to the wildly imaginative, the widget isn't available on the internet anymore. I took the basic algorithm of that widget and made another so that the interweb can still enjoy Garfield.

Download Link

I think the sunday strip doesn't appear for some reason. Don't ask why. I can't figure it out either.

Saturday, April 21, 2012

Nokia E7

Don't Copy From This Blog...

Protected by Copyscape Plagiarism Detection
A while back, I had a bit of a moment when I ranted on about how flawed the E7 was. However, with the new Symbian Belle update, it's a lot better now. Finally, it starts to make a lot more sense. However, rumors are abound that the next Symbian update, Carla might not make it to the E7, as it doesn't have enough firepower to handle it. Or more likely, a lite version of Carla will be available for the E7. And this is pretty monumentous news, as the Carla update is a big overhaul and it refreshes Symbian^3 altogether.

This is all a bit mysterious. Either Nokia's product management team screwed up, or the rate at which the smartphone market grew messed up Nokias' product strategy. The Nokia N8, and the E7, flagship devices of the Symbian range are too old and weak to support a Symbian^3 upgrade that even models much lower in the hierarchy such as the 701(which have better(4x)processing power) to support. The 701 can even support Windows Phone 7 or Android 4.0, if it comes to that.

Nokia E7 with Symbian Belle


However, Nokia has specifically listed the flagship devices as N8-00, and E7-00. So there might be future models based, if we are to believe the nomenclature followed by the other phones in the Nokia family. Hopefully the N8-01, or E7-01 might just bring Nokia up to speed in the smartphone war.

Windows Phone 7


I honestly do not consider the Windows Phone 7 OS to be any better than Symbian^3. The Windows interface is too cluttered and it is frustrating when scrolling through the menues. It is a great idea to have the 'tiles', but they haven't thought the idea through. It is counter-productive, and it is an eyesore with all those tiles and idiotic contrast, and the colour scheme is awful as well. God help you if want to navigate through the menues and pull up something. It's a bloody maze. Although, technically it is a better platform than Symbian, but Symbian with its user friendly interface and properly segmented menues and its well chosen colours makes it so much nice to use. Android is downright boring, but productive. And yes, iOS is still the best mobile OS out there. The iPhone 4 used a 680+(upper limit is supposedly 780Mhz or so) Mhz processor with average RAM. Similar specs to the E7. But there's a huge chasm in the user experiences of both the mobiles. The iPhone is a class apart, and the E7 lags behind. iOS, with its fantastically structured menues, and inherent intuitiveness of the OS and it's fantastic display feels so fluid(very efficient) and effortless compared to the halty, and jerky Symbian^3. iOS is extremely efficient, and I highly doubt Android which is nothing more than an open-source clone of it, will ever catch up. Windows 7 is just hopeless. Nokia needs to develop a new OS with ARM(instead if Intel) and get its best designers on the job. Something along the lines of MeeGo, and possibly even better. MeeGo was the only OS that got close to iOS.

Apple iPhone 4


Good luck and Godspeed Nokia.

 
//PART 2