domenica 29 dicembre 2013

Parkour video I made for my friend

Here is a parkour video I filmed and edited for my friend:


I filmed it with a Casio Exilim ex-zr1000 and with a go pro hero 3 silver edition.
Song in the video: Juicy-r - Notorious B.I.G. vs The XX (Wait What mashup)
I hope you enjoyed the video, if you have any question comment or send me an email to damianoandre@gmail.com

Bye, Dami

lunedì 23 dicembre 2013

3 years of blogging bitcheesss :)

Hi guys today I'm posting because today It's the third anniversary of this blog :D
In three years I think I evolved the posts' quality, with the result of getting more appreciations from you.
3 years of blogging --> 50100 views
I hope you enjoyed this three year, here are the next posts' arguments:
-update of arduino POV code
-powerful coilgun tutorial
-reviews of some stuff I use for making videos
-a video of the parkour showreel of a my friend
-infinity mirror tutorial

Unfortunately I don't have much time for making these things, but however even if slowly I'll make them :)

Stay tuned

Bye, Dami

venerdì 6 dicembre 2013

Where to find money to support your projects

Hi, today I'm here with a post to suggest you where to get the money you need for your projects.
If you have little startup or you're simply a person with a nice idea but you haven't enough money to develop it I suggest you crowdfunding.

Crowdfunding is the collective effort of individuals who network and pool their money, usually via the Internet, to support efforts initiated by other people or organizations. (wikipedia)

You can do this through many websites, the most popular are:
-http://www.indiegogo.com/
-http://www.kickstarter.com/
-http://www.crowdrise.com/
-http://www.rockethub.com/

In this site you will be able to collect the money you need if you make a good presentation of your project.
I hope you like this post.

Bye, Dami

domenica 24 novembre 2013

quod acerbum fuit ferre, tulisse iucundum est

Hi guys today I'm here with this latin phrase, which I found really impressive.
Probably you're asking why I'm posting latin phrases instead of projects with arduino, electronics or stuffs like that: I was asking this to myself too than i thought that there were no reason to post about things i don't like (at the moment).
Certainly in future I'll post about projects like the old one but at the moment I have mainly three reasons for not doing that:

-I haven't enough time (I'm focusing on school, sport and playing piano): posting about a project takes a lot of time, you have to make the project, remake it and take photos and video during the making of, write a post (in english, which is not really for me because i'm italian)
-I'm finding interest in other things like music, cool phrases (like the one in latin) and spending time with friends
-Everyone live once (maybe just Jesus had a bonus life) and I think that you have to spend your life in the best way which means 2 things: •do things that you like
                                                              •do the previous thing within limits that make you being        
                                                                accepted in your society, because just being a part of it you
                                                                will be able to leave your mark in this world

Coming back to the latin phrase it means (this probably isn't the best translation but i think you may understand the main concept): what we had to tolerate is displeasing but tolerating it is pleasing.

I hope you like this post

Bye, Dami

domenica 27 ottobre 2013

Watsky, rap genius, poet and artist

Hi, this post isn't about any project. It's about a person who i admire: Watsky, a 27 years old american rapper and poet; here are two of his creation:






I hope you like this post

Bye, Dami

domenica 22 settembre 2013

Arduino ultrasonic distance measurement

Hi guys' today I'm here with a tutorial about interfacing arduino with ultrasonic distance meter like the HC-SR04.
First of all, the theory:

If we know that the sound take a time to reach the obstacle and come back and that
speed s is equal to s=d/t where d is the distance then d=s*t .
We consider that speed of sound is 340.29 meters/seconds that is equal to
0.034029 centimeters/microseconds.

Now let's see the hardware parts, which is very simple:



To start measuring distance you just have to upload this code to the arduino
int trigPin = 2;
int echoPin = 4;

void setup() {
  Serial.begin(9600);
}

void loop(){
  long duration;
  float cm;
  pinMode(echoPin, INPUT);
  pinMode(trigPin, OUTPUT);
  digitalWrite(trigPin, LOW);
  delayMicroseconds(2);
  digitalWrite(trigPin, HIGH);
  delayMicroseconds(10);
  digitalWrite(trigPin, LOW);
  duration = pulseIn(echoPin, HIGH);
  cm = microsecondsToCentimeters(duration);
  Serial.print(cm);
  Serial.print("cm");
  Serial.println();
  delay(100);
}
float microsecondsToCentimeters(long microseconds){
  return (microseconds*0.034029)/2;
}


Here is a video of me testing this project:


I hope you like this post, if you have any question please comment or send me an email to damianoandre@gmail.com

Bye,Dami