Skip to content

Instantly share code, notes, and snippets.

View gilly7's full-sized avatar
🎯
Focusing

Gilbert Ng'eno gilly7

🎯
Focusing
View GitHub Profile
@gilly7
gilly7 / postman.json
Created February 6, 2022 10:20 — forked from developer1622/postman.json
Postman collection for Basic REST API on contact
{
"info": {
"_postman_id": "047925bc-b6fe-4581-9d0c-8d8c10061cb2",
"name": "Contacts",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Index of the server",
"request": {
@gilly7
gilly7 / main.go
Created February 6, 2022 10:20 — forked from developer1622/main.go
Basic REST API in Golang (Simple non persistent CRUD App on Contact)
package main
import (
"encoding/json"
"fmt"
"log"
"net/http"
"github.com/julienschmidt/httprouter"
)
@gilly7
gilly7 / Contributing.md
Created October 22, 2021 11:32 — forked from MarcDiethelm/Contributing.md
How to contribute to a project on Github

This text now lives at https://github.com/MarcDiethelm/contributing/blob/master/README.md. I turned it into a Github repo so you can, you know, contribute to it by making pull requests.


Contributing

If you want to contribute to a project and make it better, your help is very welcome. Contributing is also a great way to learn more about social coding on Github, new technologies and and their ecosystems and how to make constructive, helpful bug reports, feature requests and the noblest of all contributions: a good, clean pull request.