Skip to content

Instantly share code, notes, and snippets.

View maikonalexandre's full-sized avatar
🌪️
Cooking new apps

Maikon Alexandre maikonalexandre

🌪️
Cooking new apps
View GitHub Profile
@maikonalexandre
maikonalexandre / deploy.js.yml
Created January 21, 2025 13:15
Use GitHub Actions and Kubeconfig to deploy to Kubernetes
name: Deploy to Kubernetes
on:
push:
branches: [ development ]
pull_request:
branches: [ development ]
jobs:
deploy:
@maikonalexandre
maikonalexandre / main.go
Last active March 7, 2024 19:00
Rounded window corners in wails
func main() {
app := NewApp()
err := wails.Run(&options.App{
Title: "title",
Width: 450,
Frameless: true,
AlwaysOnTop: true,
Experimental: &options.Experimental{},
@maikonalexandre
maikonalexandre / config.json
Last active September 9, 2024 17:29
😴 my vs code configs
{
"telemetry.telemetryLevel": "off",
"editor.fontFamily": "JetBrainsMono Nerd Font",
"editor.fontSize": 16,
"editor.lineHeight": 1.8,
"editor.tabSize": 4,
"editor.rulers": [80, 120],
"editor.parameterHints.enabled": false,
"editor.renderLineHighlight": "gutter",