Skip to content

Instantly share code, notes, and snippets.

View noedigsti's full-sized avatar
🛰️

Adrian noedigsti

🛰️
View GitHub Profile
@noedigsti
noedigsti / git_cheat-sheet.md
Created November 22, 2021 13:51 — forked from davfre/git_cheat-sheet.md
git commandline cheat-sheet
@noedigsti
noedigsti / .bashrc
Last active April 7, 2023 05:01
Colored .bashrc
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
@noedigsti
noedigsti / win_problems.md
Created April 19, 2023 12:52
Windows Problems

Task Scheduler was not found

  • regedit
  • HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Schedule
  • set Start on the right panel to value of 2 (Automatic)
  • Reboot
Computer Information:
Manufacturer: Razer
Model: Blade 15 (2022) - RZ09-0421
Form Factor: Laptop
Touch Input Detected
Processor Information:
CPU Vendor: GenuineIntel
CPU Brand: 12th Gen Intel(R) Core(TM) i7-12800H
CPU Family: 0x6
CPU Model: 0x9a
sudo apt update -y && sudo apt upgrade -y

sudo apt-get install curl

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash

node -v

nvm install 18

Folder Tree Visualization

Windows

PowerShell
Get-ChildItem -Path "C:\Your\Directory\Path" -Recurse | Where-Object { $_.FullName -notlike '*\node_modules\*' }