I hereby claim:
- I am benknis on github.
- I am benknis (https://keybase.io/benknis) on keybase.
- I have a public key whose fingerprint is 55A1 3BFD F45D C0E4 5CCF 0B6F 6843 0148 E31F 2285
To claim this, I am signing this object:
import math | |
def goertzel(samples, sample_rate, *freqs): | |
""" | |
Implementation of the Goertzel algorithm, useful for calculating individual | |
terms of a discrete Fourier transform. | |
`samples` is a windowed one-dimensional signal originally sampled at `sample_rate`. | |
The function returns 2 arrays, one containing the actual frequencies calculated, |
I hereby claim:
To claim this, I am signing this object:
lp -d <printer> <file> | |
Example: | |
lp -d Canon-MX350 test.pdf |
## Create new chain | |
iptables -N <Name> | |
## Create outgoing monitor | |
iptables -A INPUT -s <IpAddr> -j <Name> | |
## Create incoming monitor | |
iptables -D INPUT -s <IpAddr> -j <Name> |
sudo apt-add-repository ppa:benknis/repono | |
sudo apt-get update | |
sudo apt-get install repono |
Simple Python Server-Client Pair With Two Way Communication |