Skip to content

Instantly share code, notes, and snippets.

View celsodias12's full-sized avatar

Celso Dias celsodias12

View GitHub Profile
@sirdantas
sirdantas / docker-compose.yml
Created August 13, 2020 17:29
Kong + Konga
version: "3.7"
volumes:
kong_data: {}
networks:
kong-net:
services:
@alebelcor
alebelcor / readme.md
Last active February 15, 2024 17:47
How to deprecate a repository/npm package

How to deprecate a repository/npm package

  1. Add [DEPRECATED] repository description on GitHub
  2. Add deprecated topic to repository
  3. Update readme.md
    1. Add DEPRECATED as a new <h1> up top
    2. Add an "unmaintained" badge (e.g. No Maintenance Intended)
    3. Add a suggestion replacement
    4. Add a horizontal rule
  4. Commit and push changes to GitHub
@pcgeek86
pcgeek86 / cheatsheet.ps1
Last active April 12, 2025 17:44
PowerShell Cheat Sheet / Quick Reference
Get-Command # Retrieves a list of all the commands available to PowerShell
# (native binaries in $env:PATH + cmdlets / functions from PowerShell modules)
Get-Command -Module Microsoft* # Retrieves a list of all the PowerShell commands exported from modules named Microsoft*
Get-Command -Name *item # Retrieves a list of all commands (native binaries + PowerShell commands) ending in "item"
Get-Help # Get all help topics
Get-Help -Name about_Variables # Get help for a specific about_* topic (aka. man page)
Get-Help -Name Get-Command # Get help for a specific PowerShell function
Get-Help -Name Get-Command -Parameter Module # Get help for a specific parameter on a specific command
@leocomelli
leocomelli / git.md
Last active April 24, 2025 15:17
Lista de comandos úteis do GIT

GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda