Skip to content

Instantly share code, notes, and snippets.

View manvari's full-sized avatar

Maxime Anvari manvari

View GitHub Profile
@linse
linse / Makefile
Created May 21, 2014 17:15
Recursive make and make clean
SUBDIRS = src doc whatever
.PHONY: all clean
all clean:
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir -f Makefile $@; \
done
@manvari
manvari / pyarchaur.py
Last active December 29, 2015 01:09
A simple Python script for the AUR. Uses the AUR API.
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# pyarchaur.py
import requests
import time
import datetime
import argparse