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
document.querySelectorAll('template[id]').forEach(({id, content}) => | |
customElements.define(id, class extends HTMLElement { | |
constructor() { | |
super().attachShadow({mode: 'open'}).appendChild(content.cloneNode(true)); | |
[...this.attributes].forEach(({name, value}) => { | |
const span = document.createElement('span'); | |
this.appendChild(Object.assign(span, {slot: name})).textContent = value; | |
this.removeAttribute(name) | |
this.shadowRoot.querySelectorAll(`[${name}]`).forEach(el => | |
!el.getAttribute(name) && el.setAttribute(name, value)); |
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
<iframe hidden onload="this.replaceWith(...contentDocument.body.children)" src="head.html"></iframe> |
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
<script> | |
function formRequest(method) { | |
const action = event.target.action; | |
event.preventDefault(); | |
fetch(action, { method, body: new FormData(event.target) }) | |
.then(res => res.redirected && (location.href = res.url)); | |
} | |
const PUT = formRequest.bind(null, "PUT"); | |
const DELETE = formRequest.bind(null, "DELETE"); | |
</script> |
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
package main | |
import ( | |
"fmt" | |
"net" | |
"os" | |
"sync" | |
"time" | |
) |
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
(define (tokenize script-text) | |
(let ((tkns (list "")) (in-str? #f)) | |
(define (append-str! str) | |
(set-car! tkns (string-append (car tkns) str))) | |
(define (add-tkn! . strs) | |
(if (string=? (car tkns) "") (set! tkns (cdr tkns))) | |
(set! tkns (append (reverse strs) tkns))) |
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
const ElementBuilder = new Proxy({}, { get: (_, tagName) => (...args) => { | |
const element = Object.assign(document.createElement(tagName), ...args); | |
element.append(...args.filter(arg => arg.constructor !== Object)); | |
return element; | |
}}); | |
const EventHandler = (element, fn) => Object.assign(element || {}, { | |
update: (...newProps) => element.replaceWith(fn(...newProps)), | |
listen: (eventType, handler) => (element.dataset.event = "", element) | |
.addEventListener(eventType, ({ detail }) => handler(detail)), |
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
export function useDebounce(handler: (value: string) => void, millisec: number = 500) { | |
const [value, setValue] = useState(''); | |
useEffect(() => { | |
const timeoutId = setTimeout(() => handler(value), millisec); | |
return () => clearTimeout(timeoutId); | |
}, [value, handler, millisec]); | |
return setValue; | |
} |
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
-- takes all | |
love = { | |
audio = { | |
getActiveEffects = function(...) end, --Gets a list of the names of the currently enabled effects. | |
getActiveSourceCount = function(...) end, --Gets the current number of simultaneously playing sources. | |
getDistanceModel = function(...) end, --Returns the distance attenuation model. | |
getDopplerScale = function(...) end, --Gets the global scale factor for doppler effects. | |
getEffect = function(...) end, --Gets the settings associated with an effect. | |
getMaxSceneEffects = function(...) end, --Gets the maximum number of active effects. | |
getMaxSourceEffects = function(...) end, --Gets the maximum number of active Effects for each Source. |
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
xmodmap -e "keycode 49 = apostrophe quotedbl bar bar bar" |
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
#!/bin/bash | |
# Add these lines in .bashrc and set Raspberry Pi to auto login | |
if [ ! -f /tmp/fluidsynth-bootloaded ]; then | |
touch /tmp/fluidsynth-bootloaded | |
killall fluidsynth | |
fluidsynth -a alsa -g 1 /usr/share/sounds/sf2/default-GM.sf2 -o midi.autoconnect=1 -c 4 | |
fi |
NewerOlder