Skip to content

Instantly share code, notes, and snippets.

@yoyokko
yoyokko / Makefile
Last active August 29, 2015 14:18 — forked from polesen/Makefile
CC = clang
CFLAGS =
DEPS =
OBJ = modexp2pubkey.o
LIBS = -lssl -lcrypto
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
modexp2pubkey: $(OBJ)
@yoyokko
yoyokko / podforceupdate.sh
Created May 21, 2016 07:42 — forked from mbinna/podforceupdate.sh
Clear CocoaPods cache, re-download and re-install all pods
#!/usr/bin/env bash
rm -rf "${HOME}/Library/Caches/CocoaPods"
rm -rf "`pwd`/Pods/"
pod update