javascript Variable Mangling For Better Minification Mangling, in the context of javascript transpilations, refers to the process of changing the name of identifiers, so that instead of storing Foo.bar we can have a.b. It sounds good at first but once you look it a bit further, problems become obvious: it can and probably will
javascript Create Texture Packs/Atlas for Phaser.js free-tex-packer is a free and open-source texture packer. It's the perfect alternative to TexturePacker.
wordpress Multilingual Wordpress Website I always considered it important to communicate with the most amount of minds possible, and translation is clearly the way to go to increase the reach of my words. So, I started looking for different options on the internet to find a way of writing content once and then letting
Simple SOCKS5 Python asyncio proxy Step by step implementation of a simple SOCKS5 proxy server with asynchronous asyncio python.
blog I finally got my first MacBook Since I started freelancing simple web pages and graphic designs I always wanted to have a MacBook. For many in first-world countries having a mac doesn’t seem like a great thing or something. But here in Argentina, apple products are considerably more expensive than in the rest of the
android Prepare your Android emulator for reverse engineering Quick tutorial for rooting a virtual android device, installing gapps, decompiling apks, using mitmproxy for seeing the traffic, and removing SSL pinning with frida.
python How to gradually start adding type hints to python projects How to gradually add types to an existing untyped python codebase.
scala Create a functor for a binary tree in Scala I’m trying to really really understand the scala cats library. So while I was reading the book “Scala with Cats”, I found an exercise that told me to: create a functor for a binary tree: sealed trait Tree[+A] final case class Branch[A](left: Tree[A], right: Tree[
python Expert python topics you should know Expert python topics you should know: muti version handling, dunders, decorators, interfaces, context managers, asyncio, profiling, logging and more.
erlang About updating dependencies Did you notice how different communities manage their ecosystem? How for the most part most communities want to have the most up to date versions? Of course, we want the shiniest and most feature complete versions of our software. Always having the most up to date versions of something is
linux How to create an initramfs after you compile a linux kernel You build an initramfs by putting all the OS-required files in a folder, you convert everything in there to a single .cpio, and finally you gzip that. From your perspective, the initramfs is a gziped cpio file that contains the initial file system that the kernel needs to run. And