Words that sound alike, but are spelled differently (usually different meanings).
- filter out dictionary words, resulting in a word list that reduces confusion for verbal password phrases
- rhymes (song lyrics, poetry)
- humor/jokes
const radioGroup = Machine( | |
{ | |
id: "radioGroup", | |
initial: "emptied", | |
context: { | |
selected: "", | |
}, | |
states: { | |
emptied: { | |
on: { |
const radioItem = Machine( | |
{ | |
id: 'checkbox', | |
initial: 'nix', | |
states: { | |
nix: { | |
on: { | |
DISABLE: 'nixDisabled', | |
SELECT: 'aver', | |
}, |
const labelSwitch = Machine( | |
{ | |
id: 'labelSwitch', | |
initial: 'nix', | |
context: { | |
retries: 0 | |
}, | |
states: { | |
nix: { | |
entry: ['activateNix'], |
const fetchMachine = Machine( | |
{ | |
id: 'checkbox', | |
initial: 'down', | |
context: { | |
retries: 0 | |
}, | |
states: { | |
down: { | |
on: { |
const superButton = Machine( | |
{ | |
id: 'superButton', | |
initial: 'ready', | |
context: { | |
disabled: 0 | |
}, | |
states: { | |
ready: { | |
on: { |
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>My page</title> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="minimum-scale=1, initial-scale=1, width=device-width" /> | |
<script src="https://cdn.jsdelivr.net/combine/npm/[email protected]/umd/react.development.js,npm/[email protected]/umd/react-dom.development.js,npm/@material-ui/[email protected]/umd/material-ui.development.js,npm/@babel/[email protected]/babel.min.js" crossorigin="anonymous"></script> | |
<!-- Seperate Links | |
src: https://github.com/mui-org/material-ui/blob/master/examples/cdn/index.html --> |
// jpeg_split.c: Write each scan from a multi-scan/progressive JPEG. | |
// This is based loosely on example.c from libjpeg, and should require only | |
// libjpeg as a dependency (e.g. gcc -ljpeg -o jpeg_split.o jpeg_split.c). | |
#include <stdio.h> | |
#include <jerror.h> | |
#include "jpeglib.h" | |
#include <setjmp.h> | |
#include <string.h> | |
void read_scan(struct jpeg_decompress_struct * cinfo, |