Author: Cruhe

  • Microsoft Windows

    To debloat: https://github.com/Raphire/Win11Debloat Startup applications: C:\Users\<your username>\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup last updated 17 June 2025

  • Limitations, data, and the ouroboric nature of AI

    why AI sucks to me Apparently we are all on the verge of watching the singularity occur in real-time. But first we’ll all lose our jobs. A sentiment repeated by the CEOs of major AI companies, tech-fluencers, former presidents, and business tycoons. But what am I noticing as a regular software engineer that they aren’t?…

  • Vitest Coverage Page Empty

    If you are seeing: All files Unknown% Statements 0/0Unknown% Branches 0/0Unknown% Functions 0/0Unknown% Lines 0/0 and an empty page for the output (im focusing on the .html output) then try this:add the following text into your package.json under your scripts -> “coverage” or however you have your vitest coverage command set up. “coverage”: “vitest –coverage.enabled…

  • Changing MAC address in Windows

    Modify the registry to change the MAC address:a. Open Registry Editor (type regedit in the Start menu)b. Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4d36e972-e325-11ce-bfc1-08002be10318}c. Look through the subfolders (0000, 0001, etc.) to find your network adapterd. Right-click on the right pane, select New > String Valuee. Name it “NetworkAddress“f. Double-click it and enter the desired MAC address without colons…

  • Publishing Your First NPM Package

    npm publish First create an account: https://www.npmjs.com/signup. Suppose you have a hello world package. Setup a github repo for it and include important instructions in the README.md. The most difficult part is setting up the configurations in your package.json and tsconfig.json. Before this you need to run npm init You will complete the following information:…