Showing posts with label Using. Show all posts
Showing posts with label Using. Show all posts

Free iPhone Ringtones Using iTunes!

Follow Me On Twitter: bit.ly

Sorry, I could not read the content fromt this page.
More aboutFree iPhone Ringtones Using iTunes!

Jailbroken iPad 2 using JailbreakMe 3.0 does not supports Camera connection kit

Comex released JailbreakMe 3.0 official yesterday, all the iPad 2 users are very happy. JailbreakMe 3.0 also supports iPhone 4, iPhone 3GS, iPad 1 and iPod Touch 3G/4G. This the most easiest jailbreak tool that’s the reason i-Device users are waiting for,  it’s very simple step to jailbreak i-Device any buddy  can jailbreak using our previous article instructions.

There are also single bug fou d on JailbreakMe 3.0 that is Camera connection kit does not supports iPad 2 after jailbreak using jaibreakMe 3.0. Users Complaint to Comex on twitter last day but Comex not get seriously and twits “Okay, there is a known issue with the Camera Connection Kit and JailbreakMe.”

screenshot.51 Jailbroken iPad 2 using JailbreakMe 3.0 does not supports Camera connection kit

After hearing from some popular people he feels that actually people facing that problem and twits after few minutes “…It makes me feel bad to ignore peoples’ emails, but last night I was sort of flooded with them.”

screenshot.6 Jailbroken iPad 2 using JailbreakMe 3.0 does not supports Camera connection kitFew hours after he twits “See, I fail and broke it again with “Invalid Checksum”. Should be fixed in like five minutes.”.

screenshot.7 Jailbroken iPad 2 using JailbreakMe 3.0 does not supports Camera connection kit

This is bad news for that Users who using Camera Connection kit which is not working currently hope Comex will do something very soon.

Stay tune with us for more details on JailbreakMe 3.0 and iPad 2 jailbreak.

More aboutJailbroken iPad 2 using JailbreakMe 3.0 does not supports Camera connection kit

Jailbreak iPad 2 running iOS 4.3.3 using JailbreakMe 3.0

?Finally JailbreakMe 3.0 released by Comex. iPad 2 users waiting from iOS 4.3.3 firmware release date, today comex jailbreaks iPad 2 with JailbreakMe 3.0. Last 4-5 months iPad 2 users waiting for iPad 2 jailbreak  from iPhone hackers iPhone Dev Team, Chronic Dev team as well as GeoHot who challenged to jailbreak iPad 2 and fail. After long time work Comex Released JailbreakMe 3.0 which fixes numbers of Bugs .

screenshot.5 Jailbreak iPad 2 running iOS 4.3.3 using JailbreakMe 3.0 Follow Steps to jailbreak iPad 2 using JailbreakMe 3.0 :
1. At first you need safari web browser on your Device, Launch it and open www.jailbreakme.com.
2. Now you will see JailbreakMe 3.0 on web site, tap on Free button and followed installation instructions.
3.Now complete the procedure to install JailbreakMe 3.0 on your iPad 2
4. Now automatically Safari Browser will be closed and launch Cydia iCon on your Home screen
5. Click on Jailbreak button, now its on process once its complete you will get pop up button, which shows you Cydia has been successfully installed on your Device
6. Now you will see Cydia on your Home screen, and enjoy Untethered jailbreak iPad 2 using JailbreakMe 3.0

Stay tune with us for more details on iPad 2 jailbreak.

More aboutJailbreak iPad 2 running iOS 4.3.3 using JailbreakMe 3.0

Using SQLite with iOS

ikhoyo (Bill Donahue) works in the publishing industry on UI’s for the internet and mobile devices (like the iPhone and iPad). You can see more on my blog. All of the code for this post can be found at GitHub.

In my last post, I described how to compile your own version of SQLite on the iPhone. In that post, I briefly described the IkhoyoDatabase class. IkhoyoDatabase is an Objective C class that wraps SQLite for iOS applications. For this post, I’ll flesh out the details.

If you haven’t already, clone the ikhoyo-public repository at GitHub. If you are using Xcode 4, open the ikhoyo-public workspace in the workspaces directory.

Look in the ikhoyo-top project, which contains the UI that demonstrates all of the ikhoyo technologies. IkhoyoAppDelegate contains the startup code for the app, and it’s here that we’ll open a database, create a database table, and insert some data into the table.

One quick note. The startup code that we execute in our app delegate has to execute quickly (the app will fail to initialize on the device if this takes too long). But creating and populating a database table is quite slow, right? We solve this by wrapping our code in a dispatch_async block, which executes asynchronously under another thread. This is a handy trick in many scenarios, but is especially important in the app delegate startup code.

The data we will be using comes from Socrata. Socrata is a very useful source of government (and other) data. It has a very easy to use and open REST API. We’ll use another ikhoyo class (IkhoyoSocrata) to get the data. IkhoyoSocrata is in the ikhoyo-socrata project, and wraps the IkhoyoURLManager class, which is in ikhoyo-net. IkhoyoURLManager is a complete solution for getting (or posting) data on the internet in a variety of ways. We’ll talk more about IkhoyoSocrata and IkhoyoURLManager in a future post.

Let’s get back to getting some data from Socrata. First look in the application:didFinishLaunchingWithOptions method (in IkhoyoAppDelegate). Here is the relevant code:

We get the document directory for this app and open an SQLite database called ikhoyo.sqlite. After the database is opened, we call finishInit. finishInit gets the data from the n5m4-mism table at Socrata. This particular table contains information about nominations and appointments for the White House. (Socrata contains all kinds of interesting data, and it’s kept up to date.)

Below, we get the data with the IkhoyoSocrata get method (in the ikhoyo-socrata project). Socrata returns data as either xml or json. We request json, which we parse with the handy objectFromJSONString method. This is from the JSONKit project, a very fast and lightweight JSON parser. We include JSONKit in the ikhoyo-jsonkit project in our workspace.

The data returned by Socrata contains meta data that describes the columns for the data, as well as the data itself. We use this information to construct a CREATE TABLE statement that we’ll use to create our database table.

After the CREATE TABLE statement is constructed, we use this code to DROP and CREATE a new database table::

First, a few quick notes about IkhoyoDatabase that you may remember from my last post. We compile SQLite in single threaded mode, which is optimal for most things. The only caveat is that we must execute all database operations on the same thread. IkhoyoDatabase does this for you automatically. All database operations execute on a low priority thread, so the responsiveness of your app is not affected. Each method has a block associated with it that gets called on the main thread when the operation completes.

The execOnDatabaseThread method is another way to use IkhoyoDatabase. This method executes the given block on the database thread. In this case, we need to drop a table, create a new one, and then insert a bunch of rows into the table. execOnDatabaseThread allows us to do all these operations sequentially on the database thread without having to write a bunch of blocks for each separate operation. For complicated operations or transactions, this method is the preferred one to use.

The data itself is loaded in loadTable. Here we construct an INSERT statement for each row, and insert the rows in the table. Here is the code:

Again, execFromDatabaseThread tells IkhoyoDatabase that we are already on the database thread, so the statement can get executed sequentially. The return value is either nil (success) or an instance of IkhoyoError (failure).

Now let’s move to querying this table and displaying it in our UI. The data is displayed in the SocrataTableViewController class (in ikhoyo-top). After the table is loaded, a named notification called IkhoyoSocrataReady is sent. This is observed in the SocrataTableViewController class. When the table is loaded, the onReady method will get executed. Look at the onReady method in SocrataTableViewController:

Here we are selecting the name column from the table we just created (for simplicity we are only selecting one column). The query method accepts three parameters: the query itself, a class name that will hold the results, and a block that gets executed on the main thread when the query completes. The second parameter (the class name) is the name of a class that we create to hold the results. In this case the class name we use is Socrata. Here is what Socrata looks like:

Notice that there is one property in Socrata called name. This is the same column we are selecting in our query statement. The IkhoyoDatabase query method use key-value coding to populate instances of Socrata for each row in the result. The Socrata class needs a matching property for each column returned by the query. The only requirement imposed on us is that the property types in the Socrata class need to be the same as in the database. The name property is a string, hence the type, NSString. If it were a number (real or integer), we would use NSNumber.

The block that gets called when the operation completes is passed an NSArray of Socrata instances containing the results (or an IkhoyoError instance if it failed). We take each name and put it on our rows array that the table view uses.

If you run this workspace and select Socrata Table from the master view on the left, it will display the names of the nominations and appointments for the White House.

That’s it for now. In my next post, I’ll talk about the IkhoyoURLManager class, which is a complete solution for getting and posting data on the internet.

More aboutUsing SQLite with iOS

Google Mobile Payment Service to debut on May 26

It appears, as reported by various on-line news blogs, that Google (the search engine giant) will be rolling out Mobile Payment Service on May 26 using NFC(Near Field Communication).


NFC Google Sprint 311x380 Google Mobile Payment Service to debut on May 26 Using NFC [Rumor]


This is a big news for the users of Sprint Nexus S 4G users as they’ll be saying bye bye to Credit Cards once they have this service on. The NFC service shall allow users to both pay and use mobile coupons with a swipe of their phones. According to Bloomberg, Google may officially announce this in a press event set for May 26th. The initial launch is rumored to include five cities – New York, San Francisco, Los Angeles, Chicago, and Washington D.C.


It seems that Google and Sprint’s combine offering will see some competition from ISIS, a joint effort between AT&T, Verizon, and T-Mobile. Apparently, the service will initially be only for the Google Nexus S 4G consumers. If you are one such user, would you use Google + Sprint service or would you use plain old Credit Card? Do let us know in comments section.

More aboutGoogle Mobile Payment Service to debut on May 26

Unlock iPhone 3GS, 4 Running on iOS 4.3.3 Using Ultrasn0w 1.2.3

iPhone Dev Team has released a newer version of Ultrasn0w. Those who rely on an unlock after jailbreaking iOS device running on iOS 4.3.3 using Redsn0w can use Ultrasn0w 1.2.3 to run iPhone on any carrier. Please make sure that before starting the below mentioned steps, you have jailbroken your iPhone. If you haven’t jailbroken your iPhone yet, follow the guide posted here.



Ultrasn0w 1.2.3 supports 01.59.00 / 04.26.08 / 05.11.07 / 05.12.01 / 05.13.04 / 06.15.00 basebands.


Once you have jailbreaked your iPhone follow the steps below for unlocking your iPhone using Ultrasn0w1.2.3:


1. Go to Cydia -> Manage -> Source


iPhone4Unlock1 How To: Unlock iPhone 3GS, 4 Running on iOS 4.3.3 Using Ultrasn0w 1.2.3


2. Now select the Edit and then Add a source ‘http://repo666.ultrasn0w.com’ , as shown below on the screen.


iPhone4Unlock2 How To: Unlock iPhone 3GS, 4 Running on iOS 4.3.3 Using Ultrasn0w 1.2.3


3. After the source has been added search for ‘ultrasn0w 1.2.3‘ and install it.


4. Once you install this app you can use your iPhone with any carrier.


If you find any difficulty during the unlocking process, do write us in the comments section below.

More aboutUnlock iPhone 3GS, 4 Running on iOS 4.3.3 Using Ultrasn0w 1.2.3

Jailbreak iOS 4.3.3 Untethered Using RedSn0w [Windows]

iOS 4.3.3 was released by Apple a few days back. Below is the guide on how to jailbreak iOS devices running on iOS 4.3.3 using RedSn0w. This jailbreak is completely Untethered on iOS 4.3.3. Please make sure not to update to 4.3.3 if you rely on an unlock.


First you need to have the following things with you:

iTunes 10.2.2Redsn0w  for Windows [Download from Here]iOS 4.3.3 for iPhone, iPod & iPad [Download from Here]

Now follow the steps mentioned below:


1. Connect and Restore/Update your iPhone to iOS 4.3.3.


2. Once iTunes has completed the restoring/updating process, open Redsn0w.


3. Click the ‘Browse‘ button and select the iOS 4.3.3 you downloaded.


RedSn0w1 How to: Jailbreak iOS 4.3.3 Untethered Using RedSn0w [Windows]


4. You will see the screen below when the firmware has been verified.


RedSn0w2 How to: Jailbreak iOS 4.3.3 Untethered Using RedSn0w [Windows]


5. Now check ‘Install Cydia‘ and click Next.


RedSn0w3 How to: Jailbreak iOS 4.3.3 Untethered Using RedSn0w [Windows]6. Switch off  your device and plug it into the computer, Click Next.


RedSn0w4 How to: Jailbreak iOS 4.3.3 Untethered Using RedSn0w [Windows]7. Now Redsn0w will guide you through series of process to get into DFU mode. All you have to do is to follow the on-screen instructions as shown below.


RedSn0w5 How to: Jailbreak iOS 4.3.3 Untethered Using RedSn0w [Windows]8. Once you have followed the on-screen instructions, your device will reboot. Redsn0w will start uploading the new RAM Disk and Kernel. Just wait till you see the below screen.


RedSn0w7 How to: Jailbreak iOS 4.3.3 Untethered Using RedSn0w [Windows]Now your iOS 4.3.3 device has been successfully jailbroken (untethered). If you face any problem while performing the jailbreak process just write us in the comment section below, we will help you out.

More aboutJailbreak iOS 4.3.3 Untethered Using RedSn0w [Windows]

Sprint’s cool commercial for Nexus S 4G


Sprint's Cats commercial for Nexus S 4G


Verizon and Google announced 4G version of Nexus S for it’s LTE network which arrived on May 8th After a few weeks of launching Verizon just started a whole advertising campaign for Nexus S 4G. The 31 seconds features Cats using Google voice search and having Pure Google experience including filling the Internet with more cats. Let’s watch below the commercial Nexus S 4G Cats:
YouTube Preview Image


Wasn’t the Ad cool? In courtesy of YouTube the commercial has now over 85000 views and rapidly counting more. We guess Verizon to have a  successful campaign. Sprint’s Nexus S 4G also available for $150 in Best Buy.

More aboutSprint’s cool commercial for Nexus S 4G

Secure your Facebook Account in a better way by using “Login Approvals”

Security issues are becoming serious issues specially over the internet, as we know what happened with the Sony PlayStation Network and they guys are still try to rehabilitate their Network and Qriocity services of Sony are now back online after a security break potentially leaked millions of users’ personal information. And if we talk about the Facebook, the worlds’ most popular social Networking website is trying to prevent unauthorized access to users’ account. Yes this tool is known by the name of Login Approvals and it means nobody can access your Account on a unauthorized computer. Now the question is what are the Authorize and unauthorized computers? The computer on which your Account is opened once become authorized computer while for the rest of computer you will have to enter a special code that Facebook will send you via text message.

Login approvals is a Two Factor Authentication system that requires you to enter a code we send to your mobile phone via text message whenever you log into Facebook from a new or unrecognized computer. Once you have entered this security code, you’ll have the option to save the device to your account so that you don’t see this challenge on future logins.

As more individuals and businesses turn to Facebook to share and connect with others, people are looking to take more control over protecting their account from unauthorized access. Login approvals is a Two Factor Authentication system that requires you to enter a code we send to your mobile phone via text message whenever you log into Facebook from a new or unrecognized computer. Once you have entered this security code, you’ll have the option to save the device to your account so that you don’t see this challenge on future logins.


If you are so unlucky that you have lost your registered mobile phone then fear not, you can still access and change your settings:

How to Turn On Login Approvals for your Account?

First of all make sure that you have your Mobile Phone with you so that you can access your Account by that authentication code, that Facebook will send to your Mobile Phone

Go to Accounts settings under Account on Top right of Facebook

After that Click on Account Security and click on Change

Check the send me a text message and click on Save to save it.

So you are done with this new Awesome Security feature for your Facebook Account.

 

 

 

More aboutSecure your Facebook Account in a better way by using “Login Approvals”

Access Internet With using WiFi in WinXP

Access Internet Connection using WiFi in Windows XP. Suppose you have two or more laptops or PC with WiFi capabilities with you and you don't have any router, switch, hub, or any other mediator by which you can join them to access Internet Connection. To solve this situation you just need a single Internet port for one of your computer. Access Internet Connection using WiFi in Windows XP
Go ahead and read the article throughout to know how to do Sharing Internet Connection using WiFi in Windows XP Operating system. You need not to worry because you can share the Internet connection by using ad-hoc network anyhow.

How To Access Internet Connection using WiFi in Windows XP
First, you need to choose one of the available pc or laptop computer as a 'server'.Connect it to the Internet using the usual way.Next, open Control Panel>Network and Internet Connections>Network Connections.Open the Wireless Connection Properties.Change tab to Wireless Networks then click Add button.Under the Association tab, input your Network Name as you like.Clear the The key is provided for me automatically check box and select the This is a computer-to-computer (ad hoc) network check box.Fill in the Network Key along with the confirmation with a 13-digit password and then press OK.Press OK once again to close the dialog box.Now you have finished with the first computer.For the other computer, check for available wireless network. Usually a notification balloon will pop up and you can just simply click on it or just go to the Network Connections, right click on the Wireless Network Connection and click on View Available Wireless Networks. Select your network, and click connect button on the lower right corner. Input the Network Key and press connect once again.

If the first computer is using a PPPoE connection to gain access to the Internet don't forget to allow other computers to use it. You can do it by accessing the Network Connections, then open the properties of the connection. Open Advanced tab, check the Allow other network users to connect through this computer's Internet connection and set the Home networking connection to Wireless Network Connection.

Hope above stuff works for you, best luck.

More aboutAccess Internet With using WiFi in WinXP

PlugShare: Find EV Charging Points Using Your iPhone

Electric cars may be awesome.  Driving one, however, is hardly a dream, given how difficult it will be to "fill up" when that limited battery charge begins trickling down while you're in transit.  A new app for the iPhone called PlugShare might be able to help.

Developed by Xatori, Inc., the app is intended to give EV drivers a chance to help each other out by marking available charging points across a map.  It's not just dedicated to public plug-in stations, either -- some helpful fellow with an outlet in his driveway can help out fellow EV users by marking his location, too.

PlugShare uses a Google Map overlaid with icons that show places where you can charge.  The map display is simple and straightforward, with different icons used for varying types of charging spots: standard household plugs, privately owned J1772 stations, and public and commercial charging points.   You can navigate using the map, as well as  search by zip code or address.

Tapping on an icon shows the listing for it, which displays the address and station type.  From there, you can simply tap on a button to get on-map directions from where you currently.  There's no facility for adding pictures of the place, though, which could have been helpful.

I don't drive electric, so PlugShare isn't of much use for me.  If I did, though, this app will be a definite addition to my iPhone, since it does the job as required.  Plus, it's free, making for a really solid value proposition.

[iTunes]

More aboutPlugShare: Find EV Charging Points Using Your iPhone