- You need to use this as a Generic ESP32 Device
- You need to flash the device with a bootloader, partitions and the firmware
- The
baud
is115200
- Find out your port
class CompileToStringPlugin { | |
constructor() { | |
this.PLUGIN_NAME = this.constructor.name; | |
} | |
apply(compiler) { | |
if (!this.options.isServer) { | |
compiler.hooks.normalModuleFactory.tap(this.PLUGIN_NAME, nmf => { | |
nmf.hooks.beforeResolve.tap(this.PLUGIN_NAME, result => { |
# nvm with automatic node version switch based on the .nvmrc of a directory | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | |
autoload -U add-zsh-hook | |
load-nvmrc() { | |
local nvmrc_path="$(nvm_find_nvmrc)" | |
if [ -n "$nvmrc_path" ]; then | |
local nvmrc_node_version=$(nvm version "$(cat "${nvmrc_path}")") |
# My oh my zsh aliases and functions | |
# Configure oh my zsh | |
alias zshrc="code ~/.zshrc" | |
alias pkg="code ./package.json" | |
alias dev="run dev" | |
alias build="run build" | |
alias start="run start" |
use tokio::{runtime::Builder, sync::{mpsc}}; | |
use winit::{event::{Event, WindowEvent}, event_loop::{ControlFlow, EventLoop}, window::{Window, WindowBuilder}}; | |
pub struct Gpu { | |
pub surface: wgpu::Surface, | |
pub device: wgpu::Device, | |
pub queue: wgpu::Queue, | |
pub sc_desc: wgpu::SwapChainDescriptor, | |
pub swap_chain: wgpu::SwapChain, |
/* ebnf file for es 6 - MAY CONTAIN ERRORS / DISAMBIGUITY */ | |
Grammer::= Statement | |
/* Lexical grammer */ | |
SourceCharacter ::= #x0000-#x10FFFF | |
InputElementDiv ::= WhiteSpace | LineTerminator | Comment | CommonToken | DivPunctuator | RightBracePunctuator | |
InputElementRegExp ::= WhiteSpace | LineTerminator | Comment | CommonToken | RightBracePunctuator | RegularExpressionLiteral | |
InputElementRegExpOrTemplateTail ::= WhiteSpace | LineTerminator | Comment | CommonToken | RegularExpressionLiteral | TemplateSubstitutionTail | |
InputElementTemplateTail ::= WhiteSpace | LineTerminator | Comment | CommonToken | DivPunctuator | TemplateSubstitutionTail | |
WhiteSpace ::= "<TAB>" | "<VT>" | "<FF>" | "<SP>" | "<NBSP>" | "<ZWNBSP>" | "<USP>" |
/de
from the url so you'll go to https://communities.apple.com/welcome
https://communities.apple.com/welcome
which is completely different from discussions.apple.com
but they should now forward you to https://discussions.apple.com/welcome
add linaria
yarn add -E linaria @zeit/next-css
.babelrc
{
{ | |
"preset": "ts-jest", | |
"testEnvironment": "node" | |
} |