Skip to content

Instantly share code, notes, and snippets.

View nickmonad's full-sized avatar
🦀

Nick Miller nickmonad

🦀
View GitHub Profile
Verifying my Blockstack ID is secured with the address 1CzXKSiofpU2gXeAhoiaG9aSTaKiA4p8Vr https://explorer.blockstack.org/address/1CzXKSiofpU2gXeAhoiaG9aSTaKiA4p8Vr
@nickmonad
nickmonad / keybase.md
Created February 10, 2017 06:10
keybase.io verification

Keybase proof

I hereby claim:

  • I am ngmiller on github.
  • I am ngmiller (https://keybase.io/ngmiller) on keybase.
  • I have a public key ASDNY2Wln5AC2s7FuZ-1pW3y6hsy2k56TrOnc4-eLE2k6Qo

To claim this, I am signing this object:

@nickmonad
nickmonad / tcp-client.c
Created February 21, 2015 20:19
TCP Boilerplate
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#define SERVER_PORT 27070
@nickmonad
nickmonad / udp-client.c
Last active March 18, 2017 14:15
UDP Boilerplate
#include <arpa/inet.h>
#include <errno.h>
#include <netinet/in.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <unistd.h>