Quantcast
Browsing all 195 articles
Browse latest View live

Python 2.7 – Fundamentals – Classes & Objects – Basic Theory

What Is a Class Classes are ways of grouping data together so that they can be manipulated in code as a single unit. Imagine various [...]

View Article


Geocoding An Address With Google Maps API

OVERVIEW One of the most useful features of Google Maps its ability to locate an address on the map. Geocoding is the process of taking [...]

View Article


Python 2.7 – Working with MySQL databases

Overview Most modern applications need to interact with a database some time or the other. The most common databases in use are MySQL if its [...]

View Article

Python 2.7 – Working with MS-SQL Server databases

Overview In the previous post Working With MySql databases  we saw how Python can be used to work with databases. This post is going to [...]

View Article

Excellent Guide To Keep Kids Safe On The Internet

I came across a great article which details the ways in which parents can keep their kids safe on the internet. This article is particularly [...]

View Article


PHP file_get_contents for UTF encoded content

One of the problems of file_get_contents() is that it messes up the data if the file contains special characters outside the standard ASCII character set. [...]

View Article

Setting up FTP for an Apache website under Ubuntu

Once you have set up a website under Apache, you would need FTP access to the website to be able to upload files. The steps [...]

View Article

Installing ImageMagick in Ubuntu from source.

wget https://www.imagemagick.org/download/ImageMagick.tar.gz tar xvzf ImageMagick.tar.gz cd ImageMagick-* ./configure make sudo make install sudo ldconfig /usr/local/lib

View Article


How to host an external domain with AWS Elastic Beanstalk on both http and https

OVERVIEW Here is the scenario that we are going to deal with: You have created a website which is running on Elastic Beanstalk. In my [...]

View Article


Setting root password for Mysql server on Linux

In some Linux installations, installing mysql-server does not prompt for a root password for mysql, thus creating the problem where you either run mysql under [...]

View Article

Setup Django with Python 3 in Ubuntu 18.x

1.Install Python3 and PIP sudo apt-get install python3 python3-pip Check Python version by typing python3 -V Check PIP version by typing pip3 -V 2.Install Django [...]

View Article

Running localhost On https Using mkcert

One of the biggest problems that web developers face is to run a website on their local machines under https. Using OpenSSL to generate a [...]

View Article

WebRTC Video Chat with Peer.JS and Node.JS

OVERVIEW We shall look at setting up a functional WebRTC VideoChat server using the PeerJS Library. The application will be running on Node.js on a [...]

View Article


Setup Your Own STUN/TURN Server using Coturn

OVERVIEW It is easy to find free STUN servers but there are no free TURN servers available. We are lucky that the people at Coturn [...]

View Article

Installing A Code Signing Certificate for Windows Applications

For executable applications created under Windows, it is often desirable to sign the executable with a code signing certificate. This helps end-users of the application [...]

View Article


Setup a Django 3 project with Bootstrap 4

OVERVIEW This post looks at how to create a Django 3 project app and incorporate Bootstrap 4 files into it. This also looks at how [...]

View Article

Get MacOS System Information in Objective C

If you need to find system information using Objective C , there is no single library or framework which provides all the information. Generally it [...]

View Article


MacOS Commands For signing Apps

Check if an app has been signed: Sign a pkg file: Check if a pkg has been signed:

View Article

Using MIDI with NAudio

This is a quick and small program in C# to get started with MIDI programming using NAudio. There are other libraries for .NET which can [...]

View Article

Redirect http to https in Tomcat under Elastic BeanStalk

If you want to redirect all HTTP requests to HTTPS , then this is something that is done at the server level; in this case [...]

View Article
Browsing all 195 articles
Browse latest View live