background preloader

Sur les traces de la PirateBox

Sur les traces de la PirateBox
Échanger des fichiers librement, surfer sur le web en contournant la vigie Hadopi, c'est ce que propose la PirateBox, créée par David Darts, professeur à l'université de New York. Une lunch box punk en mode WiFi & DIY. Passer un week-end à la campagne a du bon : rien de tel qu’une randonnée pour entretenir vos muscles et voir les effets de la rurbanisation. Se mettre au vert, c’est aussi l’occasion d’un apéro au cours duquel vos amis vous soufflent votre prochain sujet de post. Samedi soir, c’est donc au pote/DJ/producteur de drum n’bass-dubstep Jean Zar de délivrer le précieux mot clé : PirateBox. Qu’il soit à nouveau remercié ici, la notion de piratage urbain me taraudant depuis la visite de la Demeure du chaos. Les corsaires du XVIIIe siècle auraient pu se cantonner aux cours de récré si leurs aspirations ne nourrissaient pas aussi celles des adultes. Hadopi, muse des hackers ? Intéressons-nous à Bey. Une arme ? Elle revient à moins de 100 euros Le savoir, j’y ai droit !

PirateBox DIY OpenWrt - David Darts Wiki Update May 30, 2014! PirateBox 1.0 has been released and building or upgrading a PirateBox has never been easier! Please refer to this tutorial for instructions and more info. Outdated Instructions Below! You can build a PirateBox for as little as US$35. Stuff You’ll Need TP-Link MR3020 (Newegg) or TP-Link TL-WR703N (DX) (eBay)USB Flash Drive (formatted FAT32 with a single partition)Ethernet cable5V/USB Battery (optional) Pre-Installation The following tutorial was created on a Mac running OSX 10.8. 1. 2. 3. 4. 5. 6. (Note: The WR703N firmware text is in Chinese. 7. 8. telnet 192.168.1.1 9. passwd 10. NOTE: The following instructions assume your gateway router’s (home router’s) IP address is 192.168.2.1. vi /etc/config/network The modified file should look like this: 11. 12. 13. ssh root@192.168.2.111 14. ping google.com 15. opkg update opkg install kmod-usb-uhci insmod usbcore ## may return: file exists insmod uhci opkg install kmod-usb-ohci ## may return: up to date. insmod usb-ohci 1. 2. 3. 4.

Mobile Widgets Building a face-tracking robot (Headroid1) with Python in an afternoon | The Artificial Intelligence Cookbook import sys from optparse import OptionParser import time import math import datetime import serial import cv min_size = (20, 20) image_scale = 2 haar_scale = 1.2 min_neighbors = 2 haar_flags = 0 def detect_and_draw(img, cascade): gray = cv.CreateImage((img.width,img.height), 8, 1) small_img = cv.CreateImage((cv.Round(img.width / image_scale), cv.Round (img.height / image_scale)), 8, 1) cv.CvtColor(img, gray, cv.CV_BGR2GRAY) cv.Resize(gray, small_img, cv.CV_INTER_LINEAR) cv.EqualizeHist(small_img, small_img) centre = None if(cascade): t = cv.GetTickCount() faces = cv.HaarDetectObjects(small_img, cascade, cv.CreateMemStorage(0), haar_scale, min_neighbors, haar_flags, min_size) t = cv.GetTickCount() - t if faces: for ((x, y, w, h), n) in faces: pt1 = (int(x * image_scale), int(y * image_scale)) pt2 = (int((x + w) * image_scale), int((y + h) * image_scale)) cv.Rectangle(img, pt1, pt2, cv.RGB(255, 0, 0), 3, 8, 0) x1 = pt1[0] x2 = pt2[0] y1 = pt1[1] y2 = pt2[1] centrex = x1+((x2-x1)/2) centrey = y1+((y2-y1)/2) return centre

Related: