Travis MartinOct 6, 20236 min readMicroservices Architecture example Parking lot interview questionI plan on building the classic parking garage interview question. The end goal is deploying this microservices architecture example to a...
Travis MartinJul 8, 20222 min readGraph data structure and AlgorithmsI am just posting some information for mostly myself on how to quickly traverse graph and tree data structure since I tend to forget...
Travis MartinFeb 17, 20221 min readBash Script Command-line tool templateQuick post on how I start my shell scripts. I tend to follow a similar pattern when developing any script to automate any tasks from...
Travis MartinDec 6, 20211 min readJava Min and Max heapJust posting some code on building a min and max heap, I will use an abstract class since both of these classes will contain similar...
Travis MartinSep 3, 20215 min readGolang: pointers, channels and OOP (ish)Making a quick post on few of golang's concepts that can be confusing. Pointers and references I am writing a quick post on golang (go)...
Travis MartinJul 23, 20215 min readBugbounty recon script (rickjms-recon.sh)The way I do my recon on web applications both vertical and horizontal reconnaissance is to combine a couple of tools into one bash...
Travis MartinSep 7, 20203 min readCommon things I forget when reduxing ReactjsWhen learning reactjs and redux I kept encountering build errors, bad practices and things that "Just didn't Work". I am going to attempt...
Travis MartinAug 24, 20203 min readPolymorphism OOP examples JavaI am writing this to keep example on programming concepts, this will be on polymorphism, both using interface and abstract objects....