Skip to content

Instantly share code, notes, and snippets.

View bimbimprasetyoafif's full-sized avatar
🎧
Keep Relax and Do the Best

Bimo Prasetyo Afif bimbimprasetyoafif

🎧
Keep Relax and Do the Best
View GitHub Profile
package main
import (
"fmt"
"github.com/labstack/echo/v4"
"net/http"
)
/*
@bimbimprasetyoafif
bimbimprasetyoafif / main.go
Created March 4, 2022 14:14
Coret2 an code sort, stack, queue
package main
import "fmt"
type Queue struct {
element []int
}
func (q *Queue) enqueue(i int) {
q.element = append(q.element, i)
@bimbimprasetyoafif
bimbimprasetyoafif / e-commerce.md
Created December 13, 2019 02:46 — forked from hjr3/e-commerce.md
Examples of RESTful API calls for E-commerce platforms

Examples of RESTful API calls for E-commerce platforms

These examples are type 3 RESTful API requests and responses. The JSON-HAL specification is used to implement HATEOAS.

Some of the examples are based on my work as architect of the RESTful API at http://www.hautelook.com. All proprietary information has been removed.

Relevant links

@bimbimprasetyoafif
bimbimprasetyoafif / README.md
Created September 14, 2019 15:10 — forked from addyosmani/README.md
108 byte CSS Layout Debugger

CSS Layout Debugger

A tweet-sized debugger for visualizing your CSS layouts. Outlines every DOM element on your page a random (valid) CSS hex color.

One-line version to paste in your DevTools

Use $$ if your browser aliases it:

~ 108 byte version