Mutithreaded Sumation (GoLang)

This was my first attempt to write something that uses the simplicity of threading in Go using goroutines. The number of threads is determined in the program and the run time is calculated. The performance of Go is really shown off when I compared the times to a similar single threaded program written in Python. For the sum of 1 through 1 billion, Python’s time was measured in minutes, and Go took less then a 10th of a second. …

Posted on

HTML Link Grabber (GoLang)

This program takes in a web address as a command line argument. Then goes and gets that page and then prints out all of the links to other pages. While not all that useful, it was a good first step into web programming. Credit for this goes to Jack Canty’s website because I’ve never written anything like this. His can be found here. package main import ( "fmt" "flag" "net/http" "os" "io" "golang. …

Posted on

Drawings From Class

These are a few of my drawings from my classes while at Elizabethtown College, taught by Jeff Geib.

Posted on

Resume

Tucker Strausbaugh strausbaught@etown.edu Education Elizabethtown College: May 2015 - Elizabethtown, PA Bachelor of Science in Computer Engineering, ABET accredited GPA Overall: 3.32, Major: 3.39 Dean’s List in Fall 2013 and Spring 2015 2013 Faculty Service Award in Engineering & Physics Member of Sigma Pi Sigma, National Physics Honors Society Member of the Order of the Engineer Spring Grove Area High School: June 2011 - Spring Grove, PA GPA: 3. …

Posted on

About

Computer Engineer - Cat? Hi, I’m Tucker. I’m from south central Pennsylvania, where I went to high school in Spring Grove and was the section leader of the drumline and earned the name Tuckles. Recently I graduated from Elizabethtown College with a B.S. in Computer Engineering. Now I’ve moved to Lexington Park and work with NAVAIR. Hobbies Various electronics and programming projects Drawing and Photography Learning C++, Rust, and graphics programming Learning electric guitar and bass Interests PC Gaming (Starcraft, GTA, League of Legends, CIV VI) Music Cars, driving

Posted on