I hereby claim:
- I am zhovner on github.
- I am zhovner (https://keybase.io/zhovner) on keybase.
- I have a public key whose fingerprint is 61C0 51E3 7F9C F69F 203E A461 20C1 83F8 3DBA 0E63
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| # Some things taken from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # Set the colours you can use | |
| black='\033[0;30m' | |
| white='\033[0;37m' | |
| red='\033[0;31m' | |
| green='\033[0;32m' |
| Device #1: Hawaii, 3072MB, 1000Mhz, 44MCU | |
| Device #2: Hawaii, 3072MB, 1000Mhz, 44MCU | |
| Device #3: Hawaii, 3072MB, 1000Mhz, 44MCU | |
| Device #4: Hawaii, 3072MB, 1000Mhz, 44MCU | |
| Hashtype: MD4 | |
| Workload: 1024 loops, 256 accel | |
| Speed.GPU.#1.: 22029.8 MH/s | |
| Speed.GPU.#2.: 22070.9 MH/s |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" | |
| "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Label</key> | |
| <string>prehensile.networkwatcher</string> | |
| <key>ProgramArguments</key> | |
| <array> | |
| <string>/usr/bin/python</string> |
| Index: stk500v2.c | |
| =================================================================== | |
| --- stk500v2.c (6.0.1) | |
| +++ stk500v2.c (working copy) | |
| @@ -1618,9 +1618,9 @@ | |
| baud = USB_DEVICE_AVRISPMKII; | |
| PDATA(pgm)->pgmtype = PGMTYPE_AVRISP_MKII; | |
| pgm->set_sck_period = stk500v2_set_sck_period_mk2; | |
| - pgm->fd.usb.max_xfer = USBDEV_MAX_XFER_MKII; | |
| - pgm->fd.usb.rep = USBDEV_BULK_EP_READ_MKII; |
| with AWS.Status; | |
| with AWS.Response; | |
| package Worker_Echoes.Apple.Captive is | |
| function Service (Request : AWS.Status.Data) | |
| return AWS.Response.Data; | |
| end Worker_Echoes.Apple.Captive; |
| const | |
| // Begining APDU command. "Payment System Environment (PSE)" 2pay.sys.ddf01 | |
| // The card should response with Application Identifier (AID) | |
| PPSE = '00 a4 04 00 0e 32 50 41 59 2e 53 59 53 2e 44 44 46 30 31 00'; | |
| // Application Identifier (AID) start command prefix | |
| // Possible AID's: | |
| // A0000000031010 Visa International | |
| // A0000000032020 Visa International | |
| // A0000000041010 Mastercard International |
| class StlinkCustom < Formula | |
| desc "STM32 discovery line Linux programmer" | |
| homepage "https://github.com/texane/stlink" | |
| url "https://github.com/texane/stlink/archive/v1.5.1.tar.gz" | |
| sha256 "e0145fbfd3e781f21baf12a0750b0933c445ee6338e36142836bf5a2c267e107" | |
| license "BSD-3-Clause" | |
| depends_on "cmake" => :build | |
| depends_on "pkg-config" => :build | |
| depends_on "libusb" |
| #!/usr/bin/env pn53x-tamashell | |
| 02; // Get PN532 Firmware Version | |
| // Set Debug Bits. Read more here on page 185 https://www.nxp.com/docs/en/nxp/data-sheets/PN532_C1.pdf | |
| // Syntax: 08 63 28 NN | |
| // Where NN Byte is a register byte for AUX1 and AUX2 | |
| //08 63 28 56; Set AUX1 to ADC_I state and AUX2 to ADC_Q | |
| 08 63 28 50; Set AUX1 to ADC_I state and AUX2 to nothing |
| #!/opt/homebrew/bin/python3 | |
| ################################################### | |
| # Remote Time Machine helper for remote SMB share # | |
| # Run backup only if SMB server speed is high # | |
| ################################################### | |
| ### Requirements: | |
| # brew install iperf3 python3 |