Skip to content

Instantly share code, notes, and snippets.

View StefKors's full-sized avatar
📟

Stef Kors StefKors

📟
View GitHub Profile
@StefKors
StefKors / gist:7a46977de60bcb922d49
Last active August 29, 2015 14:22
Draw circles with Processing
int diameter = 10;
void setup(){
size(200,200);
smooth();
background (200,200,200);
frameRate(20);
}
void draw(){
import gab.opencv.*;
import processing.video.*;
import java.awt.*;
Capture video;
OpenCV opencv;
void setup() {
size(640, 480);
video = new Capture(this, 640/2, 480/2);
#include <Servo.h>
Servo myServo; // maakt het servo object zodat we die kunnen besturen
int servoPin = 9; // de pin waar de servo op is aangesloten
int pos = 90; // maakt een variabele om de positie van de servo op te slaan
long randNumber;
boolean scared = false;
#define trigPin 13
#define echoPin 12
#include <Servo.h>
Servo myServo; // maakt het servo object zodat we die kunnen besturen
int servoPin = 9; // de pin waar de servo op is aangesloten
int pos = 90; // maakt een variabele om de positie van de servo op te slaan
long randNumber;
boolean scared = false;
#define trigPin 13
#define echoPin 12
#include <Servo.h>
Servo myServo; // maakt het servo object zodat we die kunnen besturen
int servoPin = 9; // de pin waar de servo op is aangesloten
int pos = 90; // maakt een variabele om de positie van de servo op te slaan
long randNumber;
boolean scared = false;
#define trigPin 13
#define echoPin 12
#include <Servo.h>
// fotocel
float photocellPinL = 0; // the cell and 10K pulldown are connected to a0
float photocellPinR = 1; // the cell and 10K pulldown are connected to a0q
float photocellReadingL; // fotocell reading LINKS
float photocellReadingR; // fotocell reading RECHTS
Servo myServo; // Servo Object
int servoPin = 9; // ServoPin Nummer
@StefKors
StefKors / geolocation githook
Created June 10, 2018 18:41
Want to be a cool digital nomad, or laptop adventurer? Add your geolocation to your git commits:
#!/bin/bash
#http://iharder.sourceforge.net/current/macosx/locateme/
#copy paste this into the .git/hooks/prepare-commit-msg file
#install locateme into your project directory
LAT=`./LocateMe -f "{LAT}"`
LNG=`./LocateMe -f "{LON}"`
URL="http://maps.googleapis.com/maps/api/geocode/json?latlng=$LAT,$LNG&sensor=false"
ADDRESS=`eval "curl -s \"$URL\" | grep formatted_address | head -n 1 | sed 's/\"//g' | sed 's/,//g'"`
@StefKors
StefKors / index.html
Created January 24, 2019 21:27
return soundcloud id from playlist link
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
@StefKors
StefKors / index.html
Created April 5, 2019 18:23
A gyroscopic golf game built during the Hackers and Designers Walking Signals Workshop
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>oh my golf</title>
<style>
*,
*:before,
*:after {
const router = require('express').Router()
// FLICKR
const FLICKR_API = require('../../settings/flickr.js')
const Flickr = require('flickr-sdk')
const flickr = new Flickr(FLICKR_API.key)
// FIREBASE
const admin = require('firebase-admin')
const serviceAccount = require('./../../settings/progressbar-cache-firebase-adminsdk.json')
// init firebase app