Skip to content

Instantly share code, notes, and snippets.

View maxmcd's full-sized avatar
🕳️
∖𝟶𝚊𝚜𝚖

Max McDonnell maxmcd

🕳️
∖𝟶𝚊𝚜𝚖
View GitHub Profile
@maxmcd
maxmcd / index.html
Last active August 7, 2021 01:08 — forked from d3noob/index.html
Sankey Diagram with v4
<!DOCTYPE html>
<meta charset="utf-8">
<title>SANKEY Experiment</title>
<style>
.node rect {
cursor: move;
fill-opacity: .9;
shape-rendering: crispEdges;
}
@maxmcd
maxmcd / .block
Created October 14, 2020 13:10 — forked from texodus/.block
regular-table / Minesweeper
license: apache-2.0
@maxmcd
maxmcd / Diabolical.c
Created March 25, 2018 15:54 — forked from Benjamin-Dobell/Diabolical
Pfft, crashes are for chumps
static jmp_buf jmpEnv;
enum {
kPrepareBinaryAddress = 0x44dd,
kMutexBinaryAddress = 0x9090
};
void signal_handler(int n, siginfo_t *info, void *context)
{
longjmp(jmpEnv, 1);
@maxmcd
maxmcd / main.go
Created November 11, 2015 21:15 — forked from thehowl/main.go
test for gitbao
package main
import (
"github.com/gin-gonic/gin"
)
func main() {
r := gin.Default()
r.GET("/", func(c *gin.Context) {
c.String(200, "Welcome. This is a test.")
})
@maxmcd
maxmcd / main.go
Last active November 9, 2015 14:50 — forked from skaffen2/main.go
Gitbaotest
package main
import (
"fmt"
"net/http"
"time"
"github.com/maxmcd/baodata"
)