Skip to content

Instantly share code, notes, and snippets.

View maasencioh's full-sized avatar

Miguel Angel Asencio Hurtado maasencioh

View GitHub Profile
@ZeroDragon
ZeroDragon / labelnator.sh
Last active July 5, 2018 19:21
Para meter las labels a los repos de RTD
#!/bin/sh
REPO=resuelve/$1
TOKEN=$2
labels=(
'{"name": "Bug 🐛", "description": "MUCHO ROJO!!!", "color": "d73a4a"}'
'{"name": "Documentación 📗", "description": "Documentación", "color": "a369ef"}'
'{"name": "Epic", "description": "Épica", "color": "3E4B9E"}'
'{"name": "Hackday 💡", "description": "Puntos extras por mejora muy opcional", "color": "5319e7"}'
import speech_recognition
import pyttsx
speech_engine = pyttsx.init('sapi5') # see http://pyttsx.readthedocs.org/en/latest/engine.html#pyttsx.init
speech_engine.setProperty('rate', 150)
def speak(text):
speech_engine.say(text)
speech_engine.runAndWait()
@rbabich
rbabich / levmarq - Levenberg-Marquardt in plain C
Last active March 14, 2023 15:26
A simple implementation of the Levenberg-Marquardt algorithm in plain C
This file (with a leading space) exists so that the gist has a sensible name, rather than "LICENSE."