Apple Music Today's Hits
Popular Posts
-
Apple has now updated Mac OS X 10.8 to version 10.8.3. The following is the details of the fixes/additions included in this version. This up...
-
The macOS Mojave introduced a new desktop wallpaper mode called Dynamic Desktop. It looks and works fantastic. But you have a Mac that does...
-
Apple has released SMC updates for 2012 13" MacBook Pro and 15" MacBook pro retina, mid 2012 MacBook Air for resolving battery iss...
-
The original Tomb Raider from 1996 game has been launched by Square Enix for iPhone and iPad on iTunes App Store for $0.99. The game off...
-
The first assembled in India iPhones are being spotted in stores in Bangalore. The iPhone SE models are being assembled in Bangalore...
-
CCleaner is a very popular system utility app in Windows platform. It is one of the most powerful and effective system cleaning app out ther...
-
It may happen. For various reasons, sometimes CDs /DVDs get stuck inside the optical drive of Mac. And the they don't get out easily and...
-
Today we will write a simple Mac app with Xcode 5. The Xcode 5 has new design and different coding style that its predecessors. I will be u...
-
Aspyer Media has made available the new Call Of Duty franchise Call Of Duty: Black Ops for Macs running with an Intel processor. This includ...
-
Apple has updated its Xcode IDE to version 5.0.2 with some fixes for iOS simulator issues and iOS 6 fixes. Apple had released Xcode 5.0.1 on...
Games,
iOS,
iPad,
iPhone
Original Tomb Raider Released for iOS Devices
December 18, 2013 Pratik 0 CommentsThe original Tomb Raider from 1996 game has been launched by Square Enix for iPhone and iPad on iTunes App Store for $0.99. The game offers touch controls with support for recently game controllers for iOS devices.
iTunes Description:
Adventurer Lara Croft has been hired to recover the pieces of an ancient artifact known as the Scion. With her fearless acrobatic style she runs, jumps, swims and climbs her way towards the truth of its origin and powers - leaving only a trail of empty tombs and gun-cartridges in her wake. On this trail are breath-taking 3D worlds where exploration, puzzle and platform elements blend in a seamless real-time environment. A perfect chance for newcomers and diehards alike to jump back into the series' seminal single-player action.
Download on App Store : https://itunes.apple.com/en/app/id663820495
Mavericks,
OS X
Apple Outs Mac OS X 10.9.1 Update For Late 2013 Retina Macs
December 18, 2013 Pratik 0 CommentsApple outs Mac OS X Mavericks 10.9.1 update on December 16th to all OS X Mavericks users. It does have any major changes. Fixes for Mail and iWork and iLife and few bug fixes and performance improvements. It has some system specific enhancement forRetina Macs. It is worth 364 MBs and can be updated from Mac App Store.
This update is recommended for all 13-inch and 15-inch MacBook Pro with Retina Display (Late 2013) systems. It includes all updates from OS X Mavericks 10.9.1 plus system specific enhancements to improve the stability and compatibility of your Mac.
Improved support for Gmail in OS X Mail, and fixes for users with custom Gmail settings
Improves the reliability of Smart Mailboxes and search in Mail
Fixes an issue that prevented contact groups from working properly in Mail
Resolves an issue that prevented VoiceOver from speaking sentences that contain emoji
Updates Shared Links periodically when open in the Safari Sidebar
For detailed information about this update, please visit: http://support.apple.com/kb/HT6065
Apple,
OS X,
OS X Mavericks,
Software
Apple Outs Mac OS X 10.9.1 Update
December 17, 2013 Pratik 0 CommentsApple outs Mac OS X Mavericks 10.9.1 update on December 16th to all OS X Mavericks users. It does have any major changes. Fixes for Mail and iWork and iLife and few bug fixes and performance improvements. It is worth 244 MBs and can be updated from Mac App Store.
The OS X Mavericks v10.9.1 Update is recommended for all OS X Mavericks users. It improves the stability, compatibility, and security of your Mac.
This update includes:
Improved support for Gmail in OS X Mail, and fixes for users with custom Gmail settings Improves the reliability of Smart Mailboxes and search in Mail
Fixes an issue that prevented contact groups from working properly in Mail
Resolves an issue that prevented VoiceOver from speaking sentences that contain emoji
Fixes an issue that prevented iLife and iWork apps from updating on non-English systems
Addresses an issue that may cause multiple prompts to unlock “Local items” keychain
Addresses an issue that may cause Japanese keyboards to retain a previously used language
Resolves issue that prevents a Contact group name from populating the address field
Includes Safari 7.0.1
Fixes an issue that could cause Safari to become unresponsive when filling out forms on fedex.com, stubhub.com, and other websites Improves Credit Card Autofill compatibility with websites
Improves VoiceOver compatibility with facebook.com
Updates Shared Links periodically when open in the Safari Sidebar.
More info at : http://support.apple.com/kb/DL1707
Today we will write a simple Mac app with Xcode 5. The Xcode 5 has new design and different coding style that its predecessors. I will be using the version 5.0.2, but you can code with version 5 or higher. The code will be slight different in Xcode 4+. So, let's get started. I expect you to know a little bit about Objective-C.
If you are coming from any object oriented language like Java, C# or C++, then please keep in mind that Objective-C is different that those languages. This application accepts your input in a text box and shows in a label when you click a button.
First open Xcode and make a new project called "HelloWorld". But we are not doing a simple hello world app here. We will do something different. Save it any a location suitable to you. Leave the App Store category to None and leave the Core Data unchecked.
You will be greeted with a screen with project details. On the left side, you can see the Navigator area where all the files of this project are listed in various folders. If you are new to Xcode, then first check the interface of Xcode. I have marked them to understand the layout easily.
Click the 'MainMenu.xib' to get into Editor area. You can see a vertical dock with seven icons. And you also can see the menu bar of your application. To start developing your app, click the 5th icon in the dock. It's a Window Object. You will see a typical Mac app window.
The next step is to add some elements into our app. The panel in the right hand side bottom is called library where you can select various elements or objects to add. Click the 3rd icon which is highlighted in blue the the above image. In the search bar below, search for Text Field and when you get that drag it to the window. Then search for Push Button and Label objects and drag them to the window too. Then rearrange them as shown in the above image.
Double click the push button and replace the text with Click Me or Show Name or anything you like. Similarly, you can double click the label and remove the text and make it blank so that it will show the text which we will enter in the text box. After completing the above task, now we will link the text field, the button and label so that when we will enter any text in the text box, it will be shown in the label.
To code and connect more easily we we will switch to split mode which is achieved by clicking the 5th icon from right in the toolbar. It's called Assistant Editor. It looks like a butler with tuxedo and bow neck tie. Now you can see the window object in the left hand pane and the file AppDelegate.h in the right hand side pane. If it is not selected, then you can select it from the navigation bar on top of it.
Now click the text field and hold the control button and drag it to the right hand side file under the property declaration. A line will be connected from the text field to the right hand side file. And you will be presented with a pop up as shown in the above image. You are defining a property. Give it a name as txtField. Make sure it is an outlet. When you click Connect, a property line will be entered in the code file. If you are coming from Java or other OO languages, you can think of this property as declaring variables. Similarly connect the label also. Name it as showLabel. Now time to connect the button. As we know a button causes something happen. So drag it and you can see in the popup that it is set to Connection type Outlet. Change it to Action. Name it as showBtn. A button is a NSButton type object.
Now after connecting you will see the AppDelegate.h file as below.
Now we are done with split view. We can to normal single file view by pressing Command (⌘)+ Return(⏎) key. Select AppDelegate.m, which is the implementation of the .h file. We declared the properties in the .h file and now we will implement them in the .m file. Java users may think this about the declaration of variables in the .h file and creating getters and setters in the .m file. Thankfully, Xcode does the creation of getters and setters internally which is called Synthesize. If you are using older version of Xcode, you may see the Synthesize code as below.
@implementation AppDelegate;
@synthesize txtField;
It's time to write the code to connect the pieces together. Refer to the image above. We will write the code for the button above the @end. We will change the content of showBtn method. We will save the content of the text field in an String object named message. We will initiate the object with alloc and initWithFormat. What the alloc will do is that, it will create an object and initWithFormat will use a suffix (which we will provide) with our text field content. We use @"" for string. We are getting the value of the text field by [_textField stringValue].
We will show the message in the label by assigning it to the label.
Go ahead and run it. You can use Command+R. Enter any text in the text field and click to see the result below.
The Xcode does handle all the memory allocation and deallocation by ARC (Automatic Reference Counting). In older version of Xcode, you had to write code to release the memory.
You can find the code and the application in the link below. Feel free to ask any question. Follow me on Twitter to more updates on Xcode.
Download on Dropbox
https://www.dropbox.com/sh/i02mbpkchg73xrq/GJ2w9Tf4mK
If you are coming from any object oriented language like Java, C# or C++, then please keep in mind that Objective-C is different that those languages. This application accepts your input in a text box and shows in a label when you click a button.
Create a new project
First open Xcode and make a new project called "HelloWorld". But we are not doing a simple hello world app here. We will do something different. Save it any a location suitable to you. Leave the App Store category to None and leave the Core Data unchecked.
You will be greeted with a screen with project details. On the left side, you can see the Navigator area where all the files of this project are listed in various folders. If you are new to Xcode, then first check the interface of Xcode. I have marked them to understand the layout easily.
Click the 'MainMenu.xib' to get into Editor area. You can see a vertical dock with seven icons. And you also can see the menu bar of your application. To start developing your app, click the 5th icon in the dock. It's a Window Object. You will see a typical Mac app window.
The next step is to add some elements into our app. The panel in the right hand side bottom is called library where you can select various elements or objects to add. Click the 3rd icon which is highlighted in blue the the above image. In the search bar below, search for Text Field and when you get that drag it to the window. Then search for Push Button and Label objects and drag them to the window too. Then rearrange them as shown in the above image.
Double click the push button and replace the text with Click Me or Show Name or anything you like. Similarly, you can double click the label and remove the text and make it blank so that it will show the text which we will enter in the text box. After completing the above task, now we will link the text field, the button and label so that when we will enter any text in the text box, it will be shown in the label.
To code and connect more easily we we will switch to split mode which is achieved by clicking the 5th icon from right in the toolbar. It's called Assistant Editor. It looks like a butler with tuxedo and bow neck tie. Now you can see the window object in the left hand pane and the file AppDelegate.h in the right hand side pane. If it is not selected, then you can select it from the navigation bar on top of it.
Now click the text field and hold the control button and drag it to the right hand side file under the property declaration. A line will be connected from the text field to the right hand side file. And you will be presented with a pop up as shown in the above image. You are defining a property. Give it a name as txtField. Make sure it is an outlet. When you click Connect, a property line will be entered in the code file. If you are coming from Java or other OO languages, you can think of this property as declaring variables. Similarly connect the label also. Name it as showLabel. Now time to connect the button. As we know a button causes something happen. So drag it and you can see in the popup that it is set to Connection type Outlet. Change it to Action. Name it as showBtn. A button is a NSButton type object.
Now after connecting you will see the AppDelegate.h file as below.
//
// AppDelegate.h
// HelloWorld
// Created by Pratika Kumar Rana on 19/11/13.
// Copyright (c) 2013 Pratika Kumar Rana. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface AppDelegate : NSObject <NSApplicationDelegate>
@property (assign) IBOutlet NSWindow *window;
@property (weak) IBOutlet NSTextField *txtField;
@property (weak) IBOutlet NSTextField *showLabel;
- (IBAction)showBtn:(id)sender;
@end
@implementation AppDelegate;
@synthesize txtField;
It's time to write the code to connect the pieces together. Refer to the image above. We will write the code for the button above the @end. We will change the content of showBtn method. We will save the content of the text field in an String object named message. We will initiate the object with alloc and initWithFormat. What the alloc will do is that, it will create an object and initWithFormat will use a suffix (which we will provide) with our text field content. We use @"" for string. We are getting the value of the text field by [_textField stringValue].
NSString *message = [[NSString alloc]initWithFormat:@"Hello, %@",[_txtField stringValue]];
_showLabel.stringValue = message;
The complete code for AppDelegate.m file.
//
// AppDelegate.m
// HelloWorld
//
// Created by Pratika Kumar Rana on 19/11/13.
// Copyright (c) 2013 Pratika Kumar Rana. All rights reserved.
//
#import "AppDelegate.h"
@implementation AppDelegate
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
// Insert code here to initialize your application
}
- (IBAction)showBtn:(id)sender {
NSString *message = [[NSString alloc]initWithFormat:@"Hello, %@",[_txtField stringValue]];
_showLabel.stringValue = message;
}
@end
Go ahead and run it. You can use Command+R. Enter any text in the text field and click to see the result below.
You can find the code and the application in the link below. Feel free to ask any question. Follow me on Twitter to more updates on Xcode.
Download on Dropbox
https://www.dropbox.com/sh/i02mbpkchg73xrq/GJ2w9Tf4mK
Beyoncé has released her fifth album exclusively on iTunes. It has been named BEYONCÉ - Exclusive Visual Album. It's now adorning the iTunes Store Home page. It's called 'visual album' because each song comes with an accompanying music video. I bet it's first of a kind. It's available for 200 INR or $15.99. The album contains 32 songs and videos.
Get it now at iTunes Music Store
Apple,
iOS,
iPad,
iPad Mini,
iPhone,
iPhone 5c,
iPhone 5s
Themes for iPhone, iPad and iPod Touch (iTheme)
November 28, 2013 Pratik 0 CommentsMacX is celebrating Thanksgiving and giving away the MacX Video Converter Pro worth $49.99 for FREE. The offer is valid up to December 6th, 2013. The video converter has the following features:
- Convert video to any format including MP4, FLV, AVI, MOV, WMV, MPEG, etc with original quality.
- Transfer MKV AVCHD M2TS MTS FLV videos to iPhone, iPad, Android, PSP, etc with 32x faster speed.
- Trim, crop, split and merge videos, add watermark and subtitle to make your video personalized.
- Download YouTube video, capture screen, make photo slideshow, record video, etc.
You can find the serial no inside the zip.
Whoever own an Apple device must have known who has designed it. He is none other than Sir Hony Ive. He is with Apple from a long time, since 1992. From when Steve Jobs regain control of Apple in 1997, he and Jony have presented us with amazing devices such as iMac, iPod, iPhone, iPad and other things.
This book gives a look into his life and Apple. Get it at below links. It will cost you $11.99.
Amazon : Jony Ive: The Genius Behind Apple's Greatest Products
Apple has updated its Xcode IDE to version 5.0.2 with some fixes for iOS simulator issues and iOS 6 fixes. Apple had released Xcode 5.0.1 on October 22 with 10.9 compatibility and iOS 7. If you are downloading for the first time, then it will be a big download of 2.09 GB. And if you updating from v5.0.1 to 5.0.2, then it's a mere 135 MB download. Get it now from Mac App Store.
If you are running version 7 of Apple iPhoto, and wanted to or already have upgraded to the latest version of iPhoto, then you must be in worry that, the older version of iPhoto library is incompatible with the latest iPhoto. But now you can upgrade your older library to the newer one with a download from Apple. It's just 11.28 MB and runs on Mac OS X 10.6.8 or later.
Get it here : http://support.apple.com/kb/DL1523
Apple,
Apple Mail,
Mac,
OS X Mavericks,
Software
Apple Outs Mail Update For Mavericks
November 12, 2013 Pratik 0 CommentsApple has issued a Mail update for OS X Mavericks with general fixes and some Gmail issues. The following are the fixes:
- Fixes an issue that prevents deleting, moving, and archiving messages for users with custom Gmail settings
- Addresses an issue that may cause unread counts to be inaccurate
- Includes additional fixes that improve the compatibility and stability of Mail
Apple,
iTunes,
Mac,
Software
iTunes 11.1.3 Released With Equaliser And Other Fixes
November 11, 2013 Pratik 0 CommentsApple has released iTunes 11.1.3 with various performance fixes and equaliser fix. The new updates fixes an issue when working large iTunes library. This update also includes various bug fixes.
To download the the update go to Software Update on your Mac or get it here.
Apple,
Mac,
Macbook Pro,
OS X,
OS X Maverics
Activate Offline Dictation In OS X Mavericks
November 10, 2013 Pratik 0 CommentsIn Mac OS X Mountain Lion, Apple had provided an improved dictation. It was good for basic dictation, but it was online. It means when you dictate, it went online and analysed the word and then presented you the word.
In OS X Mavericks, Apple decided to incorporate offline dictation feature. It is now improved and recognises most of the words immediately. But it is nowhere near Dragon Dictate which is the king in the dictation technology. I have the British English voice installed on my Mac which have a size of around 500 MB. To activate it, you have to tick a checkbox with the label "Use Enhanced Dictation" in the Dictation & Speech Preference Pane. Then it will download the offline package which varies depending upon your language selection.
Apple has announced the newest iPad Mini with Retina Display at Apple Special Event. It was rumoured for some time and finally came true. The screen size is same 7.9 inch but the screen resolution has been bumped to 2048 x 1536 with 326 PPI.
It has the same A7 processor found in the iPhone 5s with 64-bit architecture. It has up to four times faster CPU and up to eight times faster graphics performance than the previous generation — without sacrificing battery life. It has up to 8x faster graphics and up to 10 hr battery.
To help you be even more creative and productive, iPhoto, iMovie, GarageBand, Pages, Numbers, and Keynote are now available for free. It will be available from November 2013 with a base price of $399. The old iPad mini is also available at $299. The new mini will be available in 16/32 and 64 GB storage capacities.
Apple,
Mac,
OS X,
OS X Maverics
Mac OS X Mavericks Available For Free
October 23, 2013 Pratik 0 CommentsApple has announced today at Apple Special Event that OS X Maverics 10.9 will be available as a free upgrade from App Store. Mac users from Snow Leopard 10.6.8, Lion 10.7 and Mountain Lion 10.8 can upgrade for free. The following Mac models are eligible for upgrade.
iMac (Mid 2007 or newer)
MacBook (Late 2008 Aluminum, or Early 2009 or newer)
MacBook Pro (Mid/Late 2007 or newer)
MacBook Air (Late 2008 or newer)
Mac mini (Early 2009 or newer)
Mac Pro (Early 2008 or newer)
Xserve (Early 2009)
Apple has announced the availability of iPhone 5s and iPhone 5c in India. It will be launched on November 1 in India, just before Diwali. It's not disclosed that which carriers will offer the phone. But Airtel, Aircel and Vodafone will offer it as they have been offering the iPhone for a while. The iPhone 5s will support Airtel's LTE network too.
Apple,
Mac,
Macbook Pro
Apple Issues Software Updates For 2012-2013 MacBook Pro and Air
October 02, 2013 Pratik 0 CommentsApple has released SMC updates for 2012 13" MacBook Pro and 15" MacBook pro retina, mid 2012 MacBook Air for resolving battery issues. The updates are available via the Mac App Store.
MacBook Pro SMC Firmware Update 1.8
This update is recommended for MacBook Pro (mid 2012) models. This update addresses rare issues where the battery unexpectedly stops functioning or the system hangs when the battery charge reaches less than one percent.
MacBook Pro Retina SMC Update 1.2
This update is recommended for 13-inch MacBook Pro with Retina display (late 2012) models, and 15-inch MacBook Pro with Retina display (mid 2012) models. This update addresses rare issues where the battery unexpectedly stops functioning or the system hangs when the battery charge reaches less than one percent.MacBook Air SMC Update 1.9
This update is recommended for MacBook Air (mid 2012 and mid 2013) models. This update addresses rare issues where the battery unexpectedly stops functioning, the system does not recognize the battery, or the system hangs when the battery charge reaches less than one percent.
Apple,
iOS,
iPad,
iPad 4,
iPad Mini,
iTunes,
Mac
iOS 7 Available For Download
September 19, 2013 Pratik 0 CommentsApple's newest iOS 7 is now available for download worldwide. The new OS supports iPhone 4, iPhone 4s, iPhone 5, iPhone 5S, iPhone 5C, iPad 2, 3, 4 and mini and the iPod Touch 5th generation. The update is available as OTA as well as through iTunes.
The iOS 7 has a refreshed UI and fresh new looks. The OS itself is 64 bit and most of the new apps are 64 bit too. With iOS 7, apple has made iWork, iPhoto and iMovie free. The update is available in India from 22.30 IST.
Apple,
Hardware,
iOS,
iPad,
Mac,
Macbook Pro,
Security,
Software
How To Keep Your Mac Safe
September 17, 2013 Pratik 0 CommentsNow a day, more people are getting Apple MacBook laptops worth thousands of dollars. And laptop heft is also in rise. If ever any Mac laptop is lost or stolen, then we can easily track and recover it only if few steps were taken earlier. I am discussing some apps we can use to keep our Macs more secure.
Prey (www.preyproject.com)
Prey is a free app that is available for Macs, Windows and Linux PCs, iOS and Android devices. With this, you can add 3 devices to your account and get 10 reports. Once you install, it will ask you for a Prey account. If you do not have one, then you can create one and if you have then just log in. It will access your device information such as brand, BIOS, processor, operating system, RAM and other few information and keep them in the dashboard. You can set the devices status from OK to Missing, if you lost it. You will get your device geo-location with Network information, screenshot via webcam and much more. You can ring an alarm, erase or lock your computer.
You can go for Prey Pro which includes five subscription plans. You can have Personal ($5/pm), Home($15/pm), Plus($39/pm), Premium($99/pm) and Max($399/pm). You can also buy annual subscription with some discount. The Pro plan has some benefits such as more devices, more reports, Prey Active Mode, On demand report
Undercover(www.orbicule.com)
Undercover from Orbicule is one of the oldest Mac security app. It does not come free. It also has the same functionality as Prey. Once installed, it quietly starts tracking your Mac. Once you list it as stolen, it swung into action. If your Mac connects to internet, it’s IP address is tracked and reported to Orbicule. You can use it to find it’s location.
If your Mac is lost or stolen, you have to report it to the Undercover team with a Undercover ID, your Name and Email. The app takes screenshot of the thief via iSight camera if the computer comes online and also help to report to police. It may happen that, your Mac may not come online. And here Undercover’s shines. It simulates a hardware failure so the thief would have no option to take to the Apple Care. If Undercover finds it’s a Apple Care center, it displays your contact information on the laptop screen and also tells that it is a stolen laptop.
Undercover costs $49 for a single Mac and a Household license will set you back by $59 which will cover 5 Macs in account.
iCloud(www.iCloud.com)
iCloud is a free service provided by Apple which is available with Mac OS X 10.8.2 onwards. First you have to tick the option “Find My Mac” under iCloud options in your Mail, Contacts & Calendars preference pane of your System Preference on Mac. On icloud.com, you will find your all your devices listed under My Devices. It will show it’s current location in a map. You can lock, erase your Mac or play a sound.
If you have not used any of the methods specified above, then you should chose one immediately. A lost Mac means, all your data gone and nobody wants it. So better prepared.
Prior to Mac OS X Snow Leopard, Mac OS did not have capability to restore any item you have deleted. If you delete anything and you did not remember the location of the item them you have to manually copy or move to some place. But Mac OS X Snow Leopard changed this behaviour and included an contextual menu item called "Put back". This is a very helpful feature which was present in Microsoft Windows from very long time.
There are many ways of earning money online. Freelancing is one of the best way to earn money online. To be able to do that, you have to be good at what you do. It could be any computer language, website designing or article writing etc. I am providing a list of well known and legitimate websites who offer these freelancing service.
1. oDesk :
If you are a beginner to freelancing work, I would recommend it to you. It has millions of users and new freelancers are often chosen and given opportunities. The fixed project range is $20 to $1500. But the average is around $100 to $200. oDesk guarantees the hourly projects only in which your work is tracked with oDesk Team application. The hourly project average is around $3 to $7. Desk is free to join and does not charge any membership fees.
Website : www.odesk.com
2. Freelancer:
If you are a professional in your field and have done many projects in the past, then it is the right place for you. Here the budget is fairly large amount. Projects start at $30 and goes up to $20,000 or more. It has mostly fixed price projects. If you can show your work portfolio, then the chance of getting hired is higher. Joining is free, but it has membership system. Free members do not pay anything and apply to only 10 jobs per month. Basic, Standard and Premium members have many more features and they cost $4.95, $24.95 and $49.95 respectively. You can take exams to prove your skills.
Website: www.freelancer.com
3. Elance:
Elance has established itself a high ranking freelancing website. Like Freelancer, you must be a seasoned pro to succeed here. Here, the average project price is $500. So, if you have done a lot of work and can show them, you are in heaven. It has also membership system and they are Basic, Individual, Small Company and Large Company. Basic is free and others are paid.
Website: www.elance.com
1. oDesk :
If you are a beginner to freelancing work, I would recommend it to you. It has millions of users and new freelancers are often chosen and given opportunities. The fixed project range is $20 to $1500. But the average is around $100 to $200. oDesk guarantees the hourly projects only in which your work is tracked with oDesk Team application. The hourly project average is around $3 to $7. Desk is free to join and does not charge any membership fees.
Website : www.odesk.com
2. Freelancer:
If you are a professional in your field and have done many projects in the past, then it is the right place for you. Here the budget is fairly large amount. Projects start at $30 and goes up to $20,000 or more. It has mostly fixed price projects. If you can show your work portfolio, then the chance of getting hired is higher. Joining is free, but it has membership system. Free members do not pay anything and apply to only 10 jobs per month. Basic, Standard and Premium members have many more features and they cost $4.95, $24.95 and $49.95 respectively. You can take exams to prove your skills.
Website: www.freelancer.com
3. Elance:
Elance has established itself a high ranking freelancing website. Like Freelancer, you must be a seasoned pro to succeed here. Here, the average project price is $500. So, if you have done a lot of work and can show them, you are in heaven. It has also membership system and they are Basic, Individual, Small Company and Large Company. Basic is free and others are paid.
Website: www.elance.com
Apple,
Intel,
Mac,
Macbook Pro,
Software
Mac OS X 10.8.3 Now available
March 16, 2013 Pratik 0 CommentsThis update is recommended for all OS X Mountain Lion users and includes features and fixes that improve the stability, compatibility, and security of your Mac, including:
- The ability to redeem iTunes gift cards in the Mac App Store using your Mac's built-in camera
- Boot Camp support for installing Windows 8
- Boot Camp support for Macs with a 3 TB hard drive
- A fix for an issue that could cause a file URL to quit apps unexpectedly
- A fix for an issue that may cause Logic Pro to become unresponsive when using certain plug-ins
- A fix for an issue that may cause audio to stutter on 2011 iMacs
- A fix for an issue in Contacts that may cause cards to print out of order
- A fix for an issue that may cause the desktop picture to change after logging out or restarting
- A fix for an issue in Messages that may cause messages to appear out of order after waking from sleep
- A fix for an issue that may cause the screen to display incorrectly after waking from sleep
- Improves compatibility with IMAP servers in the Notes app
- Allows the Slideshow screen saver to display photos located in a subfolder
- A fix for an issue in Contacts that may cause addresses to print in the wrong location
- Reliability improvements when using a Microsoft Exchange account in Mail
- Xsan reliability improvements
- A fix for an issue that could cause Active Directory accounts to be locked out after accessing the Security & Privacy pane in System Preferences
- A fix for an issue that could cause link aggregation to not complete after a restart
- A fix for an issue that could cause delays when logging into an Active Directory account on high latency networks
Safari 6.0.3
Safari 6.0.3 is included in the OS X Mountain Lion v10.8.3 Update and contains fixes that improve performance, stability, and security, including:
- Improves scrolling on facebook.com
- Improves scrolling while zoomed in on a webpage
- Improves performance on webpages with plug-in content
- A fix for an issue that could cause the inaccurate appearance of an alert that bookmarks can't be changed
- A fix for an issue that could cause duplicate bookmarks to appear on an iOS device after editing bookmarks with Safari in OS X
- A fix for an issue that permitted users to access unfiltered search results when searching from google.com when Parental Controls are enabled
- A fix for an issue that could prevent Safari from restoring the last position on a webpage a user navigated back to
The QuickTime X is the default movie player in all Macs running Mac OS X 10.6 onwards. If you are a long time Mac user and have used the auto-play feature in old QuickTime Player, you will be missing it in QuickTime X. There is simply no option to turn on this feature.
But you can now enable auto-play in QTX by executing a simple command in Terminal. Copy the command given below and paste it or enter it in Terminal. It will be successfully executed. After the execution, your movies will be played automatically. If you want to revert to the old click and play feature, you can just enter the code and replace the 1 at the end with 0.
defaults write com.apple.QuickTimePlayerX MGPlayMovieOnOpen 1
© 2019 Pratik. Powered by Blogger.
























