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
// ==UserScript== | |
// @name Google Meet Auto Leave | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description Allows you to leave meets when others are leaving themselves. | |
// @author SaberSpeed77, l0st_idiot | |
// @match https://meet.google.com/*-* | |
// @icon https://www.mediafire.com/convkey/6b57/sd3demt1u3y6mx19g.jpg | |
// @grant none | |
// @license MIT |
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
import microcontroller | |
from kmk.keys import KC, make_key | |
from kmk.handlers.stock import passthrough | |
from kmk.handlers.sequences import send_string | |
def type_temp(*args, **kwargs): | |
temp = microcontroller.cpu.temperature | |
print(temp) #print to serial console | |
keyboard.process_key(send_string(repr(temp)), True) #type it on keyboard | |
keyboard.process_key(send_string(repr(temp)), False) |
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
//la dirección absoluta de ffmpeg | |
// | |
ffmpeg="/usr/bin/ffmpeg"; | |
//extension de las imagenes | |
// | |
// | |
ext = ".png"; | |
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
# Maintainer: leiserfg <leiserfg g-mail> | |
pkgname=graphql-playground-bin | |
name=graphql-playground | |
pkgver=1.3.23 | |
pkgrel=1 | |
pkgdesc="GraphQL IDE for better development workflows (GraphQL Subscriptions, interactive docs & collaboration)" | |
arch=('x86_64') | |
url="https://github.com/graphcool/graphql-playground" |
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
notificationDriver = (sink$, runSA)-> | |
{observer, stream} = runSA.makeSubject() | |
handler = (event)-> observer.next event | |
showNotification = (content)-> | |
show = -> | |
notification = new Notification(content.title, content) | |
notification.onclick = notification.onerror = handler |