Testing done using a Canon EOS 600D and a Canon EF-S18-55mm f/3.5-5.6 IS II.
- VBAT
- DET (common with P-GND on lens side)
- P-GND
- VDD
- DCL
- DLC
| "use strict"; | |
| const crypto = require("crypto"); | |
| const fetch = require("node-fetch"); | |
| const BLOCK_SIZE = 16; | |
| const PADDING_ORACLE_PAYLOAD = '","user":"admin"}'; | |
| const padToBlockSize = text => { | |
| const unpadded = Buffer.from(text, "binary"); |
| #!/bin/bash | |
| defaults write com.oracle.workbench.MySQLWorkbench NSRequiresAquaSystemAppearance -bool yes | |
| echo "Successfully patched!" | |
| echo "Now restart MySQL Workbench to see the Workbench in light theme." | |
| #Restart MySQL Workbench after executing this. |
| #!/usr/bin/env python | |
| # | |
| # Graph temperature logs from the klippy.log file generated by | |
| # https://github.com/KevinOConnor/klipper | |
| # | |
| # You will need a free https://plot.ly account and an API key from: | |
| # https://plot.ly/settings/api#/ | |
| # | |
| # Usage: | |
| # pip install --user plotly cryptography cryptography nose tornado six |
| AWSTemplateFormatVersion: 2010-09-09 | |
| Resources: | |
| Bucket: | |
| Type: 'AWS::S3::Bucket' | |
| Properties: | |
| AccessControl: PublicRead | |
| WebsiteConfiguration: | |
| IndexDocument: index.html | |
| ErrorDocument: error.html | |
| Distro: |
| for bucket in $(aws s3api list-buckets --query 'Buckets[*].{Name:Name}' --output text) | |
| do | |
| echo "$bucket:" | |
| region=$(aws s3api get-bucket-location --bucket $bucket --query 'LocationConstraint' --output text | awk '{sub(/None/,"eu-west-1")}; 1') | |
| parts=$(aws s3api list-multipart-uploads --bucket $bucket --region $region --query 'Uploads[*].{Key:Key,UploadId:UploadId}' --output text) | |
| if [ "$parts" != "None" ]; then | |
| IFS=$'\n' |
| 10.3 (Panther): | |
| https://swscan.apple.com/scanningpoints/scanningpointX.xml | |
| 10.4 (Tiger): | |
| https://swscan.apple.com/content/catalogs/index.sucatalog | |
| https://swscan.apple.com/content/catalogs/index-1.sucatalog | |
| 10.5 (Leopard): | |
| https://swscan.apple.com/content/catalogs/others/index-leopard.merged-1.sucatalog |
| zfs list -t snapshot -H -o name | grep "201509[0-9].*" | xargs -n1 echo | |
| # zfs list -t snapshot -H -o name | grep "201509[0-9].*" | xargs -n1 zfs destroy |
| #!/usr/bin/python | |
| # pylint: disable=fixme, line-too-long, missing-docstring, C0103 | |
| # Many parts of this were taken from Greg Neagle's COSXIP (https://github.com/munki/createOSXinstallPkg) | |
| # No parsing of 'BannedRegexMatchVersion' keys currently because regex is hard. | |
| # | |
| # Output prints a list of incompatible apps for each major OS X version | |
| # with its version and optional file listing of the target app. | |
| import plistlib |