Skip to content

Instantly share code, notes, and snippets.

View nodgear's full-sized avatar
🙆‍♂️
Yes

Nodge nodgear

🙆‍♂️
Yes
View GitHub Profile
@nodgear
nodgear / settings.json
Last active January 22, 2024 11:20 — forked from euaaron/settings.json
Compact VS Code - settings.json
{
"apc.electron": {
"titleBarStyle": "hidden",
"trafficLightPosition": {
"x": 11,
"y": 10
},
"frame": false
},
"apc.activityBar": {
@nodgear
nodgear / gist:2d3cf765a25e8368de68a49837529b73
Last active July 25, 2021 10:58
portainer dark blue theme
/* Credits for this are not mine, just modified and uploaded */
@import url('https://fonts.googleapis.com/css?family=Rubik&display=swap');
body {
background:#292D3E;
font-family: Rubik;
color: #B2BFDC !important;
}
@nodgear
nodgear / sv_realtimetranslate.lua
Created March 11, 2020 08:54
Google API Translating using LUA
AddCSLuaFile("languages.lua")
local languages = {}
if CLIENT thenlocal langs = {}
langs["english"] = "en"
langs["spanish"] = "es"
langs["german"] = "de"
langs["french"] = "fr"localfunction ChatTranslate(ply, text, teamchat, isdead)if ply:Language() == LocalPlayer():Language() thenreturnend
Translate(ply:Language(), LocalPlayer():Language(), text)
end