find . -maxdepth 1 -type f -name '*.*' -empty
2024-03-19
GIT - Remove files from repository (prevent them from being tracked going forward)
git rm --cached /folder/subfolder/* -r
2024-03-03
JavaScript - Paint tables in the log console
console.table([2,3,4,5,6]);
┌─────────┬────────┐
│ (index) │ Values │
├─────────┼────────┤
│ 0 │ 1 │
│ 1 │ 2 │
│ 2 │ 3 │
│ 3 │ 3 │
│ 4 │ 4 │
│ 5 │ 5 │
│ 6 │ 6 │
│ 7 │ 7 │
└─────────┴────────┘
Subscribe to:
Posts (Atom)