verify uefi
check internet
install vim
| function debounce(func, wait, immediate) { | |
| var timeout; | |
| return function() { | |
| var context = this, args = arguments; | |
| var later = function() { | |
| timeout = null; | |
| if (!immediate) func.apply(context, args); | |
| }; | |
| var callNow = immediate && !timeout; | |
| clearTimeout(timeout); |
| module.exports = { | |
| "env": { | |
| "browser": false, | |
| "es6": true, | |
| "node": true, | |
| "mocha": true | |
| }, | |
| "globals": { | |
| "document": false, |
| # https://github.com/blinks zsh theme | |
| function _prompt_char() { | |
| if $(git rev-parse --is-inside-work-tree >/dev/null 2>&1); then | |
| echo "%{%F{blue}%}±%{%f%k%b%}" | |
| else | |
| echo ' ' | |
| fi | |
| } |
| {"v":"4.10.1","fr":29.9700012207031,"ip":0,"op":62.0000025253118,"w":400,"h":400,"nm":"Comp 1","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"voice Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[200,200,0],"ix":2},"a":{"a":0,"k":[270,270,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.022,0],[0,0],[0,0.023],[0,0],[-0.021,0.002],[0,0],[0,7.956],[0,0],[0.023,0],[0,0],[0,-0.023],[0,0],[7.542,-0.351],[0,7.94],[0,0],[0.022,0],[0,0],[0,-0.023],[0,0],[-7.895,-0.994],[0,0],[0,-0.021],[0,0],[0.023,0],[0,0],[0,-0.023],[0,0],[-0.023,0],[0,0],[0,0.022],[0,0]],"o":[[0,0],[-0.023,0],[0,0],[0,-0.021],[0,0],[7.893,-0.994],[0,0],[0,-0.023],[0,0],[-0.023,0],[0,0],[0,7.55],[-8.022,0.374],[0,0],[0,-0.023],[0,0],[-0.023,0],[0,0],[0,7.958],[0,0],[0.021,0.002],[0,0],[0,0.023],[0,0],[-0.023,0],[0,0],[0,0.022],[0,0],[0.022,0],[0,0],[0,-0.023]],"v":[[10.752,11.56],[0.917,11.56],[0.876,11.518] |
| function hashText(text: string, seed = 42): number { | |
| const encoder = new TextEncoder(); | |
| const inputUint8Array = encoder.encode(text); | |
| return murmur3_32(inputUint8Array, inputUint8Array.length, seed); | |
| } |
const person = {
name: 'Brendan',
bread: true
}it can be changed/modified
person.jam = trueCan be interrupted/restarted by React
function Component({ prop }) {
console.log('1. Function body starts');
// STATE HOOKS - Initialize or return current state
const [state, setState] = useState(initial); // Returns current state
const [state, dispatch] = useReducer(fn, init); // Returns current state