Skip to content

Instantly share code, notes, and snippets.

View santoshanand's full-sized avatar

Santosh Anand santoshanand

View GitHub Profile
rm -rf ~/.config/JetBrains/GoLand2021.3/eval
rm -rf ~/.config/JetBrains/GoLand2021.3/options/other.xml
touch ~/.config/JetBrains/GoLand2021.3/options/other.xml
sed -i -E 's/<property name=\"evl.*\".*\/>//' ~/.config/JetBrains/GoLand2021.3/options/other.xml
rm -rf ~/.java/.userPrefs/jetbrains/goland
[
{
"title": "Sign In/ Sign Up",
"description": "An awesome flutter application",
"repo": "https://github.com/santoshanand/flutter-signin",
"thumb": "https://assets.materialup.com/uploads/c371ebff-7e98-45c4-8b69-011cc54b1b4d/camping.png",
"gallery": []
},
{
"title": "This is title new",
package main
import (
"gopkg.in/mgo.v2/bson"
"gopkg.in/mgo.v2"
"github.com/kataras/iris"
"log"
)
type Car struct {
Name string
package main
import (
"github.com/kataras/iris"
)
func main() {
app := iris.Default()
app.Get("/", func(context iris.Context) {
context.WriteString("Welcome to Iris Go Framework!")
})
santosh