I hereby claim:
- I am wizofe on github.
- I am wizofe (https://keybase.io/wizofe) on keybase.
- I have a public key ASBu40xOEbGwtW3EyyMTghrgv90RTWbjkkPtDE0UU5sexQo
To claim this, I am signing this object:
| ====================================================================== | |
| FAIL: test_glob (test.test_pathlib.PosixPathTest) | |
| ---------------------------------------------------------------------- | |
| Traceback (most recent call last): | |
| File "/Volumes/MyHeart/_dev/code/cpython/Lib/test/test_pathlib.py", line 2119, in test_glob | |
| self.assertEqual(given, expect) | |
| AssertionError: Items in the first set but not the second: | |
| PosixPath('/Volumes/MyHeart/_dev/code/cpython/build/test_python_60842/@test_60842_tmp/FILEa') |
| ====================================================================== | |
| ERROR: test_getgrouplist (test.test_posix.PosixTester) | |
| ---------------------------------------------------------------------- | |
| Traceback (most recent call last): | |
| File "/Users/wizofe/kano/cpython/Lib/test/test_posix.py", line 972, in test_getgrouplist | |
| self.assertIn(group, posix.getgrouplist(user, group)) | |
| OSError: [Errno 25] Inappropriate ioctl for device | |
| ---------------------------------------------------------------------- |
| SYSCALL(args) = return | |
| == CPython 3.8.0a0 (heads/master:da58533ac6, Apr 3 2018, 16:54:53) [Clang 9.1.0 (clang-902.0.37.1)] | |
| == Darwin-17.5.0-x86_64-i386-64bit little-endian | |
| == cwd: /Volumes/pythontesting/cpython/build/test_python_26294 | |
| == CPU count: 4 | |
| == encodings: locale=UTF-8, FS=utf-8 | |
| Run tests sequentially | |
| 0:00:00 load avg: 2.15 [1/1] test_posix | |
| testNoArgFunctions (test.test_posix.PosixTester) ... ok | |
| test_access (test.test_posix.PosixTester) ... ok |
| SYSCALL(args) = return | |
| Traceback (most recent call last): | |
| File "tps.py", line 2, in <module> | |
| os.getgrouplist('wizofe', 20) | |
| FileNotFoundError: [Errno 2] No such file or directory | |
| madvise(0x101956000, 0x3000, 0x5) = 0 0 | |
| open("/dev/dtracehelper\0", 0x2, 0xFFFFFFFFEE6E8BA0) = 3 0 | |
| ioctl(0x3, 0x80086804, 0x7FFEEE6E8B00) = 0 0 | |
| close(0x3) = 0 0 | |
| access("/AppleInternal/XBS/.isChrooted\0", 0x0, 0x0) = -1 Err#2 |
| #!/bin/sh | |
| # Start all system services sequentially | |
| wants=$(systemctl show -p Wants multi-user.target | sed 's/^Wants=//' | tr ' ' '\n' | sort) | |
| log=/var/tmp/multi-user-steps-$(date +%Y%m%d-%H%M%S) | |
| log () { | |
| echo "$* ..." | tee -a "$log" | |
| sync |
| βββββββββββββββββ¦ββββββββββββββββββββββ€ββββββββββββββ€ββββββββββββββββ€ββββββββββββββββ | |
| β Name β Link / Switch β Normal Mode β Fastboot Mode β Recovery Mode β | |
| β ββββββββββββββββ¬ββββββββββββββββββββββͺββββββββββββββͺββββββββββββββββͺββββββββββββββββ£ | |
| β Auto Power up β Link 1-2 / Switch 1 β closed / ON β closed / ON β closed / ON β | |
| β Recovery β Link 3-4 / Switch 2 β open / OFF β open / OFF β closed / ON β | |
| β Fastboot β Link 5-6 / Switch 3 β open / OFF β closed / ON β open / OFF β | |
| βββββββββββββββββ©ββββββββββββββββββββββ§ββββββββββββββ§ββββββββββββββββ§ββββββββββββββββ |
I hereby claim:
To claim this, I am signing this object:
See http://stackoverflow.com/questions/7773181/git-keeps-prompting-me-for-password
Make sure you are cloning your repos using ssh:
ssh://[email protected]/username/repo.git
If you use https or git, you will always be asked for username/password:
https://github.com/username/repo.git
git://github.com/username/repo.git
| from __future__ import print_function | |
| import os | |
| import glob | |
| import re | |
| import json | |
| from pprint import pprint | |
| import comtypes.client as ct | |
| from comtypes import COMError | |
| ### Credits: |
| #!/bin/sh | |
| allpdfs="" | |
| for f in "$@" ; do | |
| filename=$(basename "$f") | |
| filename="${filename%.*}" | |
| pygmentize -f tex -O linenos -O title=$( echo $filename | tr '_' '-').py -O full -O style=default -o /tmp/$filename.tex $f | |
| pdflatex -jobname=$filename -output-directory=/tmp /tmp/$filename.tex | |
| allpdfs="$allpdfs /tmp/$filename.pdf" |