I recently was building a REST API with Go and I utilized gorilla/mux for routing. I quickly realized that if you create a router handler it doesn’t handle trailing slashes. So if you write code like this: router.HandleFunc(\"/users\",GetList).Methods(\"GET\") It would get would handle requests to /users but not /users/. So I did a little bit ...
Over the last year at work we have been working on a new project and have built our application on Laravel 5.*. I got to lead the project, so as the leader I wanted to set a good standard for how the application should be built. This meant I encouraged a Test Driven Development (TDD) ...
So recently I was talking to a friend of mine who recently started getting into crypto mining. I considered doing this a long time ago when bitcoin was up and coming, however by the time I was looking at mining Bitcoin it was already past the point where you could be profitable with normal GPUs. ...
So if you have read my other blog post you will know I made a tutorial on how to make a simple websocket picker. Simple PHP Websocket Application with Ratchet [Part 1 – Server Side] Simple PHP Websocket Application with Ratchet [Part 2 – Frontend] A friend of mine encouraged me to continue to work ...