How to Execute HTTP POST Requests in Android

HTTP Post is part of a deprecated HTTP classes like org.apache.http and AndroidHttpClient as of Android 5.1. Migrate your code to the HttpURLConnection classes which includes Posting functionality. HTTP Post is used in Java to request that a specific web server receive and store data submitted within a request form. The data is submitted and … Read more

How to Convert Binary to Octal Number

Binary and octal systems are different number systems commonly used in computing. They have different bases — binary is base-two and octal base-eight — meaning they must be grouped to convert. This, however, sounds far more complicated than this very easy conversion actually is. Converting by Hand Recognize series of binary numbers. Binary numbers are … Read more

How to Start Programming in Assembly

Assembly programming is often a crucial starting point when computer programmers are learning their craft. Assembly language (also known as ASM) is a programming language for computers and other devices, and it’s generally considered a low-level variant when compared to more advanced languages that offer additional functionality. Once you’ve written the code, an assembler converts … Read more

How to Write an Algorithm in Programming Language

An algorithm is a set of steps designed to solve a problem or accomplish a task. Algorithms are usually written in pseudocode, or a combination of your speaking language and one or more programming languages, in advance of writing a program. This minHour teaches you how to piece together an algorithm that gets you started … Read more

How to Run Ruby Code

This minHour teaches you how to run your Ruby script in Windows, macOS, and Ubuntu or Debian Linux. To run a Ruby program, you’ll need to have Ruby installed on your computer. Although macOS and most Linux distributions come with versions of Ruby pre-installed, you’ll want to make sure you’re using the latest version before … Read more

How to Use SQL

SQL stands for Structured Query Language and was originally developed by IBM in the 70s to interact with relational databases. It is the common language for databases, remains fairly readable and it is relatively simple to learn the basics (although the language can be very powerful). Steps ‘SQL’ is usually pronounced ‘S-Q-L’ (Structured Query Language). … Read more

How to Make a Game on Scratch

Scratch is a popular visual programming language developed by MIT Media Lab as a children’s educational tool. It is available online, with desktop versions available for Mac OS, Windows, Chrome OS, and Android. This minHour teaches you the basics of how to make a game. Downloading Scratch Navigate to the Scratch Download page in a … Read more