GitHub / aaroncarsonart 12 Repositories
aaroncarsonart/Symbologica
A puzzle game about swapping tiles to create matching sets with a limited number of moves.
Language: Java - Size: 2.82 MB - Last synced at: 4 months ago - Pushed at: 4 months ago - Stars: 0 - Forks: 0

aaroncarsonart/QuickGame2
Another quickly developed Roguelike game, this time with more meat on its bones.
Language: Java - Size: 148 KB - Last synced at: about 1 year ago - Pushed at: almost 4 years ago - Stars: 0 - Forks: 0

aaroncarsonart/FractalMaker
Make fun fractals in Java!
Language: Java - Size: 10.7 KB - Last synced at: about 1 year ago - Pushed at: about 1 year ago - Stars: 0 - Forks: 0

aaroncarsonart/Vide Fork of atonement-crystals/Vide
An IDE for the Vikari programming language.
Language: Java - Size: 1.02 MB - Last synced at: about 1 year ago - Pushed at: about 1 year ago - Stars: 0 - Forks: 0

aaroncarsonart/Vikari Fork of atonement-crystals/Vikari
Vikari is an original, gradually typed, object-oriented programming language.
Language: Java - Size: 539 KB - Last synced at: about 1 year ago - Pushed at: about 1 year ago - Stars: 0 - Forks: 0

aaroncarsonart/JobApplicantsMatching
This is a team project for MTH 354, Fall Term of 2015 (WOU). The goal is to create a maximal matching between Applicants and Jobs. This is represented a matching network and solved using an application of the Network Flow Algorithm 10.2.4 and Theorem 10.4.5 from the "Discrete Mathematics, 7th Edition" by Richard Johnsonbaugh.
Language: Java - Size: 7.81 KB - Last synced at: about 2 years ago - Pushed at: over 9 years ago - Stars: 0 - Forks: 0

aaroncarsonart/MarkdownToHtml
This program, implemented in Haskell, is a functional programming exercise to parse text and replace markdown with HTML code. This takes a markdown file as input, and outputs a formatted html file. It only accepts a subset of valid markdown syntax. There may be some slight variations from the official versions of markdown.
Language: Haskell - Size: 0 Bytes - Last synced at: about 2 years ago - Pushed at: over 9 years ago - Stars: 1 - Forks: 0

aaroncarsonart/TarotRL
A Tarot-inspired Roguelike game I've been developing to remain polished on Java and to explore aspects of game engine development I find interesting.
Language: Java - Size: 372 KB - Last synced at: about 2 years ago - Pushed at: over 2 years ago - Stars: 1 - Forks: 0

aaroncarsonart/QuickGame
A quickly developed Roguelike game.
Language: Java - Size: 355 KB - Last synced at: about 2 years ago - Pushed at: over 4 years ago - Stars: 0 - Forks: 0

aaroncarsonart/JGameEngine
A top-down, 16 bit era inspired roguelike/rpg hybrid computer game currently in production in my free time. It is my perfect excuse to keep coding in Java and stay familiar with data structures and the Java Swing libraries, as well as work on some fun and challenging problem solving exercises.
Language: Java - Size: 10.4 MB - Last synced at: about 2 years ago - Pushed at: over 8 years ago - Stars: 0 - Forks: 0

aaroncarsonart/MandelbrotSetGenerator
A simple java program to play with generating Mandelbrot set images.
Language: Java - Size: 4.6 MB - Last synced at: about 2 years ago - Pushed at: over 7 years ago - Stars: 0 - Forks: 0

aaroncarsonart/KnightsTourProblem
A Java Swing application demonstrating animated visualizations of using a state-based search to solve the Knight's Tour problem.
Language: Java - Size: 71.3 KB - Last synced at: about 2 years ago - Pushed at: almost 6 years ago - Stars: 0 - Forks: 0

aaroncarsonart/SnakeGame
The classic Snake game, implemented in C++ for my (and your) pleasure to run in the terminal.
Language: C++ - Size: 26.4 KB - Last synced at: about 2 years ago - Pushed at: over 4 years ago - Stars: 0 - Forks: 0

aaroncarsonart/VampireNumbers
Generate a series of vampire numbers.
Language: Java - Size: 3.91 KB - Last synced at: about 2 years ago - Pushed at: over 4 years ago - Stars: 0 - Forks: 0

aaroncarsonart/NumericConstantApproximator
Approximate numeric constants such as Pi and Phi to arbitrary precision (and analyze the results).
Language: Java - Size: 499 KB - Last synced at: about 2 years ago - Pushed at: over 4 years ago - Stars: 0 - Forks: 0

aaroncarsonart/PriceComparisonTool
This is the Visual Studio Project for PriceComparsionTool, an ASP.NET MVC Web Application that lets you track prices for the products you commonly buy for each store you shop at. With this data, you can then see which stores have the best prices. You can also generate shopping lists for the current products you want to buy, and it will automatically sort by store the products with the best prices, so you can save time and money while you shop.
Language: C# - Size: 574 KB - Last synced at: about 2 years ago - Pushed at: almost 10 years ago - Stars: 3 - Forks: 2

aaroncarsonart/HiddenListForm
A multi-value, searchable form that allows a dropdown to appear with filtered search results based on what is typed. Each item can be added as a hidden input, visible to the user as a tag with a cancel button. Submitting the form submits each related tag to the associated name - so you can submit a dynamic list of values all with the same input name, and the user can clearly see what is and isn't being submitted.
Language: JavaScript - Size: 477 KB - Last synced at: about 2 years ago - Pushed at: almost 10 years ago - Stars: 1 - Forks: 0

aaroncarsonart/carduino
Carduino is an Arduino project written in C that operates a modified RC car. With a team of 2 others, we modified the car with an Arduino board and some rewiring so we can program our RC car to move with a predefined set of movements.
Language: Arduino - Size: 113 KB - Last synced at: about 2 years ago - Pushed at: almost 10 years ago - Stars: 0 - Forks: 1

aaroncarsonart/IdentityExample
An example of how to use the ASP.NET MVC 5 EF 6 Identity property properly
Language: XML - Size: 14.9 MB - Last synced at: about 2 years ago - Pushed at: about 10 years ago - Stars: 1 - Forks: 0

aaroncarsonart/PrimeNumberSieve
Example of the Sieve of Eratosthenes in C#, in both parallel and sequential.
Language: C# - Size: 113 KB - Last synced at: about 2 years ago - Pushed at: almost 10 years ago - Stars: 0 - Forks: 0

aaroncarsonart/RadixTreeSort
RadixTreeSort is a data structure/algorithm hybrid that sorts arrays of integers in parallel and sequential. Currently there are two language implementations: C# (sequential and parallel) and F# (sequential ?). In development by Peter Wallace and Aaron Carson at Western Oregon University, Spring Term 2015.
Language: C# - Size: 160 KB - Last synced at: about 2 years ago - Pushed at: almost 10 years ago - Stars: 0 - Forks: 1

aaroncarsonart/TentsNTrailsTesting
JUnit Testing for tentsntrails.azurewebsites.net, designed with Selenium and backed with the WebDriver.
Language: Java - Size: 36 MB - Last synced at: about 2 years ago - Pushed at: almost 10 years ago - Stars: 0 - Forks: 0

aaroncarsonart/arduino
Holds code for my Arduino projects.
Language: Arduino - Size: 375 KB - Last synced at: about 2 years ago - Pushed at: almost 10 years ago - Stars: 0 - Forks: 0

aaroncarsonart/ContosoUniversity
This is the Visual Studio Project for an ASP.NET MVC Web Application. It follows the tutorials series from http://www.asp.net/mvc/overview/getting-started/getting-started-with-ef-using-mvc/creating-an-entity-framework-data-model-for-an-asp-net-mvc-application to use MVC 5 and EF 6 to do cool stuff with C# and Databases.
Language: C# - Size: 652 KB - Last synced at: about 2 years ago - Pushed at: almost 10 years ago - Stars: 0 - Forks: 1

aaroncarsonart/GoogleMapsExample
An ASP.NET MVC application demonstrating basic functionality for using the Google Maps API javascript within a Razor View. The interesting code happens in ~/Views/Location/Index.cshtml.
Language: C# - Size: 516 KB - Last synced at: about 2 years ago - Pushed at: almost 10 years ago - Stars: 0 - Forks: 0
