Skip to content

Instantly share code, notes, and snippets.

View ABorgna's full-sized avatar

Agustín Borgna ABorgna

  • Quantinuum
  • Cambridge, UK
View GitHub Profile
@ABorgna
ABorgna / PKGBUILD
Created October 11, 2015 06:51
Aurous PKGBUILD
# Maintainer: Agustin Borgna <hello [at] aborgna [dot] com [dot] ar>
pkgname=aurous
pkgver=0.1a
pkgrel=1
pkgdesc="A music player with p2p capabilities"
arch=('x86_64' 'i686')
license=('custom:"Copyright (c) 2015 Aurous Group"')
url="https://aurous.me"
options=('!strip')
@ABorgna
ABorgna / pseudoTerminal.py
Last active December 19, 2015 15:59
"A Python script which becomes a pseudo terminal so that it can act as a man in the middle between your terminal emulator and a running process." Ported the code found in http://sqizit.bartletts.id.au/2011/02/14/pseudo-terminals-in-python/ to work under python 3.
#
# Copyright (c) 2011 Joshua D. Bartlett
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#