Skip to content

Instantly share code, notes, and snippets.

View bugged-codes's full-sized avatar
👨‍💻
.html .css .js

Vipul Lokhande bugged-codes

👨‍💻
.html .css .js
View GitHub Profile
@bugged-codes
bugged-codes / browserExt-global-speed.json
Last active October 10, 2023 09:35
My config and settings for desktop browser extension Global Speed by polywock
{"common":{"audioFx":{"delay":0,"eq":{"enabled":false,"factor":1,"values":[0,0,0,0,0,0,0,0,0,0]},"pitch":0,"volume":1},"audioFxAlt":null,"audioPan":null,"backdropFx":{"filters":[{"name":"sepia","value":0},{"name":"hueRotate","value":0},{"name":"grayscale","value":0},{"name":"contrast","value":1},{"name":"brightness","value":1},{"name":"saturate","value":1},{"name":"invert","value":0},{"name":"blur","value":0},{"name":"opacity","value":1}],"transforms":[{"name":"scaleX","value":1},{"name":"scaleY","value":1},{"name":"translateX","value":0},{"name":"translateY","value":0},{"name":"rotateX","value":0},{"name":"rotateY","value":0},{"name":"rotateZ","value":0}]},"elementFx":{"enabled":true,"filters":[{"name":"sepia","value":0},{"name":"hueRotate","value":0},{"name":"grayscale","value":0},{"name":"contrast","value":1},{"name":"brightness","value":1},{"name":"saturate","value":1},{"name":"invert","value":0},{"name":"blur","value":0},{"name":"opacity","value":1}],"transforms":[{"name":"scaleX","value":1},{"name":"sca
@bugged-codes
bugged-codes / settings.json
Last active February 24, 2023 14:38
Windows Terminal Settings
{
"$help": "https://aka.ms/terminal-documentation",
"$schema": "https://aka.ms/terminal-profiles-schema",
"actions":
[
{
"command": "paste",
"keys": "ctrl+v"
},
{
@bugged-codes
bugged-codes / pwshProfile.ps1
Last active February 24, 2023 14:37
Customized Powershell Profile
# powershell profile is located at %userporfile%/documents/PowerShell/Microsoft.PowerShell_profile.ps1
using namespace System.Management.Automation
using namespace System.Management.Automation.Language
# PSReadLine
Import-Module PSReadLine
Set-PSReadLineKeyHandler -key Tab -Function Complete
Set-PSReadLineOption -PredictionSource History
Set-PSReadLineOption -PredictionViewStyle ListView
Set-PSReadLineOption -EditMode Windows