autopy - simple, cross-platform GUI automation toolkit. MIT - https://github.com/msanders/autopy/
- 432 stars, 102 forks, 2950 monthly downloads at 2015-05-13
- GUI toolkit agnostic
autopy - simple, cross-platform GUI automation toolkit. MIT - https://github.com/msanders/autopy/
| /* | |
| Leaked by Das Erste | |
| URL: http://daserste.ndr.de/panorama/archiv/2014/Quellcode-entschluesselt-Beweis-fuer-NSA-Spionage-in-Deutschland,nsa224.html | |
| Source: http://daserste.ndr.de/panorama/xkeyscorerules100.txt | |
| */ | |
| // START_DEFINITION | |
| /** | |
| * Fingerprint Tor authoritative directories enacting the directory protocol. | |
| */ |
Cython has two major benefits:
Cython gains most of it's benefit from statically typing arguments. However, statically typing is not required, in fact, regular python code is valid cython (but don't expect much of a speed up). By incrementally adding more type information, the code can speed up by several factors. This gist just provides a very basic usage of cython.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| { config, pkgs, ... }: | |
| { | |
| require = [ | |
| <nixos/modules/programs/virtualbox.nix> | |
| ./hardware.nix | |
| ./monitors.nix | |
| # ./mailpile.nix | |
| ]; |
| #!/bin/bash | |
| # Tyler Goodlet tgoodlet@sangoma.com -- initial version | |
| # Dependencies: | |
| # -bash 4.0 | |
| # -gawk <ver?> | |
| # TODO: add tcpdump tracing of SIP legs | |
| # support bash 3.0 (i.e. remove coproc, associative arrays) | |
| # script debug options - x for echo v for verbose: "set -<variable>" (to turn on), "set +<variable>" (to turn off) |
| freeswitch-build: | |
| pkg: | |
| - installed | |
| - names: | |
| - build-essential | |
| - curl | |
| - wget | |
| - autoconf | |
| - automake | |
| - libtool |