2016 - Online Free Computer Tutorials.

'Software Development, Games Development, Mobile Development, iOS Development, Android Development, Window Phone Development. Dot Net, Window Services,WCF Services, Web Services, MVC, MySQL, SQL Server and Oracle Tutorials, Articles and their Resources

Friday, September 2, 2016

Wednesday, August 31, 2016

MQTT 101 – How to Get Started with the lightweight IoT Protocol

Everybody talks about the Internet of Things nowadays. Increasingly affordable micro controllers like Arduino and Raspberry Pi are enabling ...
Read More

Tuesday, August 30, 2016

Changing App Store Seller Name

Changing your seller name on Apple's App Store is not a straight-forward process. There are several caveats and ways to accomplish a nam...
Read More

Monday, August 29, 2016

Localization in iOS apps made simple

Localizing iOS apps with the standard tools is tedious, especially when you use Interface Builder files. To resolve that, I have created a n...
Read More

Friday, August 26, 2016

iOS: Thoughts On AlamoFire - Swift’s AFNetworking Implementation

The HTTP protocol is synonymous with modern development. The experienced iOS developer understands and likely works with the popular protoco...
Read More

Designing for Television, Part 1

Welcome to the new Golden Age of television. Not only is there more great television being produced than ever before, but we also have more ...
Read More

Implementing MVVM in iOS with RxSwift

There are countless articles on MVVM in iOS, but few focus on what MVVM looks like in practice and how to actually do it. This is an article...
Read More

Simple ways to improve your application Architecture

I'm an Android app development rookie, with roughly four months of coding experience. And as I've grown more and more knowledgeable ...
Read More

iOS: How to store your users’ last network request for seamless app launch with Swift

I've got a pretty slow mobile connection, and often get frustrated when I have to stare at a spinner while I'm waiting for some app ...
Read More

Architecting Android with Data Binding and MVVM in mind

When Google announced Data Binding Library at last year Google I/O, I was thinking "oh man, this is the next big thing in Android devel...
Read More

A look at UIView Animation Curves (Part 1)

So… The design team just asked you to make an animation sexier and you went pale. What did they mean? The situation then got more awkward as...
Read More

Easy Animation with UIStackView

UIStackView leverages the power of Auto Layout by managing the layout of all the views inside. You can change property of UIStackView or its...
Read More

swift: Use auto-describing objects with CustomStringConvertible

It is also important to keep these logs as readable and understandable as possible. Wouldn't it be great if whenever we try to print an ...
Read More

Thursday, August 25, 2016

iOS : Delegates vs Observers

A well structured app consists of simple objects with well-defined responsibilities talking to each other. When you design an object, you mi...
Read More

iOS : How to use Vector images in Xcode

In these days, where there are a lot of devices with a lot of screen resolutions out there, working with images can be painful. iPad has a s...
Read More

Monday, August 15, 2016

Inversion of Control, Dependency Injection and Service Locator in C#

In this article, we will learn: What is Dependency Inversion Principle (DIP) What is Inversion of Control (IOC) What is  Service Locator? Wh...
Read More

Difference between Covariance and Contravariance in C# Generics

In this article, we will discuss: - Covariance in Generics - Contravariance in Generics - The difference between Covariance and Contravarian...
Read More

11 Must-Have Resources & Tools for Freelancers

Being a freelancer comes with added freedom, but also requires a lot of extra adulting that you don't quite have to do as an employee at...
Read More

HOW TO MAKE LOCAL NOTIFICATIONS IN IOS 10

I've written before about local notifications in iOS. However, Apple has changed all that starting in iOS 10. In versions earlier than i...
Read More

Objective-C vs Swift: what to choose?

There is an ongoing debate about choosing Objective C or Swift for new project when creating an iOS application. Many professional developer...
Read More

Machine Learning for iOS

WWDC16 just ended and Apple left us with new amazing innovative APIs. This year speech recognition, proactive applications, machine learning...
Read More

Apple Watch Home Screen UI Animation

Apple Watch is almost here and everybody is waiting to play with this nice new toy. In the last two keynotes, Apple showed us Apple Watch an...
Read More

Tuesday, August 9, 2016

iOS: How to implement partial and full page curl animation in iOS app

Hello friends, today in this tutorial I will show you, how to implement custom page curl animation on any UIView. You can also use this tech...
Read More

Monday, July 18, 2016

Storage device writes information atom-by-atom

The quest for storage devices that pack more information into a smaller space has reached a new limit, with memory that writes information a...
Read More

Stretching a image in iOS using colorWithPatternImage

We can do some image resizing to achieve this. Use this helper method to resize image and then use it in colorWithPatternImage method call. ...
Read More

Sunday, July 17, 2016

List of Fonts Available on the iPhone

How to use fonts in iOS UIFont *mainTitleFont = [UIFont boldSystemFontOfSize:14.0]; UIFont *subTitleFont = [UIFont SystemFontOfSize:14.0]; U...
Read More

Print all iOS fonts in Swift

Handy function that I always forget func printFonts() {     let fontFamilyNames = UIFont.familyNames()     for familyName in fontFamilyNames...
Read More

Saturday, July 16, 2016

How to remove extra empty cells in TableViewController, iOS - Swift

in your viewDidLoad() function add this line of code: tableView.tableFooterView = UIView() I guess you came to this post by searching simila...
Read More

Thursday, July 14, 2016

First Steps: Exploring .NET Core and ASP.NET Core

.NET Core and ASP.NET Core 1.0 are finally here, and in this post I'll show how to get started with these new tools using the command l...
Read More

How to Create an Xcode Source Editor Extension

Xcode is the main IDE (Integrated Development Environment) used by thousands and thousands of developers every day. It is an awesome tool, b...
Read More

Magical Error Handling in Swift

Error handling in Swift has come a long way since the patterns in Swift 1 that were inspired by Objective-C. Major improvements in Swift 2 m...
Read More

INJECTING CONFIGURATIONS IN RAZOR VIEWS IN ASP.NET CORE

This article shows how application configurations can be injected and used directly in razor views in an ASP.NET Core MVC application. This...
Read More

Credit card scanning for mobile apps

This repository contains everything needed to build the card.io library for iOS. What it does not yet contain is much in the way of documen...
Read More

SQL 2016 - New Features

SQL Server 2016 was (finally) released on June 1st, 2016. with an initial build number of 13.0.1601.5. Microsoft build SQL 2016 keeping lot ...
Read More

Building an Instagram Based Portfolio With Bootstrap

In this tutorial I am going to run through the process of creating the simple Instagram based portfolio as designed in a previous tutorial b...
Read More

Privacy and URL Schemes in iOS 9

As of iOS 9, third party applications are no longer able to query arbitrary URL schemes. Several third party applications, most notably Twit...
Read More