Comandos Favoritos

O comandos que eu gosto, mas nunca lembro de cabeça.
Git

Criar nova branch e aplicar diff de outra

git checkout -b nova-branch master && git diff master..feature/GPP-398-b | git apply
Intune

Interromper serviços relacionados ao Intune

sudo systemctl stop microsoft-identity-device-broker.service && sudo systemctl stop intune-daemon.socket && sudo systemctl stop intune-daemon.service && sudo systemctl stop cpla.service && sudo systemctl stop sophos-spl.service
JavaScript

Scroll automático

setInterval(()=>scrollBy(0,.5),20)
Carregando...