I've been meaning to find ways to automate stuff on my desktop, and recently figured I could use chokidar, which is often used for file watching during web development. I basically just leave a node file running that uses chokidar to watch my desktop...
I'm responsible for a Laravel web app that serves multiple pages, each one being a React "SPA". When I deploy on production I run a build script that will: run Webpack, which outputs the files with a hash and creates a manifest file; run a Gulp task...
A long time ago I used Ant to build a C# project (a Unity3D project, to be precise), but I slowly switched to doing most of the logic in C# itself. Now it's entirely in C#. I found a lot of benefits by doing this. Off the top of my head: I can write...