cat .icons/Breeze-Hacked/index.theme
[Icon Theme]
Name=Breeze-Hacked
So you need
var FS = require('fs'); | |
var EventEmitter = require('events').EventEmitter; | |
// http://www.mjmwired.net/kernel/Documentation/input/joystick-api.txt | |
function parse(buffer) { | |
var event = { | |
time: buffer.readUInt32LE(0), | |
number: buffer[7], | |
value: buffer.readInt16LE(4) | |
} |
#pragma mark - Depend ESP8266Audio and ESP8266_Spiram libraries | |
/* | |
cd ~/Arduino/libraries | |
git clone https://github.com/earlephilhower/ESP8266Audio | |
git clone https://github.com/Gianbacchio/ESP8266_Spiram | |
*/ | |
#include <M5Core2.h> | |
#include <driver/i2s.h> |
Moved to https://ftvdb.com
#!/bin/bash | |
set -ex | |
STEAM_DIR=/home/$USER/.steam/steam/steamapps | |
AOE4_DIR=$STEAM_DIR/compatdata/1466860 | |
AOE4_WIN_DIR=$AOE4_DIR/pfx/drive_c/windows | |
AOE4_WIN_SYS32_DIR=$AOE4_WIN_DIR/system32 | |
AOE4_WIN_SYS64_DIR=$AOE4_WIN_DIR/syswow64 |