Skip to content

Instantly share code, notes, and snippets.

View rafaelbecks's full-sized avatar

Rafael Angel Becerra Blasco rafaelbecks

  • Madrid, Spain
View GitHub Profile
@rafaelbecks
rafaelbecks / oschandcontrol.py
Created January 27, 2025 15:43
modified niceTouchOSC to allow working on MacOS (moved cv2 calls outside of the thread)
# modified hand control 2 OSC to allow working on MacOS (moved cv2 calls outside of the thread)
# original: https://github.com/Cookseyyyyyy/oschandcontrol
# requirements (use python 3.10)
# opencv-python
# mediapipe
# numpy
# python-osc
import cv2
import numpy as np
@rafaelbecks
rafaelbecks / radiohead.json
Created February 6, 2017 04:15
Estructura de datos de un grafo representando las relaciones de los músicos de Radiohead
{
"nodes": [
{
"name": "Radiohead",
"group": 1
},
{
"name": "Colin Greenwood",
"group": 1
},
<?php
//Script que copia en el portapapeles reporte del día según commits realizados
function presentToPast($sentence)
{
$past = ["ado","ido","ada","ida"];
$present = ["é","í","é","í"];
$words = split(" ",$sentence);