This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
esphome: | |
name: doorbell | |
friendly_name: Doorbell | |
esp32: | |
board: esp32dev | |
framework: | |
type: arduino | |
# Enable logging |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
esphome: | |
name: windrichting | |
friendly_name: Windrichting | |
esp8266: | |
board: esp01_1m | |
# Enable logging | |
logger: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
esphome: | |
name: matrixclock | |
friendly_name: MatrixClock | |
esp8266: | |
board: d1_mini | |
# Enable logging | |
logger: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Read a C file and convert all binary literals to hex literals | |
// Useful for converting new c code to c99 compatible code | |
// The first argument is the input file name | |
// The second argument is the output file name | |
const fs = require('fs'); | |
const inputname = process.argv[2]; | |
const outputname = process.argv[3]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
||^ | |
||.*^ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0.0.0.0 oculus.com | |
0.0.0.0 graph.oculus.com | |
0.0.0.0 scontent.oculuscdn.com | |
0.0.0.0 time.facebook.com | |
0.0.0.0 ugc.oculuscdn.com | |
0.0.0.0 graph.facebook-hardware.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Eris = require('eris'); | |
const fetch = require('node-fetch'); | |
const readline = require('readline-sync'); | |
const emoji = require('node-emoji'); | |
async function main() { | |
console.log('Welcome!'); | |
let token; |