Computer Programming Tutorials
Feature Writer Articles in Computer Programming Tutorials
|
|
How to Use a Form in a Perl CGI Web Page
Nothing could be simpler than adding a form to a Perl CGI web page, and if a programmer uses the Perl CGI module then they can easily process the information it contains
|
|
|
Display the Greek Alphabet with VBScript
The Greek alphabet cannot typed directly into a web page. Instead ASCII codes must be used. So, intead of having to remember 48 separate codes just use VBScript code.
|
|
|
How to Add Paypal to a Web Site
Paypal is a safe and secure way of receiving on-line payments from customers, and can be added to a web site with the minimum of time and effort.
|
|
|
A Windows HTA Tutorial
Windows HTAs are very simple to create, but can be made into powerful and useful tools. This short tutorial shows how to quickly obtain stock quotes from Yahoo! Finance.
|
Contributing Articles in Computer Programming Tutorials
|
|
Connecting to Databases with Perl
While creating a simple table viewer using Perl, programmers will be able to understand how to connect to MySQL databases and run queries to extract data from tables.
|
|
|
Tips for Complex Programming Assignments
Many beginning programmers rush into coding programs without proper planning or documentation, successful programmers will ensure they map out their logic coherently.
|
|
|
How to Make a Link
Making a link in your text can enhance the online reading experience, when done correctly. Explore the linking options that can make your work more informative.
|
|
|
Introduction to Operators in C/C++
Introduction tutorial for C and C++ programmers detailing how the various unary and binary operators work, and the effects that using them can bring.
|
|
|
Implementing Markov Chains
Tutorial showing how to implement Markovian Linked Lists (Chains) based on examples from the game development industry for programmers and developers of all genres.
|
|
|
Self Managing Linked List in C++
A simple application of C++ programming using the example of a linked list that can add to either end and insert nodes without a container class.
|
|
|
Two Ways to Sort a C++ Linked List
Study of the application of insertion sorting and normal post-list creation sorting and the prerequisites, advantages and disadvantages of both techniques using C++ code
|
|
|
Program for Swapping Integers in C
An article and sample program covering the specific use of pass by reference in swapping integers using the C language; program swaps 2 integers from the command line.
|
|
|
MySpace HTML Tutorial Formatting
A basic HTML text formatting tutorial for MySpace users, showing how to use simple bold, underline and italic tags as well as changing text color, style with font tag.
|
|
|
Sending Email with SMTP AUTH
Tutorial showing use of WinSock programming to authenticate with an SMTP server, compose and forward an email message with error checking.
|
|
|
Programming Graphics in BBC BASIC
In which we learn how to set colors, using GCOL and COLOR, create Teletext style block graphics, and draw simple line drawings with other graphics commands in BBC BASIC.
|
|
|
Making Sounds with BASIC Programs
An article describing the way that BASIC can be used to produce sounds of varying complexities - from single notes to chords, and envelopes allowing instrument simulation
|
|
|
Types and Variables in BASIC
Article covering the use of data types and variables in BBC BASIC programming, including integers, arrays, strings, local and static variables, as well as structures.
|
|
|
Condition Testing BASIC Programs
Part of the Learn to Program with BBC BASIC tutorial, this concentrates on decision making and condition testing using the IF THEN ELSE and ENDIF keywords.
|
|
|
Flow Control in BASIC Programming
An introduction to flow control in programming, including the use of GOTO and GOSUB, with some good reasons why, and why not, to use these to change execution sequence.
|
|
|
Writing PROCedures in BASIC
Using blocks of code, called procedures in BBC BASIC programming is a little different from C, Visual Basic, and other languages. They are, however, powerful and useful.
|
|
|
Counted Loops in BASIC Programming
This article introduces the concept of counted (for) loops in BBC BASIC programming, with several examples, and some possible pitfalls.
|
|