Skip to content

Instantly share code, notes, and snippets.

View TBG-FR's full-sized avatar
🚀
Off to new challenges

Tom-Brian Garcia TBG-FR

🚀
Off to new challenges
View GitHub Profile
@TBG-FR
TBG-FR / FixTimezoneOnAlpineLinux
Created July 7, 2022 16:03
One-liner to get the right Timezone in a Alpine Linux system (ex: WSL docker-desktop)
date && apk update && apk add tzdata && cp /usr/share/zoneinfo/Europe/Paris /etc/localtime && date
@TBG-FR
TBG-FR / LaunchChromeProxyPac.ps1
Last active January 26, 2022 16:20
This Powershell script allows you to apply a Proxy PAC configuration to Chrome, without needing to modify Windows Proxy Settings (or even restarting Windows)
##################################################################################
##
## Description : This Powershell script allows you to apply a Proxy PAC configuration to Chrome, without needing to modify Windows Proxy Settings (or even restarting Windows)
##
## Tips : If Chrome Proxy configuration isn't working after launching this script, go to chrome://net-internals/#proxy and "Clear bad proxies"
##
## Usage : Edit $proxyPacURL and launch the script (or make a shortcut with "powershell.exe -noexit -ExecutionPolicy Bypass -File C:\path\to\the\script\LaunchChromeProxyPac.ps1")
##
## Author : Tom-Brian GARCIA ( https://github.com/TBG-FR )
##