Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras eu viverra sapien. Pellentesque pharetra iaculis dui non varius. Suspendisse diam erat, ornare sit amet felis non, accumsan faucibus nisl. Sed imperdiet ligula non nisi tincidunt, quis fermentum neque ultricies. Pellentesque quis lectus in magna fermentum auctor sed eu massa. Cras pellentesque condimentum orci, nec feugiat augue iaculis sed. Vivamus a mollis nibh, sit amet volutpat mauris. Praesent malesuada leo et dolor fermentum semper ac sed sem. Integer at nisl id ante varius pharetra. Vivamus sodales maximus felis non condimentum. Maecenas eleifend erat et nibh condimentum finibus. Cras arcu tortor, semper vel massa id, suscipit gravida erat.
Gavin Fielder
Portfolio and online resume
The interactive features of this site require javascript.

Contact

Current City (Removed)
Other Locations (Removed)
Cell (Removed)
Email (Removed)
42 intra gfielder
GitHub github.com/gavinfielder
LinkedIn (Removed)

Education

B.S. Applied Mathematics California State University - Chico, Graduated May 2018. 4.0 GPA. Minor in Computer Science. Side projects in Embedded Systems.
42 Cadet Level 8 (Comp.Sci) 42 Silicon Valley. www.42.us.org

Things I've Made

All Projects, Include Educational
Event Reminders for 42 Intra Events
42 Event Reminders
A teammate and I Implemented an event reminder system for Ecole 42 campuses. Email integration works on all campuses worldwide via Google; Slack integration is handled at request of the campus. Users can enable SMS notifications as well via Twilio. Automatically picks up new users in the 42 network seamlessly via the 42 API and applies default settings so that minimal maintenance is required. Currently deployed on AWS and seeking official app status with 42.
x
Programming, PHP, Web, API, SQL, HTML, CSS, Apache, AWS
WIP / In Review
June 2019
Inline Custom Emoji Selector Extension via Imgur API
MyImgurEmoji
A browser extension for Chrome and Firefox that lets users use personal Imgur albums as custom emoji sets on any site. Resolves image selection queries inline as a user is typing a message. Configurable to allow custom url wrapping per domain. Works on Mobile browsers as well.
x
Programming, Javascript, JQuery, Web, API
Security Encryption / Partial recode of openssl
ft_ssl
A partial recode of the openssl program. I implemented md5, sha256, and sha224 hashing algorithms.
x
Programming, Security, C (lang)
Production Git Server
gitserver
A secure production git server with various security features, data backup, and a web interface.
x
Programming, PHP, Web, Security, Networking, Apache, SQL, HTML, CSS, System Administration, Documentation
Docker Exercises
docker-1
A set of exercises in the 42 curriculum in using docker for deploying applications and services.
x
Programming, Docker, Educational, 42
Custom Unix Shell
minishell
A simple interactive shell. Beyond the mandatory requirements, I added a source builtin for script processing and the ability to execute variable commands.
x
Programming, C (lang), 42, Educational
Recode of UNIX ls
ft_ls
A recode of the unix shell ls command. Mine typically runs ~50% faster than the system ls. I also added a feature to limit recursion depth when used with the -R flag.
x
Programming, C (lang), 42
This Website
Portfolio and Online Resume
Built in vim only, using HTML, CSS, Javascript, JQuery. The introduction is a React component that works in at least chrome and firefox. CSS is responsive to height and width and has a separate print format. It is hosted on Amazon AWS S3.
x
Programming, Web, HTML, CSS, Javascript, JQuery, React, AWS
C Unit Testing Framework and Regression Tester
GüT
A unit testing framework in C as well as a test utility that integrates into a project's existing makefile. It aims to make regression testing quick and easy by providing the fewest number of steps between editing and testing, and the easiest possible experience in adding new tests. It provides prefix-based, wildcard-based, and range-based searching for tests by name so that new code can be quickly and concisely tested with two shell commands (make, test).
x
Programming, C (lang), Software Testing
Framework Builder for New Projects
gframework
A php script that sets up a new project framework. The script sets up repositories, creates a makefile if appropriate, adds external libraries, manages .gitignore, and starts the project as a hello world. For C projects, it also provides the option of including my GüT unit testing framework.
x
Programming, PHP
eCommerce Book Trading Site
42 Book Exchange
An ecommerce site where users buy and sell their used books. Each user can list items for sale, order items from others, and see their orders waiting to be fulfilled. Built as a 2-day challenge for me and a randomly assigned partner to build a functional ecommerce site.
x
Programming, PHP, HTML, CSS, 42, Web
Regression Testing Utility for 42 ft_printf
PFT
A configurable regression testing utility for the 42 gateway project ft_printf. It is now the preferred testing utility for the project at the Fremont campus and is also popular on the Moscow campus. It boasts a framework capable of one-line unit tests that are modular and can be queried for test runs by name, category, wildcard search, or numeric range. It also includes a debug mode, a leaks test, and tracks the most recent pass/fail of each test to make effects of code change clear to the developer. I actively maintain this project and its documentation on github.
x
Programming, C (lang), Software Testing, 42, Documentation
Recode of the libc printf
ft_printf
One of the major early projects at 42, a recoding of the libc printf with at least the options %d, %i, %u, %s, %c, %p, %x, %X, %o, and at least the optional flags 0, ' ', +, -, #, hh, h, l, ll, L, precision, and field width. In mine I also included the arbitrary argument selector ($), unix terminal output formatting with colors and text decoration using keywords (eg %{green underline}), and added two additonal specifiers, %m and %b, to print a specified number of bytes of arbitrary memory space in hexadecimal or ascii (%m) or in binary (%b). I also implemented dprintf, sprintf, snprintf, asprintf, and added my own sbprintf (stringbuilder printf--this stringbuilder being part of my personal C library) as well as the variadic versions (v-) of each of these.
x
Programming, C (lang), 42
Mar 2019
Big Integers and Arbitrary Precision Floats Library
ftbi
An implementation of big integers including all basic math operations including modulo and power. An implementation of arbitrary-precision floating point representation. Built for quick conversion to ascii rather than efficiency.
x
Programming, C (lang), Mathematics, Educational, Documentation
Anonymous Chat Server
DGram Chat
I wrote a chat server (and terminal-based client) that uses anonymous, connectionless sockets. Users can change their username and their message display style, which is propogated to all connected users.
x
Programming, C (lang), 42, Web
Randomized Bench Tester for 42 get_next_line
GNLRollingBencher
This is a tester for one of 42's early projects get_next_line. The project itself is to write a generalized readline function. The tester generates randomized input files of varying size, line length, content, and other characteristics, and compares an invocation of a validated function against the user's own function. Randomized testing is useful for this project because the project tends to involve hard-to-find edge cases that are implementation-dependent.
x
Programming, C (lang), Shell, 42, Software Testing
Randomized Bench Tester for 42 fillit
Fillit Randomized Bench Testing
This is a tester for one of 42's early projects fillit. The project itself is an algorithmic tetris solver. The tester makes use of a python script (not mine) that generates random valid input, and compares program output between a cadet's own fillit and various other validated fillit projects. Also included is a timing bencher that compares execution time between a cadet's own fillit and various other validated fillit projects.
x
Programming, C (lang), Shell, 42, Software Testing
Backend SQL and Middleware Development in WCF
Simple Data Server
A web app that interfaces with a separately-deployed SQL server via WCF middleware service. A personal project for my own education that used MVC architecture across 3 separate deployments.
x
Programming, C#, ASP.NET, SQL, SQL Server, AWS, WCF, .NET, Educational, Documentation
Japanese Mahjong app for iOS/Android (WIP)
Momogariya Mahjong
Mahjong is a 4-player tile game. I implement the Japanese variant of this game. I began this project in my spare time last year; the underlying code base is largely done and I was working on the algorithms the AI will depend on. I plan to go back to this project in the future when I have more time.
x
Programming, C#, Unity, Mobile, Game Development
MVVM Architecture Implementation in WPF
CaseConverterMVVM
An educational exercise that implements MVVM pattern in a simple WPF application. This app lets the user input a string in pascal case, camel case, or any string of words separated by spaces. It then converts the string to the other two structures. I put this together both as a WPF/XAML refresher and to learn MVVM.
x
Programming, Educational, C#, Winforms, WPF, .NET
SQL-Based Tech Tree Editor for Game Development
TechTreeEditor
This is a windows forms tool that manages a set of tables in a database that represents a tech tree for a game. It includes a basic interactive graphic visualization of the local neighborhood of the selected node. I created this for a particular game I'd been working on for some time, and it is useful to store this game's tech tree as a database because the game is designed for a large and complex tech tree that could use a dbms's validation features to ensure integrity and consistency. The database and its procedures ensure normalization to 4NF.
x
Programming, C#, Winforms, .NET, SQL, Game Development
Fridge/Freezer Monitoring System
FridgeFreezerMonitor
A monitoring system for a refrigerator or a freezer that sounds an alarm when either the temperature rises above a specified threshold or the door is left open. This project was created as a final project for Digital Systems Design at CSU Chico.
x
Programming, Embedded C, Embedded Systems, Documentation
Dynamical Systems VR Simulator
DynamicsLab
A dynamical systems numerical solver and VR simulator that accepts user-defined systems of differential equations and renders or animates their behavior. VR Capable, tested on the HTC Vive. Supports nonlinear, nonhomogenous, and non-autonomous systems and includes support for user-defined parameters. Includes visualization of 3D vector fields that update in real time, and youtube-like playback of a mathematical simulation. Built as an educational tool for students of differential equations or dynamical systems. Supported by CSU Chico Computer Science and Business departments and in consultation with CSU Chico Mathematics department.
x
Programming, C#, Unity, VR, Mathematics, Documentation
Robotic Unmanned Bicycle
The Unmanned Bicycle Project
I was part of an R&D team creating an unmanned bicycle with the goal of getting an electric bicycle to follow a preprogrammed course. My major contributions were sensor filtering and data transfer protocols for downloading test data. The sensor filtering I accomplished with a kalman filter using a derivative-projection predictive model. I also developed automated optimization scripts that adjust the values of the process noise matrix to achieve optimal filter results. This was a special research project with CSU Chico Electrical Engineering department, led by Dr. Choi <schoi13@csuchico.edu>.
x
Programming, Embedded C, Matlab, Embedded Systems, Mathematics
Traffic Light Controller
Traffic Light Controller
A simple embedded traffic light controller that outputs traffic signals based on sensor input, built as a finite state machine.
x
Programming, Embedded C, Embedded Systems
N-Dimensional Differential Systems Numerical Analysis Library
DLab-Math
The underlying math library for the DynamicsLab project; Can represent any ODE system up to 255 dimensions and numerically solve such systems using the Runge-Kutta method of order 4 at a specified time-step resolution. Includes dynamically expanding data structures to hold arbitrary-length solution data of any system dimensionality.
x
Programming, C#, Mathematics
RTS Game Engine
Hammer Engine
A couple years ago I had done some work on an RTS engine. It implements event-driven architecture that can handle scheduled events, timing mechanisms, nesting location structures, and some work on weapons. Since I've learned a great deal since I worked on this last, I would rather start over than go back and finish it, but it was educational at the time.
x
Game Development, C++
Software Help Database
Common Display System
Software help files for Common Display System, a new data processing software for weapon testing applications at China Lake Naval Air Weapons Station.
x
Technical Writing
2007-2008

Positions Held

Click to expand...
Sorted by start date, most recent first. May include volunteer positions and professional associations as noted. All references ok to contact. Current Filter: *Custom*
42 Cadet 42 Silicon Valley www.42.us.org Feb 2019 - July 2010 Studying software engineering in a nontraditional program.
x
Audit Assistant (temp) Snelson Companies www.snelsonco.com Nov 2018 - Feb 2019 Data verification for Accounts Receivable in pipeline construction management Katy Cooper, Accounts Receivable Supervisor. Office (360) 854-4206. kcooper@snelsonco.com
x
Warehouse Assistant (temp) Lindal Cedar Homes lindal.com Oct 2018 - Nov 2018 Pick and pack assistant, various labor in light industrial warehouse
x
Student Self-study and jobseeking Jun 2018 - Nov 2018 Recent graduate from CSU Chico, learned several new software technologies
x
American Institute of Mechatronic Engineers www.asme.org Nov 2017 - May 2018 Professional association via California State University - Chico
x
Pi Mu Epsilon National Mathematics Honor Society pme-math.org Apr 2017 - Present Professional association via California State University - Chico
x
Society of Manufacturing Engineers www.sme.org Aug 2016 - Aug 2017 Professional association via California State University - Chico
x
IT Support Assistant CSU Chico Classroom Technology www.csuchico.edu/classrooms Aug 2016 - May 2018 Supported integrated smart classroom systems. Included answering calls and responding to customer support requests, opening and escalating support tickets, diagnosing and resolving software and hardware issues, re-imaging PCs, performing updates and hardware maintenance. I also supported hybrid distance learning classrooms as an A/V teleconference tech and helped set up equipment for events. Nathan Methvin-Terry, Supervising Manager. Office (530) 898-6382. nmethvin-terry@csuchico.edu
x
Student California State University - Chico www.csuchico.edu Aug 2016 - May 2018 B.S. Applied Mathematics, Minor in Computer Science. Graduated May 2018. Dr. Vladimir Rosenhaus, CSU Chico Dept. of Mathematics. Office (530) 898-4108. vrosenhaus@csuchico.edu Dr. Sugki Choi, CSU Chico Dept. of Electrical Engineering. schoi13@csuchico.edu Kevin Buffardi, CSU Chico Dept. of Computer Science. Office (530) 898-5617. kbuffardi@csuchico.edu Dr. Ben Nolting, formerly CSU Chico Dept. of Mathematics. bnolting@gmail.com
x
Classified Instructional Assistant American River College Aug 2015 - Aug 2016 Classified Instructional Assistant in specialized mathematics program and tutor lab. Carol Culian, Tutorial Services Coordinator at American River College. (530) 344-6828. culianc@arc.losrios.edu
x
Cashier (temp) Sacramento City College Bookstore Aug 2014 - Sep 2014 Temporary help for fall rush period.
x
Math and Chemistry Tutor Sacramento City College Aug 2013 - Aug 2015 Various departments and programs.
x
Customer Service Associate Madison Foods madisonfoodsmt.com May 2013 - Aug 2013 Shipment unloading, stocking, customer service
x
Student Representative Student Associated Countil at Sacramento City College Aug 2011 - Nov 2014 Volunteer/community service position. Various positions including Senate Secretary of Public Relations and President of the Clubs and Events Board.
x
Student Los Rios Community Colleges Aug 2009 - May 2016 Various majors and campuses; transferred to CSU Chico with A.S. Mathematics.
x
Technical Writing Intern Lockheed Martin Corporation www.lockheedmartin.com Jul 2007 - Jul 2008 Developed a help database for a new data processing software suite in weapons testing applications and wrote SOP documentation for video teleconferencing equipment.
x
Stage Technician Various venues May 2006 - Aug 2010 Lights design and operation, sound operation, set construction, various else
x