Skip to content

Instantly share code, notes, and snippets.

View Youngermaster's full-sized avatar
😃
Ele fez de novo! Mais uma vez! Ele É incansavel!

Juan Manuel Young Hoyos Youngermaster

😃
Ele fez de novo! Mais uma vez! Ele É incansavel!
View GitHub Profile
@Youngermaster
Youngermaster / docker-help.md
Created September 23, 2020 00:39 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@Youngermaster
Youngermaster / History|-117418a1|entries.json
Last active January 18, 2023 22:42
Visual Studio Code Settings Sync Gist
{"version":1,"resource":"file:///c%3A/GitHub/Youngermaster/ST0255-2022-2-Projects/project-2/MyCompanySA/base/admin.py","entries":[{"id":"9fAo.py","source":"searchReplace.source","timestamp":1667486016853},{"id":"1AT8.py","source":"searchReplace.source","timestamp":1667486040177}]}
@Youngermaster
Youngermaster / enable_gpedit.bat
Created June 26, 2022 00:01
This batch script enables gpedit.msc
@echo off
pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~3*.mum >List.txt
dir /b %SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~3*.mum >>List.txt
for /f %%i in ('findstr /i . List.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
pause
@Youngermaster
Youngermaster / How to use SSH with Git on Windows.md
Last active April 14, 2024 09:36
How to use SSH with Git and ssh-agent on Windows

How to use SSH with Git and ssh-agent on Windows

Acknowledgement

I used this Blog as a base for this:

Enabling SSH agent

Open a powershell terminal as administrator and run the following to have ssh-agent available.