More results...

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
post
page
Python IDE Dashboard
Author: Administrator

JavaScript: Working with Dates…

Working with Dates in computing can be quite tricky especially as we don’t always use the same date format around the globe. For instance in the UK dates are represented using the following format: dd/mm/yyyy. Let’s see how we could

My First HTML page!

Are you ready to set up your first webpage? All you have to do is follow the following 5 easy steps… Step 1: Getting Ready Go to your files (e.g. “My Documents”) and create a new folder called “My Website”

My First Python Game – Guess the Number

Sometimes the best way to get started with a new programming language is to do some reverse engineering. This consists of looking at an existing piece of code to find out how it works. So let’s look at the piece

JavaScript: When 2+2 = 22!

In our previous blog post we looked at how to retrieve values from various HTML form controls. For instance the following JavaScript code shows you how to retrieve the value typed in a textbox. See the Pen DwahE by 101

JavaScript: Accessing HTML Form Controls

Retrieving value from a Textbox: See the Pen DwahE by 101 Computing (@101Computing) on CodePen. Retrieving value from a Textarea: See the Pen tFJiI by 101 Computing (@101Computing) on CodePen. Retrieving value from Checkboxes: See the Pen asiqt by 101

JavaScript – How to read through a text file…

In this project we are looking at how to read through a text file using JavaScript. We will store a list of pupils in a text file. We are going to read through this list display its content on the

HTML Applications (.HTA)

Have you ever heard of HTA files aka HTML Applications? If you not here is what you need to know about HTA: HTA files look very similar to HTML files but when you save them you need to give them

Python Patterns

Here is a quick challenge to focus on the use of loops, nested loops and string manipulation using Python. Let’s look at the following code: for i in range(0,9): st="" for j in range(0,i): st = st + " "

How to create a bouncing ball in Scratch

Step 1 – Change your main sprite to a ball Step 2 – Add the following script to your sprite:  This tutorial is available as a pdf: How to create a bouncing ball in Scratch See how to create a

What’s an algorithm and what is pseudo code?

Check this video/animation from Ted Ed to understand what we mean by algothirm and pseudo code. Source: http://ed.ted.com/lessons/your-brain-can-solve-algorithms-david-j-malan#watch