Skip to content

Instantly share code, notes, and snippets.

View DennisLoska's full-sized avatar

Dennis Loska DennisLoska

View GitHub Profile
@fabecerram
fabecerram / NestJs Cheat Sheet.md
Created December 6, 2022 21:26
NestJs CLI Cheat Sheet – A Basic Guide to NestJs CLI

NestJs CLI Cheat Sheet – A Basic Guide to NestJs CLI

The information in this guide is of an educational nature, it is mainly oriented to students and developers who start with NestJs, this compilation has been selected thinking about the necessary aspects for the basic and intermediate level courses, so it does not cover in depth each one of the mentioned aspects, only covers the most common characteristics in them.

If you want to go into more details, please check the CLI Command Reference at https://docs.nestjs.com/cli/overview


Preparing the Environment

@danburzo
danburzo / README.md
Last active July 29, 2021 08:41
Get all event listeners on the page in Google Chrome
@drawveloper
drawveloper / nodejs-ubuntu-bind-port-80.md
Last active September 19, 2024 01:07
Allow Node.js to bind to privileged ports without root access on Ubuntu

How to: Allow Node to bind to port 80 without sudo

TL;DR

Only do this if you understand the consequences: all node programs will be able to bind on ports < 1024

sudo setcap 'cap_net_bind_service=+ep' /usr/local/bin/node

Important: your node location may vary. Use which node to find it, or use it directly in the command:

@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active April 26, 2025 10:50
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname