Skip to content

Instantly share code, notes, and snippets.

View svagi's full-sized avatar

Jan Šváger svagi

View GitHub Profile
@svagi
svagi / machine.js
Created September 30, 2020 07:18
Generated by XState Viz: https://xstate.js.org/viz
const routerMachine = Machine({
id: "routerMachine",
initial: "topics",
states: {
topics: {
on: {
next: "dashboard",
},
},
dashboard: {
@svagi
svagi / machine.js
Created May 8, 2020 18:05
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions

Keybase proof

I hereby claim:

  • I am svagi on github.
  • I am svagi (https://keybase.io/svagi) on keybase.
  • I have a public key whose fingerprint is 0792 2B57 6EE3 01A0 8CC7 7041 ACD0 7C2A D71E B183

To claim this, I am signing this object:

@svagi
svagi / getPrimes.js
Last active January 31, 2016 15:23
Function for finding all prime numbers up to any given limit (Sieve of Eratosthenes)
function getPrimes (n) {
const sieve = new (Uint32Array || Array)(n + 1);
const primes = [];
const length = sieve.length;
const limit = Math.floor(Math.sqrt(n + 1))
let p = 0;
let m = 0;
for (p = 2; p <= limit; p++) {
for (m = p * 2; m < length; m += p){
@svagi
svagi / BSI_osnova.md
Created May 19, 2015 14:12
BSI - osnova předmětu

Biologické a akustické signály

Úvod a opakování

  • Příklady biologických a akustických signálů (akční potenciál buňky, EKG, EEG, EMG,CP, PCG, řeč, hudební nástroje)
  • Připomenutí základů zpracování digitálních signálů, spektrální analýza, filtry a jejich metody návrhu

Digitální audioefekty

  • LTI: ekvalizér, delay, reverb
  • Lineární: tremolo, vibrato, chorus, flanger, wah-wah, phaser
  • Nelineární: (cokoliv dalšího)
{
"100": "Continue",
"101": "Switching Protocols",
"200": "OK",
"201": "Created",
"202": "Accepted",
"203": "Non-Authoritative Information",
"204": "No Content",
"205": "Reset Content",
"206": "Partial Content",