Skip to content

Instantly share code, notes, and snippets.

View nkt217's full-sized avatar

Ankit Verma nkt217

  • Banglore
View GitHub Profile
@NoobTaco
NoobTaco / Hyprwulf_Disk_Setup_Guide.md
Last active January 21, 2026 05:02
Comprehensive Disk Layout and Installation Plan (CachyOS with Limine and Btrfs/Snapper

Comprehensive Disk Layout and Installation Plan (CachyOS with GRUB, Btrfs/Snapper)

This guide provides a detailed plan for your fresh system install, incorporating your specific drive usage, CachyOS with Btrfs for snapshots, and the GRUB bootloader, accounting for the Calamares installer.


Summary of Your Desired Disk Layout:

  • /dev/sda (SanDisk SSD PLUS 931.5G): Scratch/test drive for Linux installs. (Will be ignored for this main plan, as you'll use it for temporary installs.)
  • /dev/sdb (Samsung SSD 850 931.5G): Dedicated developers' files drive for Linux. (Will be formatted.)
@bradtraversy
bradtraversy / webdev_online_resources.md
Last active November 19, 2025 14:28
Online Resources For Web Developers (No Downloading)
@paulallies
paulallies / gist:0052fab554b14bbfa3ef
Last active August 3, 2024 16:45
Remove node_modules from git repo
#add 'node_modules' to .gitignore file
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin <branch-name>
@jonlabelle
jonlabelle / string-utils.js
Last active August 13, 2025 12:17
Useful collection of JavaScript string utilities.
// String utils
//
// resources:
// -- mout, https://github.com/mout/mout/tree/master/src/string
/**
* "Safer" String.toLowerCase()
*/
function lowerCase(str) {
return str.toLowerCase();