This file contains 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
/** | |
Run a scan operation across multiple observables | |
Rx.EXT.multiScan((state$) => [ | |
Rx.Observable | |
.just({ initial: false }) | |
.withLatestFrom(state$, (x, state) => ({ ...state, ...x })), | |
Rx.Observable | |
.interval(1000) |
This file contains 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
/** | |
Create a file-like object suitable for use with the fetch() API ecosystem | |
fetch('/some/path', { method: 'POST', body: tojson({foo: 'Foo!'}) }); | |
// Sets the content-type of the request automatically: | |
const req = new Request('/some/path', { | |
mode: 'cors', | |
headers: { 'Accept': 'application/json' }, | |
body: tojson({ foo: 'Foo!' }), |
This file contains 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
#!/usr/bin/env sh | |
# Datastar POC in a bottle via POSIX sh and socat | |
_html() { | |
printf 'HTTP/1.0 200\r | |
Content-Type: text/html\r | |
\r | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> |
This file contains 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
/** | |
Order by compare function for the builtin toSorted/sort methods | |
[ | |
{ name: 'Angie', age: 32, state: 'TN' }, | |
{ name: 'Bill', age: 56, state: 'TN' }, | |
{ name: 'Bob', age: 56, state: 'TN' }, | |
{ name: 'Jill', age: 17, state: 'AZ' }, | |
{ name: 'Mary', age: 23, state: 'UT' }, | |
].toSorted(orderBy( |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>A wrapper around FormData</title> | |
<style> | |
form > div { margin-bottom: 1em; } |
This file contains 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
<!doctype html> | |
<html lang=en> | |
<head> | |
<meta charset=utf-8> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<style> | |
.spinner { | |
margin: 0; | |
display: inline-block; |
This file contains 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
<!doctype html> | |
<html lang=en> | |
<head> | |
<meta charset=utf-8> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
</head> | |
<body> | |
<script src="./index.js"></script> | |
</body> | |
</html> |
This file contains 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
### mlevil | |
echo "-x${HOME}/.mlevil.lua" | |
# Normal mode | |
echo '-Kkmap_normal,,0' | |
# (define-key evil-normal-state-map "a" 'evil-append) | |
# (define-key evil-normal-state-map "A" 'evil-append-line) | |
# (define-key evil-normal-state-map "c" 'evil-change) | |
# (define-key evil-normal-state-map "C" 'evil-change-line) |
This file contains 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 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
#!/usr/bin/env sh | |
# Wrapper to fetch CSRF token and authenticate via the login page | |
url='http://localhost:3002' | |
login="${url}/sign_in" | |
curl -sS -c cookies.txt "$login" | | |
htmlstar sel -t -v "//_:input[@name='csrf_token']/@value" -o ' | |
' | xargs -I{} curl -sS -c cookies.txt -b cookies.txt "$login" \ | |
--data-urlencode 'user[email][email protected]' \ |
NewerOlder