Tutorial: How to Set Up a Raspberry Pi Web Server
Get notified when new tutorials are posted: People are doing a lot of cool things with the Raspberry Pi. One of the first things I thought to do was to see if I could make a Raspberry Pi web server. Being a web developer and overall geek I …
How to Learn C# Part 3 - Coding Basics
This tutorial is part of a series. You can see the other tutorials below: Beginning C# 1. Introduction 2. Namespaces 3. Coding Basics 4. Variables and Types 5. Selection Statements 6. Iteration Statements In this third …
How to Learn C# Part 2 - Namespaces
This tutorial is part of a series. You can see the other tutorials below: Beginning C# 1. Introduction 2. Namespaces 3. Coding Basics 4. Variables and Types 5. Selection Statements 6. Iteration Statements In the second …
How to Learn C# Part 1 - Introduction
This tutorial is part of a series. You can see the other tutorials below: Beginning C# 1. Introduction 2. Namespaces 3. Coding Basics 4. Variables and Types 5. Selection Statements 6. Iteration Statements Ok so a few …
Using Ternary Operators in C#
Most people don’t use ternary operators enough, or at all. I think it’s a better way of handling such expressions most of the time. For example: We have a small console app: using System; class Program { static void Main() { for …
How To Create an Ajax Drop Down Menu With PHP and MySQL
Get notified when new tutorials are posted: There’s no doubt by now you’ve heard of Ajax, it’s far from a new thing. We went from hating JavaScript in the late 90s / early 2000s to now having arguably more development in …
Tutorial: How to connect to MySQL with Python
The more I jump into Python the more I like it. This tutorial is about one of the more basic parts of Python - connecting it to a MySQL database. The reason I chose MySQL is purely because of ubiquity, I figure this will be the one people …
C# Tutorials - Introduction: .Net Architecture Basics
In the next few months, I’m going to be creating some tutorials on learning C#.Net, from the very beginning. Because of the close integration, the first part of this workshop will be about the .Net framework, so you can get a general …
An Introduction to Object Oriented Programming
Today I’m going to talk about Object Oriented Programming (OOP). This is the first in a series of articles that will aim to teach you more about OOP and how you can use it to develop better software. What we’ll learn with this …
Linux Tutorial: 5 Cool Vim Command Line Tricks
Like most “hardcore” Linux/Unix hackers I love Vi/Vim, and I’ve found there is no end to the things you can learn about Vim so I decided to add a few command line tricks that I just learned recently. I’m going to use …