December 25, 2015 1:12 pm
Published by Gerard Millares
Today we will be discussing how to declare and use variables in your Golang program. Let’s start by discussing the significance of variables in any programming language. A variable can be defined as a temporary storage location in the main...
Read More
December 23, 2015 12:21 pm
Published by Gerard Millares
In this blog, we follow up our previous discussion on Golang environment. After this class, you should begin creating simple Golang apps. To review, your Golang apps all your Golang apps will be organized around the workspaces. Workspaces are the...
Read More
December 21, 2015 10:12 am
Published by Gerard Millares
In this class, we’ll cover the basics that are necessary to get you started with Golang. By the end of this class, you should be in a position to set up your desktop environment ready to begin coding using Golang....
Read More
December 19, 2015 10:05 am
Published by Gerard Millares
A Brief Introduction to Google Go Programming Language and Why It’s Important Welcome to Essentials of Google Go—also known as golang—programming language. In this blog, we introduce you to the world of Go programming language and provide you with the...
Read More
December 4, 2015 6:41 pm
Published by Prasannika
#1) Java Originally developed nearly 25 years ago (yes, it’s that old), Java is among the most widely used and recognized programming languages in the world. From television and Blu-Ray players to Android smartphones and desktop computers, it’s used virtually...
Read More
November 30, 2015 8:01 am
Published by Gerard Millares
Understanding URLLIB in Python Web Programming Here we are going to learn about the urllib (stands for url library) in Python. ‘urllib’ is a very important Python internet module, often used in Python networking / Internet Programming. Whenever you have...
Read More
November 28, 2015 7:52 am
Published by Gerard Millares
In this tutorial we will learn about Limit, update and delete. LIMIT To understand the concept of Limit we make the following changes to the read_data_from_database() function as follows: def read_data_from_database(): sql = “SELECT * FROM example LIMIT 2” for...
Read More
November 27, 2015 4:23 pm
Published by Prasannika
Created by Rasmus Lerdorf in 1994, PHP is a server-side scripting language and general-purpose programming language that’s used primary in web development. According to Netcraft, it’s used on more than 244 million websites spread across 2.1 million unique IP addresses,...
Read More
November 27, 2015 7:31 am
Published by Gerard Millares
Welcome to the tutorial on Reading Data from SQLite. Reading data from the database is important in order to access and verify the details that have been stored in it already. We will be continuing with the same code that...
Read More
November 26, 2015 7:06 am
Published by Gerard Millares
Welcome to this tutorial on inserting dynamic data. In real time scenario data is always entered dynamically and that’s why programs are made. There is no point entering hardcoded data. To explain the concept we will create a function which...
Read More