Skip to content

Instantly share code, notes, and snippets.

View aceiro's full-sized avatar

Erik Aceiro Antonio @e2a aceiro

View GitHub Profile
@aceiro
aceiro / pyscript.py
Created July 2, 2019 15:18 — forked from nhoffman/pyscript.py
Python script template
#!/usr/bin/env python
"""A simple python script template.
"""
from __future__ import print_function
import os
import sys
import argparse
@aceiro
aceiro / match.c
Created November 1, 2018 13:38 — forked from ianmackinnon/match.c
C Regex multiple matches and groups example
# gcc -Wall -o match match.c && ./match
#
#include <stdio.h>
#include <string.h>
#include <regex.h>