Skip to content

Instantly share code, notes, and snippets.

View Josyto's full-sized avatar
😼
Focusing

Josyto Josyto

😼
Focusing
View GitHub Profile
@Josyto
Josyto / tesla_order_status.py
Created August 31, 2024 10:54
Tesla Order Status
import base64
import json
import os
import time
import hashlib
import requests
import webbrowser
import urllib.parse
# Define constants
@Josyto
Josyto / .wezterm.lua
Created October 14, 2022 09:59
Wez's terminal personal config
-- After installing wezterm, create the file in $HOME/.wezterm.lua -> Windows -> C:/Users/youruser/.wezterm.lua. Linux -> /home/youruser/.wezterm.lua
-- Info about config file https://wezfurlong.org/wezterm/config/files.html
local wezterm = require("wezterm")
return {
-- Default CLI and CWD
default_prog = {"C:\\Program Files\\Git\\bin\\bash.exe", "-l"},
default_cwd = wezterm.home_dir .. "/Desktop/Proyectos",
-- Shortcuts
keys = {
@Josyto
Josyto / settings.json
Last active September 12, 2022 15:49
Inlay hints settings of Desarrollo Útil
{
// Rest of configuration
// INLINE HINTS
"javascript.inlayHints.parameterNames.enabled": "all",
"typescript.inlayHints.parameterNames.enabled": "all",
"javascript.inlayHints.parameterNames.suppressWhenArgumentMatchesName": false,
"typescript.inlayHints.parameterNames.suppressWhenArgumentMatchesName": false,
"editor.inlayHints.fontSize": 12,
// Theme Colors Override
"workbench.colorCustomizations": {