How to Overclock your Raspberry Pi
Do you want to safely overclock your Raspberry Pi? Here’s how you need to do it. There are a few articles out there on overclocking your Raspberry Pi, and I followed them but it didn’t work. So after some Googling and Stack …
A Cleaner Display of Your IP in Windows
If you’re like me, you constantly need your IP in Windows. When working with network interfaces and multiple servers, I find myself checking my IP a lot. I built a little utility for myself that only shows the IP addresses on the …
The Raspberry Pi Web Server Speed Test
So last week I showed how to set up a web server on the Raspberry Pi. Many people pointed out that Apache probably isn’t the best option for the Pi. So I decided to do a little speed test to see which server would be the fastest if …
How to Learn C# Part 5 - Selection Statements
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 part 5 of my …
How to Learn C# Part 4 - Variables and Types
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 part 4 of my …
Tutorial: How to Set Up a Raspberry Pi Web Server
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 figured it might be kind of fun to do, and …
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 …