Home » How - To / Tutorial » Archive by category "Programming"

Why You Should Create Grids With PostCSS-Ant ?

postcss-ant

This article will show you how to use PostCSS function to help you create the grid system you’ve always wanted. Flexbox is a great tool for reducing CSS bloat, and has some sugar built in to deal with things like source order and alignment. But it doesn’t offer...

Build A Progressive Web App Using Service Workers

pwa-app-reddit-latest-post

Native mobile applications have set a high benchmark for the web by providing a rich and reliable internet experience for users. However, in terms of discoverability, the web has been the undefeated leader for over a decade now. With more and more browser vendors showing...

Android Studio: A Platform for Android Development

Android studio

According to IDC, globally, Android’s share of the smartphone market is about 45 per cent. The best part is that Android is open source and learning it is not at all difficult. Students and professionals want to, at least, know its basics. There are many...

Characteristic of Python Lists

Basic Operators in python

A list is a type of data that can be written as a group of items separated by commas. The objects included in a list do not have to be of the same data type. It is considered as the most versatile variable type in...

Variables and Types – Python Programming

Basic Operators in python

The Python language is heavily object-focused, and is not “typed statically.” The programmer doesn’t have to specify variables before he can use them, or define their type. We can say that each variable in Python is a standalone object. This article will discuss some of...

Basic Operators in Python Programming

Basic Operators in python

An “operator” is defined as the element that can modify an operand’s value. In this example: 3 + 6 = 9, the operands are 3 and 6 while the + symbol is called the operator. This Article will focus on the fundamental operators used in...

Creating an Audio Player with Swift

iOS Swift Audio Player

You will learn how to create an audio player with Swift, comprising of a play button, stop button, and a slider for volume adjustment. We will begin by adding an audio file to the resources of the project. If you do this, any audio format...

Create Animations in Swift Programming

iOS Swift animation programming tutorial

With Swift, one can create an app with animations. This can be achieved as follows: Container View Transitions If you want to perform an animated transition between views, perform this transition in a parent container. In the example below, we are going to perform an...

How To Use Objective-C Classess in iOS Swift

Objective C Class in Swift iOS Programming

You might need to use of the objective-C classes in Swift. This is possible. Just do the following: Add .m (Objective-C implementation) This file, that is, a .m one, should be added to the class and named CustomObject.m Add the Bridging Header During the addition...

Connect your apps to iTunes Search API

Swift Program iTunes Search API

In this tutorial, you will know how to connect to the iTunes search API using Swift, download the JSON results, and parse them to the dictionaries. This information will then be used to populate the table views. A click event will then be added to...