Show Categories & Top Posts

Tutorial

Free wifi is everywhere. It may seem like a godsend if you stumble upon a free wifi network, but watch out. A wifi network can be easily created just to steal your information.

I’m going to show just how easy it is to setup a fake free wifi network to monitor all network traffic going through it. To do this you will need two network cards, one will connect to an existing wifi network and the other will rebroadcast it out as “free wifi”. I will explore two different methods of doing this, but both have the same end result. I will use a Mac for both, but the same thing can be performed on Windows or Linux.

This post is going to outline a bunch of tips and tricks to squeeze every last piece of performance out of a UITableView. In a nutshell, what affects your table is how much processing the device needs to perform for each cell requested. If you keep this to a minimum, you will have an extremely smooth scrolling experience.

I am writing this blog because i spent hours to make things work while i was trying to execute binary files from my PHP script. There are few things that we should keep in mind. 1. Executable permissions – When you try to execute binaries or any script from server make sure executable permission has been

Often I find apps where the developers have cut the exact images they need for buttons and other graphics, sometimes with the text on the buttons as well.

Recently I had a project design which required borders around each image displayed. To avoid overdraw I used a 9-patch image resource with a transparent center in which the image would be placed. This would theoretically avoiding overdraw completely. So after a quick session in photoshop I knocked a 9-patch, turned on “Show Overdraw” on my

Facebook login is a pretty popular and easy to use method to identify your users without requiring them to create an account and remember a password. At first, building this into your app may be confusing. This blog will outline the steps and order of operations needed to incorporate Facebook login into your app.

There are many ways to thread on iOS and Mac, each have their own advantages and disadvantages.

OpenCV is a massive computer vision library, just have a look at its index. It might be a good idea to bookmark that link too as I am sure you will want refer to it later on in your OpenCV projects. Getting started with such a big library can seem daunting to the uninitiated so

In a project I’m currently working on I needed to generate a PDF based on a bunch of information the user had entered. The PDF needed to be very fancy and have images and graphics all over the place to make it look really nice. Instead of drawing everything from scratch I used to some of the PDF libraries on iOS that allowed me to create a new PDF based on an existing one, then draw the dynamic content over the top. This even preserves the nice vectors and crisp text inside the original so it remains perfect when printing. This saved me a lot of time and kept the PDF exactly how the client wanted it.

When the standard keyboard is not enough a keyboard accessory is often a good solution. I am talking of the one commonly seen in web apps, allowing the user to go between fields and drop the keyboard. These are extremely easy to add, and require very little code. In your UITextField you need to set the inputAccessoryView. This can take any UIView subclass and will display just like a regular keyboard, all animations are handled for you.