blog.vojko.devCreate a simple exploit with PythonIn this article we will create a simple exploit with Python. NOTE: Since the entire code snippet is not that long, no final code will be provided on GitLab this time. Foreword This article is STRICTLY for educational purposes. All the information in...Sep 12, 2022·6 min read
blog.vojko.devFive simple tips to make your Python code more readable and optimizedIs my code good enough? It works, but can it be more optimized? Can I shorten it a bit? Is it readable? Well - we all ask these kinds of questions at all stages of our developer careers. I will share some easy tips with you on how you can improve you...Jul 3, 2022·4 min read
blog.vojko.devUsing context managers in PythonIf you ever used Python, most likely you used context managers without even knowing what they are and what they do or how they work - you just used them as per the documentation of some 3rd party package. In this article, I will try to explain what e...May 17, 2022·6 min read
blog.vojko.devIntroduction to Go - Create your first REST API - Part 2Last time I showed you how to build a simple book store REST API. This time I want to take it a step further and show you how to build an (almost) production-ready API with real database storage instead of an in-memory mock that we used. Also, I will...Mar 7, 2022·11 min read
blog.vojko.devStaying safe while using third-party packages in PythonWhenever we are building something with Python, most of the time we rely on third-party packages so that we don't have to reinvent the wheel for some simple things like sending an HTTP request. By doing so we lose control of how safe we are with that...Feb 11, 2022·6 min read