Web-Intern-Coding-Challenge
Web Intern Coding Challenge (Best Pizza Around Town) Completed by Brendan Baalke Configuration / Installation The Pizzeria site is hosted on GitHub pages and can be accessed via the link below: Pizzeria Run locally by downloading this repository onto your local machine. I have tested this project primarily with the Chrome web browser so if…
Network Data Transfer Tool (Piggy Project)
This project for my networks course at Western Washington University incorporated a large majority of C libraries including: #define WIN32 #define closesocket close #include <sys/types.h> #include <sys/socket.h> #include <sys/select.h> #include <sys/ioctl.h> #include <net/if.h> #include <sys/time.h> #include <netinet/in.h> #include <arpa/inet.h> #include <netdb.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <unistd.h> #include <getopt.h> #include <curses.h> #include <locale.h>…
Journey App
The above is a video of an app I built for a course I took during my undergrad studies at Western Washington University. Our course was focused on human-centered system design, and we were tasked with designing a system of our choice in groups of four. The project needed to follow a set of criteria that…
SpotnPlot
SpotnPlot is a game I have been working on for my indie game studio Xealous Studios. The game is designed around concepts of hacking. The key features are listed below: A GAME ABOUT HACKING FILES AND SELLING THEM ANONYMOUSLY TO BECOME THE WORLDS MOST NOTORIOUS CYBER PIRATE! ENJOY ENDLESS DIFFICULTY AS YOU DODGE VIRUSES, FIREWALLS,…
Boid Algorithm Threading
This was a project that our class was given in “Principles of Concurrent Programming”. I was very excited to start working on this project as soon as our professor showed us that we would be working with a GUI. I really enjoy threading different chunks of code to see the differences in performance and…
Buffer Bomb
The buffer bomb lab was a series of phases of machine code that I had to break. Each phase would require an exploit file to be inserted into the correct part of the stack so the bomb would break. The lab was essentially teaching us how to hack by using the debugger GDB and our…
Float-let
In CS247 my professor Aron Clauson had a project called ‘float-let’. We had to take an 8 bit floating point value in binary and separate it into its mantissa, exponent and fraction. The function we were to make had to take this value in as an argument and print out a base-10 rational value. The…