Consumer key: IQKbtAYlXLripLGPWd0HUA
Consumer secret: GgDYlkSvaPxGxC4X8liwpUoqKwwr3lCADbz8A7ADU
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
Consumer key: iAtYJ4HpUVfIUoNnif1DA
Consumer key: IQKbtAYlXLripLGPWd0HUA
Consumer secret: GgDYlkSvaPxGxC4X8liwpUoqKwwr3lCADbz8A7ADU
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
Consumer key: iAtYJ4HpUVfIUoNnif1DA
| #!/usr/bin/env python3 | |
| '''amfid_patch.py - Pedro José Pereira Vieito © 2016 | |
| This script can patch macOS 10.12.2 amfid daemon on memory | |
| to allow arbitrary entitlements in Developer ID signed binaries. | |
| Killing amfid will make the patch disapear: | |
| $ sudo kill -9 `pgrep amfid` | |
| You must run the script as a root (sudo) and with SIP disabled. | |
| #!/usr/bin/env python3 | |
| '''ymark.py - Pedro José Pereira Vieito © 2016 | |
| Compute marks from diferent subjects in YMARK format. | |
| Usage: | |
| ymark.py [-adeghow] [<search>...] | |
| Options: | |
| -a, --all Show all subjects, not only active | |
| -d, --details Show subject details |
| // | |
| // iTunes.swift | |
| // | |
| import AppKit | |
| import ScriptingBridge | |
| // MARK: Enum Definitions - | |
| @objc enum iTunesEKnd: NSInteger { |
| #!/usr/bin/env python3 | |
| '''VHDLSinGenerator.py - Pedro José Pereira Vieito © 2016 | |
| Generate sine waves for a VHDL test bench. | |
| Usage: | |
| VHDLSinGenerator.py <sample_bits> <wave_bits> | |
| Options: | |
| -h, --help show this help | |
| ''' |
| #!/usr/bin/env python3 | |
| '''CollageTool.py - Pedro José Pereira Vieito © 2016 | |
| Picasa CXF Collage Files Inspector. | |
| Usage: | |
| CollageTool.py <file> [--scale=<sc>] | |
| Options: | |
| --scale=<sc> Image scale [default: 10] | |
| -h, --help Show this help |
| #!/usr/bin/env python2 | |
| # -*- coding: utf-8 -*- | |
| # | |
| # PayPass.py is based on: | |
| # | |
| # - paypass.py | |
| # Mert Sarica <[email protected]> | |
| # - ChasePayPassBlink.py | |
| # Author: Brad Antoniewicz [email protected] | |
| # - ChaAP.py |
| #!/usr/bin/env python3 | |
| '''VGASimulator.py - Pedro José Pereira Vieito © 2016 | |
| View VGA output from a VHDL simulation. | |
| Ported from VGA Simulator: | |
| https://github.com/MadLittleMods/vga-simulator | |
| by Eric Eastwood <[email protected]> | |
| More info about how to generate VGA output from VHDL simulation here: | |
| http://ericeastwood.com/blog/8/vga-simulator-getting-started |
| #!/usr/bin/env bash | |
| if [ "$1" = "-h" -o "$1" = "--help" -o -z "$1" ]; then cat <<EOF | |
| Usage: | |
| `basename $0` <diskimage> | |
| Converts a Disk Image (DMG, ISO) to raw format. | |
| EOF | |
| exit; fi |