WXWojtek Xinfuriousdev.hashnode.dev·Jan 16, 2023 · 1 min readWord about JS, modules and alikeShit This just sums up pretty nicely. Real-life example Say you are tasked with creating a tick module. Seems pretty simple? Well, up to compiling stage. Code & samples cullay.js exports.module = { // Module name here, like "testModule". If you h...00
WXWojtek Xinfuriousdev.hashnode.dev·Jan 16, 2023 · 3 min readMoving BitBucket > GitHubDisclaimers this is a case study of an actual migration that happened no more than 6 months ago and finished just 5 hours ago. we needed to move everything (account, org, 200+ repos (some as big as 4GB), code-snippets, repo templates, gpg/ssh keys,...00
WXWojtek Xinfuriousdev.hashnode.dev·Dec 20, 2022 · 1 min readGetting value from user input (input field) after clicking buttonScenario We have simple form in HTML with: input field, button that is supposed to display an alert with text inputed in input field. Simple, right? No, hell not. Analysis What? We cannot just: let v = document.getElementById('inputField').value;...00
WXWojtek Xinfuriousdev.hashnode.dev·Dec 8, 2022 · 2 min readIs Deno relatively unsuccessful, failing to gain traction?Deno was supposed to be an alternative to shitty node, as per their GitHub repo: A modern runtime for JavaScript and TypeScript. In other words: better, quicker and more awesome node. But, something along the way went wrong, terribly wrong. Let's d...00
WXWojtek Xinfuriousdev.hashnode.dev·Dec 7, 2022 · 4 min readBad codePreface Thats what Im "allergic" to. While browsing VCS like GitHub, 9 out of 10 times I encounter code written horribly. I fully understand that VCS is built to host OSS code (everyone can edit/add), I also understand idea behind standards (although...00