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
# 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 |
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
{ | |
"nodes": [ | |
{ | |
"name": "Radiohead", | |
"group": 1 | |
}, | |
{ | |
"name": "Colin Greenwood", | |
"group": 1 | |
}, |
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
<?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); |