Skip to content

Instantly share code, notes, and snippets.

@polesen
polesen / GSRS.md
Last active March 5, 2022 21:51
Global Snack Rating System

gsrs.com - Global Snack Rating System

Meet ... Alexa Web Sites Ranking for Snacks...

API

List snacks that can be rated...

GET /api/snacks

Keybase proof

I hereby claim:

  • I am polesen on github.
  • I am polesen (https://keybase.io/polesen) on keybase.
  • I have a public key ASBc2nmIL37ILu3BCv4l5HP1Pb4jYStq442JEleD0hS-rQo

To claim this, I am signing this object:

@polesen
polesen / Makefile
Created June 1, 2012 20:56
Takes a RSA public key modulus and exponent in base64 encoding and produces a public key file in PEM format
CC = clang
CFLAGS =
DEPS =
OBJ = modexp2pubkey.o
LIBS = -lssl -lcrypto
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
modexp2pubkey: $(OBJ)