Scott Mcdermott
Scott Mcdermott
I find that I'm wondering, "is my git-crypt repository locked, or unlocked?" Sometimes, I cannot remember. Then have to go poking in files to see... unless there is some easier...
for example, `git-crypt status` says something like this: ``` ... encrypted: my.secret not encrypted: .git-crypt/.gitattributes not encrypted: .git-crypt/keys/default/0/DEADBEAF.gpg ``` but we already know that... really, the git-crypt metadata dir should...
Not sure if I'm doing something wrong, or it's a bug: ``` $ git-crypt --version git-crypt 0.5.0 $ git --version git version 2.6.1 $ cd /tmp && mkdir test &&...
Virtual tags should have parity with real tags when searched using `tags:` filter (or eg `tags.word:` which I'm using to test string for tags membership). No reason virtual tags should...
with taskwarrior v2.6.2: ``` $ src/task calc 12h + 25m + 30s P750DT12H30S ``` discrepant with https://taskwarrior.org/docs/commands/calc/ section "Durations" where it claims the output should be: ``` $ task calc...
Seems like it should not be dividing by 1000 to convert K to M, etc. These should be using powers of 2 (1024 divisor), no? Perhaps use bit shifts, ie...
The syntax for `timew start` is ``` timew start [] [...] ``` but if a tag name is used that matches initial substring of a report (in `$TIMEWARRIORDB/extensions`), it will...
##### SUMMARY when `gcp_compute_disk_info` is used to obtain a source disk and then given to `gcp_compute_snapshot`, the snapshot usually fails with: > "msg": "GCP returned error: {'error': {'code': 400, 'message':...
##### SUMMARY when `gcp_compute_snapshot` is used to obtain a source snapshot and then given to `gcp_compute_disk` via `source_snapshot` arg, the disk creation fails with: > "msg": "GCP returned error: {'error':...
##### SUMMARY `gcloud compute disks create` provides a `--guest-os-features` option, which can be used to provide flags on the created disk if used as a boot disk, such as `MULTI_IP_SUBNET`...