Skip to content

Instantly share code, notes, and snippets.

View BirnadinErick's full-sized avatar
🎒
Studying

Birnadin Erick BirnadinErick

🎒
Studying
View GitHub Profile
@BirnadinErick
BirnadinErick / interface.go
Created December 22, 2023 10:57
Go Interfaces Demo
package main
import (
"errors"
"fmt"
)
type DummyInterface interface {
dummyMethod(somethingToOperateOn string) (string, error)
}
@BirnadinErick
BirnadinErick / index.html
Created November 22, 2023 11:12
HTTP 302 vs 303 Code listing
<html>
<head>
<title>302 and 303 Diff Demo</title>
</head>
<body>
<h1>SUTBLE Difference between Redirect 302 and 303</h1>