Skip to content

Instantly share code, notes, and snippets.

@blainsmith
blainsmith / jwplatformclient.go
Last active July 18, 2019 20:25
JWPlatform REST API Client example
package ovp
import (
"context"
"crypto/md5"
"fmt"
"net/http"
"net/url"
"strconv"
"time"
@blainsmith
blainsmith / udp.ha
Created May 9, 2022 16:12
UDP Server in Hare
use fmt;
use net::udp;
use net::ip;
use strings;
export fn main() void = {
const listener = udp::listen(ip::LOCAL_V4, 8000)!;
for (true) {
let buf: [1024]u8 = [0...];