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
public static void Main(string[] args) | |
{ | |
#if DEBUG | |
GetJobsFromQueue(); | |
#else | |
var host = new JobHost(); | |
host.RunAndBlock(); | |
#endif | |
} | |
- regex101 Online regex tester for PHP, PCRE, JavaScript and Python that highlights pattern and matches on the fly. Also features a Code generator and a regex debugger!
https://regexr.com/ Online regex tester with gut regex replace and explain functionality.
https://www.debuggex.com/ Can show neat expression diagrams (not active anymore).
https://regexper.com/ translates regular expressions into an SVG image (for documentation or embedding)
- RexV2 Evaluator for PHP PCRE, PHP Posix!, Perl, Python, Javascript, Node.JS!
- https://myregextester.com/index.php Allows to optimize patterns (I guess this is based on this Perl's Regexp::Optimizer).
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
import time | |
from machine import Pin, ADC, UART | |
from picographics import PicoGraphics, DISPLAY_ENVIRO_PLUS | |
from pimoroni import RGBLED, Button | |
from breakout_bme68x import BreakoutBME68X, STATUS_HEATER_STABLE | |
from pimoroni_i2c import PimoroniI2C | |
from breakout_ltr559 import BreakoutLTR559 | |
from pms5003 import PMS5003 | |
import WIFI_CONFIG | |
from network_manager import NetworkManager |
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
# Thanks to this configuration for the initial legwork https://github.com/kbx81/esphome-configs/blob/main/dev/esp-funhouse.yaml | |
esphome: | |
name: funhouse | |
friendly_name: Funhouse | |
platformio_options: | |
board_build.mcu: esp32s2 | |
board_build.variant: esp32s2 | |
esp32: |