View allAll Photos Tagged hacks

Inno{Hacks} at Karlshochschule International University, September 29th to October 1st

... using the pot to change the brightness of the display

Sábado 18 de mayo. Alumnos de 4to de Secundaria, Yellows 2020, participaron en la 5ta Edición del Hack Escolar organizados por Silabuz y Código Perú.

  

3 Likes on Instagram

  

Photo from the turn of the 20th century showing a horse and cart in front of Hacking’s bakery and what was to become the New Ship Methodist Chapel on Walmsgate, Barnoldswick.

Paweł Fedorowicz. IKEA HACKING

This pic will be displayed at Hacker Dojo for a month!

Having a good laugh.

First DevCamp to bring hacks & hackers together to build iPad apps. May 22 at KQED. Photos by @Deifell

 

hackshackers.com

Arkathon Hacking Health Valais 2016

Pier Luca Santoro - DataMediaHub

Pierluigi Vitale - fondatore Socialistening.it

 

Nell'hackathon verranno resi machine readable i contenuti relativi ai finanziamenti all'editoria dal 2003 al 2014, saranno evidenziati i casi "anomali" e saranno effettuate le relative infografiche. Oltre a fare finalmente luce a fondo sulla questione i partecipanti impareranno a fare scraping ed a realizzare infografiche.

  

At The Bear Course at Okanagan Club in Kelowna. One of my few decent golf shots on that day

I thought this poster was humorous

Sábado 18 de mayo. Alumnos de 4to de Secundaria, Yellows 2020, participaron en la 5ta Edición del Hack Escolar organizados por Silabuz y Código Perú.

// Wire Master Reader

// by Nicholas Zambetti

 

// Demonstrates use of the Wire library

// Reads data from an I2C/TWI slave device

// Refer to the "Wire Slave Sender" example for use with this

 

// Created 29 March 2006

 

// This example code is in the public domain.

  

#include

 

void setup()

{

Serial.begin(9600); // start serial for output

Wire.begin(0x0D);

}

 

byte a[10];

 

void loop()

{

Wire.beginTransmission(0x0D);

Wire.send(0);

Wire.endTransmission();

Wire.requestFrom(0x0D, 23);

for (int i=0; i 0 clockwise <255 anticlockwise

Serial.print(' ');

Serial.println(a[21],DEC); //rotation dir 0=clockwise 255=anticlockwise

}

1 2 ••• 75 77 78 79 80