Skip to content

Instantly share code, notes, and snippets.

View isontheline's full-sized avatar

isontheline isontheline

View GitHub Profile
@isontheline
isontheline / atom-lite-ble-keyboard.ino
Created January 17, 2022 19:30 — forked from 3110/atom-ble-keyboard.ino
ATOM LiteをBLEキーボードにする
/*
* ATOM LiteをBLEキーボードにする。
*
* 送信するキーを変更するにはSEND_KEYの値を変更する。
*/
#include <BleKeyboard.h> // https://github.com/T-vK/ESP32-BLE-Keyboard
#include <M5Atom.h>
const uint8_t SEND_KEY = 0x20; // 0x20: スペース
@isontheline
isontheline / xcode-downloader.rb
Created October 16, 2021 18:05
Script for reliably downloading binaries (e.g. Xcode) from Apple's CDN
#!/usr/bin/env ruby
print "What is the URL of your Apple Downloads resource?\nURL:"
url = gets.strip
print "What is the ADCDownloadAuth cookie token:\nADCDownloadAuth: "
token = gets.strip
command = "aria2c --header \"Host: adcdownload.apple.com\" --header \"Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\" --header \"Upgrade-Insecure-Requests: 1\" --header \"Cookie: ADCDownloadAuth=#{token}\" --header \"User-Agent: Mozilla/5.0 (iPhone; CPU iPhone OS 10_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B72 Safari/602.1\" --header \"Accept-Language: en-us\" -x 16 -s 16 #{url} -d ~/Downloads"
@isontheline
isontheline / install-pyserial-on-python2.md
Last active May 24, 2021 15:32
ESP32 - ModuleNotFoundError: No module named 'serial'
If you encounter error "ModuleNotFoundError: No module named 'serial'" on your macOS when using Arduino, 
it's perhaps Arduino is using Python 2 and not Python 3.
This Gist will allow you to install the pyserial module on Python 2

1) Download the latest pyserial .tar.gz file on

https://pypi.org/project/pyserial/#files

2) Extract the archive

@isontheline
isontheline / ANSI.md
Created May 12, 2021 19:59 — forked from fnky/ANSI.md
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1b
  • Decimal: 27