A few regular expressions to parse WIFI schemes such as:
WIFI:T:WEP;S:test;P:rainbows\;unicorns\:jedis\,ninjas\\ secure;;
(?<=T:)[a-zA-Z]+(?=;)
| You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis. | |
| ## Core Principles | |
| 1. EXPLORATION OVER CONCLUSION | |
| - Never rush to conclusions | |
| - Keep exploring until a solution emerges naturally from the evidence | |
| - If uncertain, continue reasoning indefinitely | |
| - Question every assumption and inference |
| const logger = require('winston'); | |
| const invalidate = require('invalidate-module'); | |
| const { resolve } = require('path'); | |
| const chokidar = require('chokidar'); | |
| process.on('unhandledRejection', (reason, p) => { | |
| logger.error('Unhandled Rejection at: Promise ', p, reason); | |
| }); | |
| const src = (...args) => resolve(__dirname, ...args); |
| /* https://leahayes.wordpress.com/2011/08/28/documenting-javascript-with-jsdoc3/ | |
| Namespaces can still be documented when a more abstract mechanism is used. @lends allows members to be added to an existing namespace: | |
| */ | |
| /** | |
| * Root namespace | |
| * @namespace root | |
| */ | |
| $namespace('root', /** @lends root **/ { | |
| /** |
| /* Title: inoise8_pal_demo.ino | |
| * | |
| * By: Andrew Tuline | |
| * | |
| * Date: August, 2016 | |
| * | |
| * This short sketch demonstrates some of the functions of FastLED, including: | |
| * | |
| * Perlin noise | |
| * Palettes |
| alias gh="open \`git remote -v | grep [email protected] | grep fetch | head -1 | cut -f2 | cut -d' ' -f1 | sed -e's/:/\//' -e 's/git@/http:\/\//'\`" |