Skip to content

Instantly share code, notes, and snippets.

View bushaev-denis's full-sized avatar

Bushaev Denis bushaev-denis

  • Earth
View GitHub Profile
This file has been truncated, but you can view the full file.
0eNrEvWuOXMeSpTsX/s482P52P2PoAVzgQmhQEqFDNEUKJFW4hYLm3hHJjIcifO1Yn+etU/2juoqZWmnb7eHu5mbL/uvdz5/+/PDH14+fv//vn798+T/v/vlfl3/59u6f/+/V/3n82bfP7/94/v7l+bevH389/t//37t/pvj07j+P/99fT+/e//zty6c/v394Pv7eHx8///bun9+//vnh6d3HX758/gH37eNvn99/Ov633//zjw/v/vnu4/cPv797evf5/e/H/+vr+4+f3h2QPn7+9cMBPPz1NPlP/uPj1+9/Hv7l/F/9+I3n/+fqv4zov/xfV/9l+uunp3cfPn//+P3jhx8yv/wf//m/P//5+88fvh6EOv/XP3/87fnDpw+/fP/68ZfnP758+nAA/uPLt8N/+eXz6/I89+1lfZ5HPfyJwzJ8Pvz6x5fV+K934fg/vn749fqvHBc2xn4U4revHz58nv7srwPW5w8ff/vXz1/+/HoU8vCvPx2/+EbUSEQNdUHSvCNpnkqap5ImJGmIC6LWoUU9/uxe1DpmouazqL/8+fU/Pvz6/GK0E83nVyGPrvHrx68/ZHz3zzLBLH/zgOdf/vX+4+fnV/OdIf+jvGKXf5S/Jnj1YuHfD4i//eu7lDKdkGY47YLz+/tPn54/vf/9jxlIOAuU5wJ1D6j1R0DD/rLW9r4sbKYaW52rMc9Agwd6tl/DNEIkthHCI9MIyVJFyI80EbIH1B4CFW/V4gY0UU1NbB2ooiFVbO2hLrprzWEbu9Y8PF2E7ZEy4mYipYdIwf64UPY+LkZTlwG4akw8RKapdJnF7osG4mHd/iZnnMEXHvDmclZkvAWK2bglz8XsLNwFKOfgRjmVM230GLD9Xbo6Aw3cKMNUukh3txvp0gw0cVOcS5fhNuksHd1EnA/Gm4gj6IKnzFex07DofPKCf0yly5tvyq/G0tvf5Wsz2MBhx+PPzhE73gF2BsR9RACxbaWd43Xvt3Fwtv1lsK2k+TrOTki5MqnjWepxK/V
@bushaev-denis
bushaev-denis / kdmid.js
Last active May 3, 2024 05:35
Kdmid calendar notify has available record
const beep = () => {
const context = new AudioContext();
const oscillator = context.createOscillator();
oscillator.type = "sawtooth";
oscillator.frequency.value = 1200;
oscillator.connect(context.destination);
oscillator.start();
if (confirm('Появилась запись')) {
oscillator.stop();
}
@bushaev-denis
bushaev-denis / midpass.js
Last active April 6, 2024 14:09
Midpass calendar notify has available record
const beep = () => {
const context = new AudioContext();
const oscillator = context.createOscillator();
oscillator.type = "sawtooth";
oscillator.frequency.value = 1200;
oscillator.connect(context.destination);
oscillator.start();
if (confirm("Появилась запись")) {
oscillator.stop();
}