I’ve finally set up another blog here: http://noahs-other-blog.net/ This one will be where I store things that aren’t strictly related to engineering. I’ve already gotten one blog post made here: https://www.noahs-other-blog.net/2024/03/15/hello-world/ .
Category Archives: Programming
List Of Programming Project Ideas.
The best way to learn to program is to work on projects, so here’s some ideas for projects for beginners, intermediate, and advanced programmers. Remember: it doesn’t matter whether or not you finish these projects. What matters is what you learn along the way. If you have any ideas for things to add to this list you can leave a comment with it.
Pseudo code (good for warm ups):
- Write a procedure for a made up assembly language that blinks a light on and off.
- Write a procedure for a robot that has it replace a tire on a car.
- Create a finite state machine diagram for a mobile robot that finds a red ball and returns it to the robot’s charging location.
- Write a procedure for sorting a given list of numbers from least to greatest.
- Write the pseudo code for a self-driving car that can go around the block.
- Write a procedure for a computer chip that opens a window when it receives a radio signal from a button.
- Do some research on how ants in an ant colony behave (basically how ant colonies work) and come up with the pseudo code for a robot ant that will work with other robot ants to try and act like an ant colony.
Assembly:
- A program that exits with return status 0
- A program that prints “hello, world”
C/rust/zig:
- A Linux kernel driver for a USB button.
- A C standard library that has memory allocation using the buddy algorithm.
- An arduino program that blinks an LED.
- An arduino program which turns on a motor which closes or opens a window based on the temperature.
- A program that uses loops to print out the lyrics to 99 bottles of beer on the wall.
Golang:
- A library that parses xml concurrently.
- A Simple web server that serves up one html page.
- A web server that serves up all files in the current directory.
- A concurrent pipeline that reads in MNIST samples and uses image magicke to turn them into files, and maybe apply some optional filters.
- A concurrent system that runs dijkstra’s algorithm.
- A web server that uses youtube-dl to download youtube videos automatically, save them, and play them back to whoever owns the server.
- A program that uses concurrency, and image magicke to automagically fix the gamma settings for a huge number of image files in parallel.
- A reddit scraper.
- A program that takes in a list of urls from standard input and (in parallel) checks each of them to see if their servers are up, and the prints to standard output the names of any that are not responding.
Prolog:
- A script that helps you pick out parts for a PC.
- A simple package manager using an sqlite library.
- A script that lets you access firefox web history and use readln to issue queries about it.
- A script that acts as a pharmacist.
- A script that checks the school schedules of a student for overlapping classes.
- A script that extracts all links from an html page (note: you will need a library for this).
Haskell:
- A program that takes an integer and tells you if the integer is prime using a parallelized brute force method.
- A password cracker that uses the Control.Parallel.Strategies library.
- A program that takes in an adjacency list as a CSV file and spits out an adjacency matrix.
- A program that runs K-means image segmentation on it’s input using the accelerate library for GPU acceleration.
- A neural network library that uses dependent types, and the accelerate library.
- A program that can lazily generate all possible tweets.
- A program that lazily generates and prints the fibonacci sequence (note: you will have to set stdout buffering to line buffering).
Bash:
- An rsync wrapper that backs up your files using snapshot backups.
- A program that finds duplicate files in a directory and makes them the same file using hard links so as to save space.
- A script that grabs a random line from a given file.
- A script that renames every file to include the date and time it was modified in the file name.
- A script that uses a regular expression to check if a given input is a valid phone number.
- Write a script that goes through a directory and all of it’s sub-directories and deletes all images.
Lex and Yacc:
- An XML parser.
- A C compiler.
- A programming language that has all the features you wish other programming languages had.
- A parser for the wavefront obj file format.
Erlang:
- A simple web forum using the yaws program.
- A gopher server.
- A bank website.
- A server that can serve up videos.
- A Debian package server using this specification.
- A mastodon web server.
- A web server that says “Hello, world” via a web page (use yaws to make this easier).
- A server that takes in lines from over a network connection, shuffles them, and then sends them to a different specified connection (note: you should assume that not all the lines being given to the server can fit in the memory of just one computer).
Python:
- An XKCD comic downloader.
- A script that uses AI to draw googly eyes on images.
- A program that simulates a galton board, and prints out how often each pocket gets a ball in it.
- A calculator program with a GUI using a GUI library.
- A program that prints out the lyrics to 99 bottles of beer on the wall using loops.
- A program with an interactive prompt that asks the user what it should do and makes function calls to various things it can do (like “remove [filename]” or “tell me the time” or something).
- A program that asks for two numbers, and then calculates the length of the hypotenuse of a right triangle with those two numbers being the side lengths (hint: use the pythagorean theorem).
- A program that uses objects to keep track of cars for a dealership.
Lisp:
- A script that takes in a list of birthdays and the names of people associated with them, checks the date, and says happy birthday to anyone who’s birthday is on the current date.
- A script that takes in a list of numbers and tells you how often each number shows up.
- A program that takes in a list of numbers and returns the average, and standard deviation of those numbers.
Octave/Matlab:
- A script that uses rotation, scaling, and translation matrices to trilaterate the position of a thing given it’s distances to four given points in 3D space.
- A neural network script.
Pytorch:
- A script that can read a text file and summarize it using transformers.
- A script that can look at a picture of an injury or something and provide a diagnosis using AI. Bonus points if you can write a script that automatically scrapes images from the web of injuries as your data set.
Projects where you’ll have to decide on your own what language to use:
- A program that reads in a wavefront obj file and displays it in a window, and the user can rotate the model around to see it from different angles.
- A twitter client that uses ncurses.
- A quick script or program that can generate the sound of what hydrogen should theoretically sound like when excited.
- A remote controlled differential drive robot (note: this will require some knowledge of electrical engineering).
- A program that argues with the user (bonus points if it uses AI).
- Add a new feature to an existing project on github.com
- A series of programs that enables you to create a genetic breeding model for machine learning.
- A program that reads an image from a file and blurs it using the image magick library.
- A web server that accepts images uploaded from the user and let’s the user view them afterwards.
How I Made A Wheely Robot.
So far I’ve had a policy of only making updates when I’ve completed a project, but instead I’m going to post an update of a project that’s still in progress since it would take so long to finish. Introducing: the wheely robot.
Note that I’m not exactly the best photographer yet, but at least you can figure out that it’s a robot.
So what does it do? Well so far I’ve been working on it as a sort of experiment on how to program robots.
A problem that I’ve run into before with earlier attempts at building robots was that I might tell the robot to move forward some distance (like for example: one meter), and it would move forward, but if something was in the way, or its wheels didn’t get as much traction as it thought it was getting then it would stop too soon, and not realize that it hadn’t actually reached the goal.
The problem at its core was that the earlier robots weren’t aware of the kinds of the fact that when they try to do something, that thing might not have actually gotten done because of some kind of obstacle. That’s where the fancier kinds of programming come into play.
The first fancy programming trick is what’s called a “PID controller”. The idea is pretty simple: the robot tells its wheels to move forward at speed x, and there are sensors at the wheels that tell the robot how fast its wheels are ACTUALLY moving, and then that data goes to the computer which uses an algorithm known as the “PID controller” that adjusts to any variations in speed.
More info here:
https://youtu.be/ZhYi7x0rMoE?list=PLkHsKoi6eZnx9zMNsvL9ni7–2Lvyb88d
This is a pretty simple way to adapt to problems, my robot uses wheel encoders to figure out where the wheels are, and they aren’t a very good way to get sensor feedback which is why I’m working on getting more sensors for it.
I’ve also added multiple computers onto it. One handles sensor data since there will be so many sensors on the robot in the future, and one controls everything. The two communicate via i2c. With fancier programming techniques I could someday get it to use behavior-based robotics to go around obstacles (more info here, and here).
I’m also keeping a github repo for it here which will hopefully have some useful info (note: I’ve made changes to it recently which I haven’t tested). I’ve also setup an amazon wish-list here that has (almost) all the parts I used (it as of this writing doesn’t contain the screws that I used to screw everything in).
I’m hoping to someday make this go throughout my apartment and pick up things off the floor for me before a vacuum robot goes through.
Quick update: UART video.
Quick Update: A Government Site Providing Info For Programming Various Math Functions.
I’ve just found this site which has info on how to implement various math functions in programming. I’d definitely recommend going through it after finding out what a Taylor series is (via Khan Academy) if you don’t already know.
Automake tutorial.
Here‘s a great tutorial on how to use “automake” which will help make your programs more portable.
A tutorial on Maxima
I’ve recently found out about a programming language called “Maxima”.
Maxima is a computer algebra system, which means that it can do algebra (as well as many other kinds of Math) for you. Here is a tutorial on how to use it.
Note that I admittedly haven’t read the tutorial as I already know how to use Maxima, but the tutorial is on its sourceforge page so I’m just going to trust it.
Great Programming Tricks
Here‘s a book about programming on Unix and Linux. This has some very handy tips for programming anything and designing things in general. In all honesty I haven’t finished the whole thing yet (it’s pretty long); however it still has some useful info.
The C programming language
Here‘s a great tutorial on programming in C. My recent post giving you that pdf book on programming in assembly briefly touched up on C programming.
How to program assembly
Here is a PDF book on how to use Linux in a much better way. You’ll need this to understand some of my later posts.
Edit: I forgot I should have first put up the PDF on how to use the Linux command line. Check the post after this one before reading this book.