< Browse > Home /

Programmer’s Notepad

September 1st, 2008 | No Comments | Posted in Development Tools by Diego | - [Full Entry]

An excellent alternative to Notepad, Programmer’s Notepad offers a versatile programming environment.

Programmer’s Notepad Features

Programmer’s Notepad allows you to create multiple file types and provides syntax highlighting for a great variety of languages such as C++, PHP, HTML, and so much more. You can also create and manage projects. You can open multiple files in Programmer’s Notepad and they’ll appear as tabs. You can create coding templates, create themes, tags, scripts, and so much more.

Programmer’s Notepad Features
Programmer’s Notepad Screenshots
Read more »

Start Programming in C++

June 3rd, 2008 | 1 Comment | Posted in C++ by Diego | - [Full Entry]

Want to start programming in C++? No worries. There is nothing to buy. It also isn’t difficult to get started! Anyone can learn! Talk Binary offers a variety of tutorials to get you started on the right track and right away! We’ll also step through every step of the process so you can get started as soon as possible!

So what do I need to know to get started?

You can either program right away in Windows, or can download and install Ubuntu! It’s all based on preference. I’d recommend you to try both out first before you decide on where to start.

1. If you want a programming environment you can try out Linux Distribution Ubuntu and Install Dual-Boot Ubuntu on your computer so you may boot either Windows or Linux!

a. Then you should check out How to write and compile a C++ program in Linux. This tutorial will step you through the process of compiling a C++ program in Linux using the terminal.

2. If you want to try programming first in your Windows environment you should check out How to write and compile a C++ program in Windows using an IDE. Read more »

How to write and compile a C++ program in Windows using an IDE

May 31st, 2008 | 6 Comments | Posted in C++ by Diego | - [Full Entry]

In this tutorial I’ll show you how to write and compile a C++ Program using CodeBlocks in Windows. That’s right, Windows.

If you haven’t done so, download and install CodeBlocks

Using CodeBlocks to program Hello World

1. Open up CodeBlocks and simply click on “Create a new project”.

Codeblocks
Read more »

Getting Started for Programming

May 7th, 2008 | No Comments | Posted in C++ by Diego | - [Full Entry]

In this tutorial you will learn how and where you can get started programming right away! You can choose whichever method you prefer. I’ll be teaching you how to program in a later tutorial!

1. IDE in Windows
2. Installing Linux to program in that environment
3. IDE in Linux or Mac OSX
4. How to compile your code in an IDE, or a terminal in Linux.

Integrated Development Environment in Windows

An IDE provides you with the tools necessary to start programming right away whether it be on Windows or Linux! I’ll teach you how to get started with CodeBlocks for Windows. You may choose to use a different IDE of your choice.

CodeBlocks
1. Download CodeBlocks with the minGW compiler and install on your PC.

2. Once installed, Create a New Project and click on Console Application




Read more »

Programming in an IDE

April 21st, 2008 | 5 Comments | Posted in Programming by Diego | - [Full Entry]

What is an IDE anyways?

An IDE is an Integrated Development Environment which purpose is to provide the programmer a graphical interface consisting of a source code editor, compiler, build automation tools, and usually a debugger. Depending on the IDE you are using, you will see a variation of tools that will aid you while you program.

They can also be multi-platform so you may install them on Windows, Linux, or any other OS the IDE supports and yes, they may also be completely free of charge as well! Typically you will encounter IDEs that compile only one language, as well as other IDEs that compile more than one. The advantage? The IDEs focusing on one language may have more tools to support that one language.

Why an IDE?

It’s solely based on preference but I’ve been hearing many people recommending to learn how to use an IDE if you are serious about programming. Plus side of an IDE is you get a source code editor, debugger, build automation tools, and more all in one! In other words, some IDEs allow you to compile all your code with the touch of one button (F9? or clicking on Build and Run?) and allows you to see the result, the syntax, compiler errors, and a debugger all in one environment. If you compile with emacs or vim, you could possibly need to make a Makefile to compile and link your files, run it, and debug it all using different commands. An IDE is made to make your life easier.
Read more »