Skip to content

Instantly share code, notes, and snippets.

View robingarcia's full-sized avatar

Robin Garcia robingarcia

View GitHub Profile
@robingarcia
robingarcia / formular.tex
Created January 13, 2020 13:14 — forked from theresalu/formular.tex
LaTeX Formular
\documentclass[a4paper]{article}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[left=2.5cm,right=2.5cm,top=3cm,bottom=3cm]{geometry}
\usepackage[english, ngerman]{babel}
\usepackage{textcomp}
\usepackage{hyperref}
\usepackage{longtable}
@robingarcia
robingarcia / http-cat-error-pages.conf
Created December 6, 2019 23:27 — forked from mjmeyer/http-cat-error-pages.conf
Http.cat erorr pages for nginx
# ---------- Status Cats Error Pages!!! via: https://http.cat/ ---------
#
# requires that a dns resolver be set for nginx as in: resolver 127.0.0.1;
# typically uses dnsmasq for 127.0.0.1 resolver
#
# Usage:
# place this file somewhere accessible to nginx. /etc/nginx/snippets is a decent choice.
# then inside the server block(s) you want cat themed error status responses do:
# include snippets/http-cat-error-pages.conf
#
@robingarcia
robingarcia / delete_all_tweets.py
Created August 18, 2017 16:34 — forked from davej/delete_all_tweets.py
This script will delete all of the tweets in a specified account.
# -*- coding: utf-8 -*-
"""
This script will delete all of the tweets in the specified account.
You may need to hit the "more" button on the bottom of your twitter profile
page every now and then as the script runs, this is due to a bug in twitter.
You will need to get a consumer key and consumer secret token to use this
script, you can do so by registering a twitter application at https://dev.twitter.com/apps
@requirements: Python 2.5+, Tweepy (http://pypi.python.org/pypi/tweepy/1.7.1)