Prints all your paystubs from Trinet one by one. When saving PDFs, the date is used as the filename.
- Log in to HR Passport.
- Myself → My Payroll → Earnings Statements
- (Click "View All Paychecks" at the bottom of the page if such a link exists)
| # I was targeting a machine using this version of Debian. Hopefully, you're targeting something newer. | |
| docker run --rm -it debian:stretch bash | |
| # This version of Debian is old enough that the package list has been moved to the archives. | |
| # You may not need to do this. | |
| # Note: if you're using a backports distribution, you'll need to do the same for /etc/apt/sources.list.d/* | |
| sed -i s/deb.debian.org/archive.debian.org/g /etc/apt/sources.list | |
| apt update # Some errors. Seems fine? | |
| # aptitude is easier to use if there are problems/conflicts. |
| #!/bin/bash | |
| # Call like you would `diff` | |
| # `./diff-changed-lines.sh old new` | |
| # Outputs the lines numbers of the new file | |
| # that are not present in the old file. | |
| # That is, outputs line numbers for new lines and changed lines | |
| # and does not output line numbers deleted or unchanged lines. |
| #!/bin/bash | |
| function usage { | |
| echo "$0 [-n NUMBER] [YEAR]" | |
| } | |
| date -j &> /dev/null | |
| if [ $? -eq 0 ]; then | |
| # OS X | |
| function mardigras { |
| config.json | |
| .credentials | |
| node_modules |
| #!/usr/bin/env php | |
| <?php | |
| /* | |
| * echo -n "KEY" | php totp.php | |
| * | |
| * --debug: Print the output of each step of the algorithm | |
| * --raw : Use the KEY as is. By default (without --raw), KEY is treated as base32 encoded | |
| */ |
| <?php | |
| class A { | |
| protected $protected = 'protected'; | |
| private $private = 'private'; | |
| public $public = 'public'; | |
| function loop_array() { | |
| foreach ( (array) $this as $key => $value ) { | |
| var_export( "$key => $value" ); |
| -----BEGIN PGP MESSAGE----- | |
| Version: GnuPG/MacGPG2 v2.0.22 (Darwin) | |
| Comment: GPGTools - https://gpgtools.org | |
| hQEMA0+4ouatXFv0AQgAsJhkxSXK75DOmQmKWdXRVvi+yzo2JFs8c2MSzXXEVgR8 | |
| DBd2ox8fnlJMeQCUbCDEogj46zR4C4/apsAiY4gj0qfqJbcuPL78qgAw06Cc/shy | |
| sxZgt/7OA6oPkioi2mTwLGEJKnoStsMiokiJHru01EY9fX39CkpmrjQtBj4ShRnI | |
| Uqj9c8kFpvGmMTxFs2iPEbKqczufWIIzldlYmdeRXRwtXu7vEzytqYcapMVLrILi | |
| /8Stqzmb5fXwzDTJ8aZbiGivbBe3rIHvuFDxgysDHlbSYQhzphsofA6MdPJYmpwh | |
| 7ifo45QUp/wkrAzHdsmccjeoWtmmoNL9DmgVXrDhwdLpAf0xnccBFPTqfpBRXsf2 |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| /** | |
| * $to_utf8 = Jetpack__To_UTF8::init(); | |
| * $data = $to_utf8->convert( $data ) | |
| */ | |
| class Jetpack__To_UTF8 { | |
| static $instance; | |
| private $from; |