-
-
Notifications
You must be signed in to change notification settings - Fork 130
Added the Go language with snippets #208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
[ | ||
{ | ||
"name": "HTTP", | ||
"snippets": [ | ||
{ | ||
"title": "server", | ||
"description": "runs an HTTP server with routing", | ||
"author": "AmeerMoustafa", | ||
"tags": [ | ||
"http", | ||
"server", | ||
"router", | ||
"web" | ||
], | ||
"contributors": [], | ||
"code": "package main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n)\n\nvar Router = http.NewServeMux()\n\nvar server = http.Server{\n\tAddr: \":8080\",\n\tHandler: Router,\n}\n\n// Handler function example\nfunc example(w http.ResponseWriter, r *http.Request) {\n\tfmt.Fprintln(w, \"Hello HTTP server\")\n}\n\nfunc main() {\n\t// Route definitions\n\tRouter.HandleFunc(\"GET /\", example)\n\tserver.ListenAndServe()\n}\n" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "Basics", | ||
"snippets": [ | ||
{ | ||
"title": "Hello, World!", | ||
"description": "A simple function that outputs \"Hello, World!\"", | ||
"author": "AmeerMoustafa", | ||
"tags": [ | ||
"basics", | ||
"formatting" | ||
], | ||
"contributors": [], | ||
"code": "package main\n\nimport \"fmt\"\n\nfunc main() {\n\n fmt.Println(\"Hello, World!\")\n}\n" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "File handling", | ||
"snippets": [ | ||
{ | ||
"title": "Read and write helpers", | ||
"description": "Simple and reusable functions to help with file reading and writing", | ||
"author": "AmeerMoustafa", | ||
"tags": [ | ||
"file handling" | ||
], | ||
"contributors": [], | ||
"code": "// A reusable function to read data from a file\nfunc readFile(filePath string) (data []byte, err error) {\n\tdata, err = os.ReadFile(filePath)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"failed to read file %s: %w\", filePath, err)\n\t}\n\n\treturn data, nil\n}\n\n// A reusable function to write data to a file\nfunc writeFile(data string, filePath string) error {\n\n\terr := os.WriteFile(filePath, []byte(data), 0644)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"Failed to write to file %s: %w\", filePath, err)\n\t}\n\treturn nil\n}\n" | ||
}, | ||
{ | ||
"title": "Write data to a CVS file", | ||
"description": "An example of writing data to a cvs file", | ||
"author": "AmeerMoustafa", | ||
"tags": [ | ||
"file handling", | ||
"cvs" | ||
], | ||
"contributors": [], | ||
"code": "package main\n\nimport (\n \"os\"\n \"log\"\n \"encoding/csv\"\n)\n\nvar data = [][]string{{\"Line1\", \"Hello Readers of\"}, {\"Line2\", \"quicksnip.dev\"}}\n\nfunc main() {\n file, err := os.Create(\"result.csv\")\n checkError(\"Cannot create file\", err)\n defer file.Close()\n\n writer := csv.NewWriter(file)\n defer writer.Flush()\n\n for _, value := range data {\n err := writer.Write(value)\n checkError(\"Cannot write to file\", err)\n }\n}\n\nfunc checkError(message string, err error) {\n if err != nil {\n log.Fatal(message, err)\n }\n}\n" | ||
} | ||
] | ||
} | ||
] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
title: server | ||
description: runs an HTTP server with routing | ||
author: AmeerMoustafa | ||
tags: http,server,router,web | ||
--- | ||
|
||
```go | ||
package main | ||
|
||
import ( | ||
"fmt" | ||
"net/http" | ||
) | ||
|
||
var Router = http.NewServeMux() | ||
|
||
var server = http.Server{ | ||
Addr: ":8080", | ||
Handler: Router, | ||
} | ||
|
||
// Handler function example | ||
func example(w http.ResponseWriter, r *http.Request) { | ||
fmt.Fprintln(w, "Hello HTTP server") | ||
} | ||
|
||
func main() { | ||
// Route definitions | ||
Router.HandleFunc("GET /", example) | ||
server.ListenAndServe() | ||
} | ||
``` |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
title: Hello, World! | ||
description: A simple function that outputs "Hello, World!" | ||
author: AmeerMoustafa | ||
tags: basics,formatting | ||
--- | ||
|
||
```go | ||
package main | ||
|
||
import "fmt" | ||
|
||
func main() { | ||
|
||
fmt.Println("Hello, World!") | ||
} | ||
``` |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Those snippets only wrap around |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
title: Read and write helpers | ||
description: Simple and reusable functions to help with file reading and writing | ||
author: AmeerMoustafa | ||
tags: file handling | ||
--- | ||
|
||
```go | ||
// A reusable function to read data from a file | ||
func readFile(filePath string) (data []byte, err error) { | ||
data, err = os.ReadFile(filePath) | ||
if err != nil { | ||
return nil, fmt.Errorf("failed to read file %s: %w", filePath, err) | ||
} | ||
|
||
return data, nil | ||
} | ||
|
||
// A reusable function to write data to a file | ||
func writeFile(data string, filePath string) error { | ||
|
||
err := os.WriteFile(filePath, []byte(data), 0644) | ||
if err != nil { | ||
return fmt.Errorf("Failed to write to file %s: %w", filePath, err) | ||
} | ||
return nil | ||
} | ||
``` |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This does not qualify as a snippet, because it is an example |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
title: Write data to a CVS file | ||
description: An example of writing data to a cvs file | ||
author: AmeerMoustafa | ||
tags: file handling,cvs | ||
--- | ||
|
||
|
||
```go | ||
package main | ||
|
||
import ( | ||
"os" | ||
"log" | ||
"encoding/csv" | ||
) | ||
|
||
var data = [][]string{{"Line1", "Hello Readers of"}, {"Line2", "quicksnip.dev"}} | ||
|
||
func main() { | ||
file, err := os.Create("result.csv") | ||
checkError("Cannot create file", err) | ||
defer file.Close() | ||
|
||
writer := csv.NewWriter(file) | ||
defer writer.Flush() | ||
|
||
for _, value := range data { | ||
err := writer.Write(value) | ||
checkError("Cannot write to file", err) | ||
} | ||
} | ||
|
||
func checkError(message string, err error) { | ||
if err != nil { | ||
log.Fatal(message, err) | ||
} | ||
} | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This does not qualify as a snippet, because it is an example