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 / 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