How to be a coder 06-16-2013, 11:01 AM
#1
Introductions
Hello Diversebox and welcome to Recycle Bin. tutorial, where you will learn how to start on programming. This specific tutorial, is highly recommended for users who have no experience in programming. It's very basic this tutorial, and if you have some problems, please feel free to ask. If I however isn't responding your question, because I'm busy or something.
Those programming langues we will talk about today is:
What is a programming langue?
Coded language used by programmers to write instructions that a computer can understand to do what the programmer (or the computer user) wants. The most basic (called low-level) computer language is the machine language that uses binary ('1' and '0') code which a computer can run (execute) very fast without using any translator or interpreter program, but is tedious and complex. The high-level languages (such as Basic, C, Java) are much simpler (more 'English-like') to use but need to use another program (a compiler or an interpreter) to convert the high-level code into the machine code, and are therefore slower. There are dozens of pr
pogramming languages and new ones are being continuously developed. Also called computer language.
C
What is C?
C is a high-level and general purpose programming language that is ideal for developing firmware or portable applications. Originally intended for writing system software, C was developed at Bell Labs by Dennis Ritchie for the Unix Operating System (OS) in the early 1970s.
Ranked among the most widely used languages, C has a compiler for most computer systems and influenced many popular languages - notably C++.
Introduction and Basic C Features
Pointers, Arrays and Strings
File IO and command line arguments
Linked lists, binary trees, recursion
Finished all these? Well if your still into learn more about C click this.
C++
What is C++?
C++ is used to create computer programs! Anything from art applications, music players and even video games. Yes, many video games have been made in C++. Keep in mind though, just like you wouldn't be able to write a book in Spanish after taking a few classes, you won't be making any serious video games right off the bat. Programming, like many skills, takes time. C++ was created by a Dane named Bjarne Stroustrup.
Introduction and Basic C++ Features
Pointers, Arrays and Strings
File IO, command line arguments and intro to classes
Linked lists, binary trees, recursion
Inheritance and class design
Finished all these? Well if your still into learn more about C++ click this.
Python
What is Python?
Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development, as well as for use as a scripting or glue language to connect existing components together. Python's simple, easy to learn syntax emphasizes readability and therefore reduces the cost of program maintenance. Python supports modules and packages, which encourages program modularity and code reuse. The Python interpreter and the extensive standard library are available in source or binary form without charge for all major platforms, and can be freely distributed.
Table - Lessons
Finished all these? Well if your still into learn more about Python click This
HTML
What is HTML
The primary thing to keep in mind, the supermagic key, is that HTML is used for meaning and CSS is used for presentation. HTML is nothing more than fancy structured content and the visual formatting of that content will come later when we tackle CSS. You might find different approaches elsewhere on the web but HTML Dog focuses on best practice from the outset and getting into the frame of mind of doing things the right way from the start will lead to much better results in the end.
PHP
What is PHP
PHP was originally an acronym for Personal Home Pages, but is now a recursive acronym for PHP: Hypertext Preprocessor.
PHP was originally developed by the Danish Greenlander Rasmus Lerdorf, and was subsequently developed as open source. PHP is not a proper web standard - but an open-source technology. PHP is neither real programming language - but PHP lets you use so-called scripting in your documents.
To describe what a PHP page is, you could say that it is a file with the extension .php that contains a combination of HTML tags and scripts that run on a web server.
PHP Tutorial - Table of contents
Finished all these? Well if your still into learn more about PHP click this.
JavaScript
What is JavaScript?
Javascript can be thought of as an extension to HTML which allows authors to incorporate some functionality in their web pages. So now, whenever the user presses the SUBMIT button, you don't necessarily have to invoke a cgi script to do the processing. If it is something simple, you can do the processing locally using Javascript and give back the results. Javascript can also be used in a number of ways to spice up your page.
JavaScript REFERENCEDESIGNER.COM's tutorial
VB.NET
What is VB.NET
It's a computer programming system developed and owned by Microsoft. Visual Basic was originally created to make it easier to write programs for the Windows computer operating system. The basis of Visual Basic is an earlier programming language called BASIC that was invented by Dartmouth College professors John Kemeny and Thomas Kurtz. Visual Basic is often referred to using just the initials, VB. Visual Basic is easily the most widely used computer programming system in the history of software.
If you want to learn all about VB.NET, download the ebook.
Credits:
This thread is not made by me at all and the credits is going for all above, nothing belongs to me except posting it here and sharing it with you guys.
Feel free to request any thing and I will try to make them by my own or find some and give credits.
Hello Diversebox and welcome to Recycle Bin. tutorial, where you will learn how to start on programming. This specific tutorial, is highly recommended for users who have no experience in programming. It's very basic this tutorial, and if you have some problems, please feel free to ask. If I however isn't responding your question, because I'm busy or something.
Those programming langues we will talk about today is:
- C
- C++
- Python
- HTML
- PHP
- JavaScript
What is a programming langue?
Coded language used by programmers to write instructions that a computer can understand to do what the programmer (or the computer user) wants. The most basic (called low-level) computer language is the machine language that uses binary ('1' and '0') code which a computer can run (execute) very fast without using any translator or interpreter program, but is tedious and complex. The high-level languages (such as Basic, C, Java) are much simpler (more 'English-like') to use but need to use another program (a compiler or an interpreter) to convert the high-level code into the machine code, and are therefore slower. There are dozens of pr
pogramming languages and new ones are being continuously developed. Also called computer language.
C
What is C?
C is a high-level and general purpose programming language that is ideal for developing firmware or portable applications. Originally intended for writing system software, C was developed at Bell Labs by Dennis Ritchie for the Unix Operating System (OS) in the early 1970s.
Ranked among the most widely used languages, C has a compiler for most computer systems and influenced many popular languages - notably C++.
Introduction and Basic C Features
Pointers, Arrays and Strings
File IO and command line arguments
Linked lists, binary trees, recursion
Finished all these? Well if your still into learn more about C click this.
C++
What is C++?
C++ is used to create computer programs! Anything from art applications, music players and even video games. Yes, many video games have been made in C++. Keep in mind though, just like you wouldn't be able to write a book in Spanish after taking a few classes, you won't be making any serious video games right off the bat. Programming, like many skills, takes time. C++ was created by a Dane named Bjarne Stroustrup.
Introduction and Basic C++ Features
Pointers, Arrays and Strings
File IO, command line arguments and intro to classes
- File I/O in C++
- Type Casting in C++
- Classes in C++
- Inline Functions in C++
- Command line arguments in C++
Linked lists, binary trees, recursion
Inheritance and class design
- C++ Inheritance
- C++ Inheritance - Syntax
- Class Design in C++
- Understanding Initialization Lists in C++
Finished all these? Well if your still into learn more about C++ click this.
Python
What is Python?
Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development, as well as for use as a scripting or glue language to connect existing components together. Python's simple, easy to learn syntax emphasizes readability and therefore reduces the cost of program maintenance. Python supports modules and packages, which encourages program modularity and code reuse. The Python interpreter and the extensive standard library are available in source or binary form without charge for all major platforms, and can be freely distributed.
Table - Lessons
- Installing Python
- Very simple programs
- Programs in a file, and variables
- Loops, Loops, Loops, Loops...
- Functions
- Tuples, Lists, and Dictionaries
- Tuples, Lists, and Dictionaries
- Classes
- Modules
- File I/O
- Exception Handling
Finished all these? Well if your still into learn more about Python click This
HTML
What is HTML
The primary thing to keep in mind, the supermagic key, is that HTML is used for meaning and CSS is used for presentation. HTML is nothing more than fancy structured content and the visual formatting of that content will come later when we tackle CSS. You might find different approaches elsewhere on the web but HTML Dog focuses on best practice from the outset and getting into the frame of mind of doing things the right way from the start will lead to much better results in the end.
- Getting started
- Tags, Attributes, and Elements
- Page Titles
- Paragraphs
- Headings
- Lists
- Links
- Images
- Tables
- Forms
- Putting it all together
PHP
What is PHP
PHP was originally an acronym for Personal Home Pages, but is now a recursive acronym for PHP: Hypertext Preprocessor.
PHP was originally developed by the Danish Greenlander Rasmus Lerdorf, and was subsequently developed as open source. PHP is not a proper web standard - but an open-source technology. PHP is neither real programming language - but PHP lets you use so-called scripting in your documents.
To describe what a PHP page is, you could say that it is a file with the extension .php that contains a combination of HTML tags and scripts that run on a web server.
PHP Tutorial - Table of contents
- Introduction to PHP
- What is PHP - Very detailed
- Servers
- Your first PHP page
- Working with time and dates
- Loops
- Conditions
- Comment your scripts
- Arrays
- Functions
- Passing variables in a URL
- Passing variables with forms
- Sessions
- Cookies
- Filesystem
- Reading from a text file
- Writing to a text file
- Databases
- Create databases and tables
- Insert data into a database
- Get data from database
- Delete data from database
- Update data in a database
Finished all these? Well if your still into learn more about PHP click this.
JavaScript
What is JavaScript?
Javascript can be thought of as an extension to HTML which allows authors to incorporate some functionality in their web pages. So now, whenever the user presses the SUBMIT button, you don't necessarily have to invoke a cgi script to do the processing. If it is something simple, you can do the processing locally using Javascript and give back the results. Javascript can also be used in a number of ways to spice up your page.
JavaScript REFERENCEDESIGNER.COM's tutorial
- Introdutions to Java
- Your First Hello World Javascript
- Javascript Statements and Comments
- Javascript Variables and Operators
- Arithmetic and Assignment Operators
- Comparison Operators and if else
- Javascript switch statement
- Javascript Pop up Boxes
- Javascript Confirm Box
- Javascript Prompt Box
- For Loop
- While Loop
- Javascript Functions
- Javascript Break and Continue statements
- Conditional Operator ( ? : ) operator in Javascript
- Short operators += and *=
- Javascript Conditional AND and OR
- Javascript Break Statement
- Javascript Events
- Javascript Objects - Introduction
- Javascript Objects - Object Template
- Javascript Objects - Mehod
VB.NET
What is VB.NET
It's a computer programming system developed and owned by Microsoft. Visual Basic was originally created to make it easier to write programs for the Windows computer operating system. The basis of Visual Basic is an earlier programming language called BASIC that was invented by Dartmouth College professors John Kemeny and Thomas Kurtz. Visual Basic is often referred to using just the initials, VB. Visual Basic is easily the most widely used computer programming system in the history of software.
If you want to learn all about VB.NET, download the ebook.
- Download the ebook .Net for beginners here.
- Getting started with VB.net
- VB.NET forms
- Adding controls using the toolbox
- Adding a Textbox to the Form
- Visual Basic .NET and Properties
- The Text Property
- Adding a splash of colour
- Saving your work
Credits:
Spoiler:
C tutorials written by Alex Allain
C++ tutorials written by Alex Allain
Python tutorials written by steven thurlow
PHP tutorials written by HTML.net
Javascript tutorials written by Referencedesigner.com
HTML tutorials written by HTMLdog
VB.NET tutorials written byhomeandlearn
VB.NET ebook written by India Community Initiative
Shared on Hackforums by RecycleBin.
C++ tutorials written by Alex Allain
Python tutorials written by steven thurlow
PHP tutorials written by HTML.net
Javascript tutorials written by Referencedesigner.com
HTML tutorials written by HTMLdog
VB.NET tutorials written byhomeandlearn
VB.NET ebook written by India Community Initiative
Shared on Hackforums by RecycleBin.
This thread is not made by me at all and the credits is going for all above, nothing belongs to me except posting it here and sharing it with you guys.
Feel free to request any thing and I will try to make them by my own or find some and give credits.

![[+]](https://sinister.ly/images/modern/collapse_collapsed.png)










mile:
![[Image: dHJ4Beo.gif]](http://i.imgur.com/dHJ4Beo.gif)