Tag Archives: Programming

Weak points…. or are they?

Before we jump into the programming itself, let us learn some of the so-called weak points that you might be able to consider and improve on ( or even share) with others out there to make the platform a better one.
First is speed, the information that I might have come upon may be a bit [...]

Posted in Development, Internet, Programming Language | Also tagged , | Comments closed

Containers and Hashes

Containers is a term used to define arrays or tables for they are used to store variables which are then indexed to be able to retrieve data from them. Hashes on the other hand can be described as dictionaries or associative arrays which are also indexed along with all object references. Arrays are indexed using [...]

Posted in Development, Programming Basics | Also tagged | Comments closed

Container Creation

To initialize a container we will do the same steps showing code to support the things that have to be done. We create a table where we can add elements to the contents delete objects from either the beginning or the last entries and display an entry using the index or content on the index. [...]

Posted in Development, Programming Basics | Also tagged | Comments closed