mlshort
Software Engineer and dabbler in distributed algorithms, networking, multi-threading, STL and C++
Austin, Texas
Pinned Repositories
AETG2
Grad school, Software Engineering, Automated Combinatorial Testing for Software project. A set of parameters is identified that define the space of possible test scenarios. Then, combinatorial designs are used to create a test plan that “covers” all n-way combinations of the test parameters.
AssocDataCache
Grad school, Adv Computer Architecture, 4-way associative data cache project. A cache in the primary storage hierarchy contains cache lines that are grouped into sets. If each set contains k lines then we say that the cache is k-way associative. A data request has an address specifying the location of the requested data. Each cache-line sized chunk of data from the lower level can only be placed into one set. The set that it can be placed into depends on its address. This mapping between addresses and sets must have an easy, fast implementation. The fastest implementation involves using just a portion of the address to select the set.
Asteroids
Grad school Adv Game Development project. Implemented primitive physics engine with collision detection and thrust vectoring. Further integrated use of XBOX input game controller.
CNP_Protocol
Grad school, Computer Networks, multi-threaded client & server using custom network protocol. std::map used for persistent data store. scope-based locks used for synchronization.
HeapSort
Grad school, Algorithm Analysis, Heap Sort project. Heap sort is a comparison based sorting technique based on Binary Heap data structure. It is similar to selection sort where we first find the maximum element and place the maximum element at the end. We repeat the same process for remaining element.
InstructionPipeline
Grad school, Adv Computer Architecture, Instruction Pipeline project. Pipelining is a technique where multiple instructions are overlapped during execution. Pipeline is divided into stages and these stages are connected with one another to form a pipe like structure. Instructions enter from one end and exit from another end. Pipelining increases the overall instruction throughput.
Keno
Grad school Algorithm Analysis Keno payoff calculator. Exports results into an Excel Spreadsheet using ole automation.
MagicMaze
Grad school Adv Game Development project - an extensible, flexible, SUD-style/text-based game space using an inheritance hierarchy of objects that exhibit polymorphic behavior and rely extensively on templated storage containers.
mlshort.github.io
PowerSet
Grad school, Theory of Combinatorics, Power Set implementation. Given a set 'S', the power set of 'S' is the set of all subsets of 'S'. Power sets are larger than the sets associated with them.
mlshort's Repositories
mlshort/AETG2
Grad school, Software Engineering, Automated Combinatorial Testing for Software project. A set of parameters is identified that define the space of possible test scenarios. Then, combinatorial designs are used to create a test plan that “covers” all n-way combinations of the test parameters.
mlshort/Asteroids
Grad school Adv Game Development project. Implemented primitive physics engine with collision detection and thrust vectoring. Further integrated use of XBOX input game controller.
mlshort/Keno
Grad school Algorithm Analysis Keno payoff calculator. Exports results into an Excel Spreadsheet using ole automation.
mlshort/AssocDataCache
Grad school, Adv Computer Architecture, 4-way associative data cache project. A cache in the primary storage hierarchy contains cache lines that are grouped into sets. If each set contains k lines then we say that the cache is k-way associative. A data request has an address specifying the location of the requested data. Each cache-line sized chunk of data from the lower level can only be placed into one set. The set that it can be placed into depends on its address. This mapping between addresses and sets must have an easy, fast implementation. The fastest implementation involves using just a portion of the address to select the set.
mlshort/CNP_Protocol
Grad school, Computer Networks, multi-threaded client & server using custom network protocol. std::map used for persistent data store. scope-based locks used for synchronization.
mlshort/HeapSort
Grad school, Algorithm Analysis, Heap Sort project. Heap sort is a comparison based sorting technique based on Binary Heap data structure. It is similar to selection sort where we first find the maximum element and place the maximum element at the end. We repeat the same process for remaining element.
mlshort/InstructionPipeline
Grad school, Adv Computer Architecture, Instruction Pipeline project. Pipelining is a technique where multiple instructions are overlapped during execution. Pipeline is divided into stages and these stages are connected with one another to form a pipe like structure. Instructions enter from one end and exit from another end. Pipelining increases the overall instruction throughput.
mlshort/MagicMaze
Grad school Adv Game Development project - an extensible, flexible, SUD-style/text-based game space using an inheritance hierarchy of objects that exhibit polymorphic behavior and rely extensively on templated storage containers.
mlshort/mlshort.github.io
mlshort/PowerSet
Grad school, Theory of Combinatorics, Power Set implementation. Given a set 'S', the power set of 'S' is the set of all subsets of 'S'. Power sets are larger than the sets associated with them.
mlshort/rosdistro-db
This repo maintains a lists of repositories for each ROS distribution
mlshort/vscode-antlr4
ANTLR4 language support for Visual Studio Code
mlshort/WiTE2_Manual
mlshort/Zelda1
Grad school Adv Game Development project. Object factory was implemented using curiously recursive template pattern (CRTP).