Skip to content

Instantly share code, notes, and snippets.

View lu-moreira's full-sized avatar
😄

Lucas Moreira lu-moreira

😄
View GitHub Profile

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@lu-moreira
lu-moreira / vscode-user-settings.json
Created November 2, 2020 01:03
vs code user settings
{
"go.autocompleteUnimportedPackages": true,
"go.coverageDecorator": {
"type": "gutter",
"coveredHighlightColor": "rgba(64,128,128,0.5)",
"uncoveredHighlightColor": "rgba(128,64,64,0.25)",
"coveredGutterStyle": "blockgreen",
"uncoveredGutterStyle": "blockred"
},
// "go.coverOnSave": false,
@lu-moreira
lu-moreira / testing.go
Created November 20, 2018 21:48
Getting params gin.wrapH
package main
import (
"context"
"encoding/json"
"log"
"net/http"
"github.com/gin-gonic/gin"