Skip to content

Instantly share code, notes, and snippets.

View 3manuek's full-sized avatar
😎
tr3s.ma

Emanuel Calvo 3manuek

😎
tr3s.ma
View GitHub Profile
@3manuek
3manuek / git-slim.py
Created March 7, 2016 01:29 — forked from afternoon/git-slim.py
Remove large objects from a git repository
#!/usr/bin/python
#
# git-slim
#
# Remove big files from git repo history.
#
# Requires GitPython (https://github.com/gitpython-developers/GitPython)
#
# References:
# - http://help.github.com/remove-sensitive-data/
@3manuek
3manuek / proxy.go
Created February 21, 2016 22:56 — forked from kylemcc/proxy.go
Basic Go TCP proxy...borrowed from someone...
package main
import (
"net"
"fmt"
"io"
"os"
"crypto/sha1"
"time"
)
@3manuek
3manuek / proxy.go
Created February 21, 2016 22:56 — forked from killwing/proxy.go
simple proxy
package main
import (
"fmt"
"io"
"io/ioutil"
"net"
"net/http"
"sync"
"time"
@3manuek
3manuek / .gitignore
Created December 22, 2015 02:20 — forked from octocat/.gitignore
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
---
# ^^^ YAML documents must begin with the document separator "---"
#
#### Example docblock, I like to put a descriptive comment at the top of my
#### playbooks.
#
# Overview: Playbook to bootstrap a new host for configuration management.
# Applies to: production
# Description:
# Ensures that a host is configured for management with Ansible.