Skip to content

Instantly share code, notes, and snippets.

View antoniordo's full-sized avatar

Antonio Rocha de Oliveira antoniordo

  • Maceió/AL Brazil
View GitHub Profile
@leonardokl
leonardokl / README.md
Last active August 11, 2020 23:22
Planing Poker
Valor Tempo
0 não precisa ser feita
1 menos de 1h
2 uma manhã
3 uma tarde
5 um dia
8 2 ou 3 dias
13 5 dias
20 quebrar a tarefa
@eujoy
eujoy / RobertCMartin-CleanCodeHeuristics.md
Last active March 1, 2024 14:04
Robert C. Martin - Clean Code Heuristics
@SynCap
SynCap / remove_node_modules_recursively.ps1
Last active May 3, 2024 21:37
Remove `node_modules` folders in Windows in all subfolders recursively with PowerShell to avoid exceeding path max_length
<#
Note: Eliminate `-WhatIf` parameter to get action be actually done
Note: PS with version prior to 4.0 can't delete non-empty folders
#>
Get-ChildItem -Path "." -Include "node_modules" -Recurse -Directory | Remove-Item -Recurse -Force -WhatIf
@ssstonebraker
ssstonebraker / sed cheatsheet
Created August 2, 2013 14:06 — forked from un33k/sed cheatsheet
Sed Cheatsheet
FILE SPACING:
# double space a file
sed G
# double space a file which already has blank lines in it. Output file
# should contain no more than one blank line between lines of text.
sed '/^$/d;G'