Introduction: SimpleTweet_00 Processing
Post a tweet when your sensor changes states, using Arduino, Processing, and twitter4j.
Note: I've got a Python version of this project here: https://www.instructables.com/id/simpleTweet01python/
new tweet --:{ Opened door at 14:21:57}:--
new tweet --:{ Closed door at 14:22:1}:--
These confirm that new messages were sent to Twitter when the switch opened and closed.
Visit twitter.com/msg_box to see the timeline.
Step 1: Concept
The idea for this project was to develop generic code allowing you to automatically generate tweets based on input to your Arduino. This example uses a magnetic reed switch, which is your basic on / off switch. You can use this code as is for any two-state switch or modify it for more diversity.
We attach the magnetic reed sensor to my office door and door-frame. A wire runs from the magReed sensor to a pin in the Arduino circuit. Arduino watches that pin's status, HIGH or LOW, and when the status changes from one to the other Arduino reports on that change through Serial.write(). The Processing sketch picks up the Serial.write() call and checks to see if the current state is the same as the last one posted to Twitter. If the two states are the same then it will not post, but if the new state is different from the previous state, then we're in business.
Processing uses twitter4j and OAuth to post the new state to your Twitter account. Done and done.
Step 2: Arduino
// simpleTweet_00_a
/*
simpleTweet_00 arduino sketch (for use with
simpleTweet_00 processing sketch) by @msg_box june2011
This script is intended for use with a magnetic reed switch,
but any on/off switch plugged into pin #10 will readily work.
The Arduino is connected to a circuit with a sensor that
triggers the code: Serial.write(n); where n = 1 or 2.
The Processing sketch listens for that message and then
uses the twitter4j library to connect to Twitter
via OAuth and post a tweet.
To learn more about arduino, processing, twitter4j,
OAuth, and registering your app with Twitter...
visit <https://www.instructables.com/id/Simple-Tweet-Arduino-Processing-Twitter/>
visit <http://www.twitter.com/msg_box>
This code was made possible and improved upon with
help from people across the internet. Thank You.
Special shoutouts to the helpful lurkers at twitter4j,
arduino, processing, and bloggers everywhere, and
to the adafruit & ladydada crowdsource.
And above all, to my lovely wife, without
whom, none of this would have been possible.
Don't be a dick.
*/
const int magReed_pin = 10; // pin number
int magReed_val = 0;
int currentDoorState = 1; // begin w/ circuit open
int previousDoorState = 1;
void setup(){
Serial.begin(9600);
pinMode(magReed_pin, INPUT);
}
void loop(){
watchTheDoor();
}
void watchTheDoor(){
magReed_val = digitalRead(magReed_pin);
if (magReed_val == LOW){ // open
currentDoorState = 1;
}
if (magReed_val == HIGH){ // closed
currentDoorState = 2;
}
compareStates(currentDoorState);
}
void compareStates(int i){
if (previousDoorState != i){
previousDoorState = i;
Serial.write(i);
delay(1000); //
}
}
Attachments
Step 3: Processing
Install twitter4j
You'll need to install the twitter4j library so it can be used by Processing.
Get it here: http://twitter4j.org/en/index.html#download
Install it here (or equivalent): C:\Program Files\processing-1.5.1\modes\java\libraries
You're done.
Access it here: Processing > Sketch > Import Library... > twitter4j
And when you do, it'll add this to the top of your code:
import twitter4j.conf.*;
import twitter4j.internal.async.*;
import twitter4j.internal.org.json.*;
import twitter4j.internal.logging.*;
import twitter4j.http.*;
import twitter4j.api.*;
import twitter4j.util.*;
import twitter4j.internal.http.*;
import twitter4j.*;
Incidentally, you'll also add Serial I/O from the Sketch > Library, but that's not important right now.
So why do you need twitter4j? The short answer is that it provides you with simple functionality so you don't have to write a whole bunch of crazy code every time you want to access Twitter. We use twitter4j because it's awesome and it makes our job easier.
// #####################################################################
// #####################################################################
// simpleTweet_00_p
/*
simpleTweet_00 processing sketch (for use with
simpleTweet_00 arduino sketch) by @msg_box june2011
The Arduino is connected to a circuit with a sensor that
triggers the code: Serial.write(n); where n = 1 or 2.
The Processing sketch listens for that message and then
uses the twitter4j library to connect to Twitter
via OAuth and post a tweet.
compareMsg() is added in case you want to compare
the current and previous tweets to prevent retweets.
This Processing code requires the twitter4j library
and your registered app info from dev.twitter.com
To learn more about arduino, processing, twitter4j,
OAuth, and registering your app with Twitter...
visit <https://www.instructables.com/id/Simple-Tweet-Arduino-Processing-Twitter/>
visit <http://www.twitter.com/msg_box>
This code was made possible and improved upon with
help from people across the internet. Thank You.
Special shoutouts to the helpful lurkers at twitter4j,
arduino, processing, and bloggers everywhere, and
to the adafruit & ladydada crowdsource.
And above all, to my lovely wife, without
whom, none of this would have been possible.
Don't be a dick.
*/
import processing.serial.*;
import twitter4j.conf.*;
import twitter4j.internal.async.*;
import twitter4j.internal.org.json.*;
import twitter4j.internal.logging.*;
import twitter4j.http.*;
import twitter4j.api.*;
import twitter4j.util.*;
import twitter4j.internal.http.*;
import twitter4j.*;
static String OAuthConsumerKey = "YOUR CONSUMER KEY";
static String OAuthConsumerSecret = "YOUR CONSUMER SECRET";
static String AccessToken = "YOUR ACCESS TOKEN";
static String AccessTokenSecret = "YOUR ACCESS TOKEN SECRET";
Serial arduino;
Twitter twitter = new TwitterFactory().getInstance();
void setup() {
size(125, 125);
frameRate(10);
background(0);
println(Serial.list());
String arduinoPort = Serial.list()[0];
arduino = new Serial(this, arduinoPort, 9600);
loginTwitter();
}
void loginTwitter() {
twitter.setOAuthConsumer(OAuthConsumerKey, OAuthConsumerSecret);
AccessToken accessToken = loadAccessToken();
twitter.setOAuthAccessToken(accessToken);
}
private static AccessToken loadAccessToken() {
return new AccessToken(AccessToken, AccessTokenSecret);
}
void draw() {
background(0);
text("simpleTweet_00", 18, 45);
text("@msg_box", 30, 70);
listenToArduino();
}
void listenToArduino() {
String msgOut = "";
int arduinoMsg = 0;
if (arduino.available() >= 1) {
arduinoMsg = arduino.read();
if (arduinoMsg == 1) {
msgOut = "Opened door at "+hour()+":"+minute()+":"+second();
}
if (arduinoMsg == 2) {
msgOut = "Closed door at "+hour()+":"+minute()+":"+second();
}
compareMsg(msgOut); // this step is optional
// postMsg(msgOut);
}
}
void postMsg(String s) {
try {
Status status = twitter.updateStatus(s);
println("new tweet --:{ " + status.getText() + " }:--");
}
catch(TwitterException e) {
println("Status Error: " + e + "; statusCode: " + e.getStatusCode());
}
}
void compareMsg(String s) {
// compare new msg against latest tweet to avoid reTweets
java.util.List statuses = null;
String prevMsg = "";
String newMsg = s;
try {
statuses = twitter.getUserTimeline();
}
catch(TwitterException e) {
println("Timeline Error: " + e + "; statusCode: " + e.getStatusCode());
}
Status status = (Status)statuses.get(0);
prevMsg = status.getText();
String[] p = splitTokens(prevMsg);
String[] n = splitTokens(newMsg);
//println("("+p[0]+") -> "+n[0]); // debug
if (p[0].equals(n[0]) == false) {
postMsg(newMsg);
}
//println(s); // debug
}
Attachments
Step 4: Twitter
To post a tweet, do the following:
* Install twitter4j http://twitter4j.org/en/index.html#download
* (Update: I've attached "twitter4j.jar" to this instructable page.)
* Create a Twitter account twitter.com
* Register an application with Twitter https://dev.twitter.com/apps/new
Install twitter4j
You'll need to install the twitter4j library so it can be used by Processing.
Get it here: http://twitter4j.org/en/index.html#download
Install it here (or equivalent): C:\Program Files\processing-1.5.1\modes\java\libraries
You're done.
Access it here: Processing > Sketch > Import Library... > twitter4j
And when you do, it'll add this to the top of your code:
import twitter4j.conf.*;
import twitter4j.internal.async.*;
import twitter4j.internal.org.json.*;
import twitter4j.internal.logging.*;
import twitter4j.http.*;
import twitter4j.api.*;
import twitter4j.util.*;
import twitter4j.internal.http.*;
import twitter4j.*;
Incidentally, you'll also add Serial I/O from the Sketch > Library, but that's not important right now.
So why do you need twitter4j? The short answer is that it provides you with simple functionality so you don't have to write a whole bunch of crazy code every time you want to access Twitter. We use twitter4j because it's awesome and it makes our job easier.
Create a Twitter account
You've probably already got one (or twelve) but for the absolute noob, take heart. It's easy.
Goto twitter.com and set up an account. Make it a public account, that way if you ever want your friends to look at it they don't have to go through a whole bunch of hooey to get there. And don't post personal stuff like "Out of town, leaving diamonds on back porch."
You'll see people using the "@" and "#" symbols a lot. Put @ before a username and # before a concept. For example, if you post the following tweet "I enjoyed the @msg_box simpleTweet_00 on @instructables #goodtimes" then that tweet will get sent to my feed (and to instructables's feed too) and it'll get added to a cache of all posts that have ever used the phrase "#goodtimes." There's more, but it's not within the scope of this lesson. Play with it. You'll figure it out.
Register an application with Twitter
What does that even mean? Relax. Think of it this way: you're creating a set of special high-tech usernames and passwords so the stuff you make can access Twitter. It's like Twitter is this big castle with a front door for all the human guests and a back door for all the automated service personnel. These high-tech usernames and passwords are called OAuth. OAuth lets your device access Twitter through the service entrance.
Having already created my Twitter account @msg_box I then went here https://dev.twitter.com/apps/new to get my OAuth password info. Review the three attached images of the forms .
First Page: Make sure you check "Client " and not "Browser", and that you allow "Read & Write ."
Second Page: Here's where you find your CONSUMER KEY and your CONSUMER SECRET
Third Page: Here's where you find your ACCESS TOKEN and your ACCESS TOKEN SECRET
You will need this information when your program logs into Twitter (via the service entrance.) In the Processing script simpleTweet_00_p you will enter this information in here:
static String OAuthConsumerKey = "YOUR CONSUMER KEY";
static String OAuthConsumerSecret = "YOUR CONSUMER SECRET";
static String AccessToken = "YOUR ACCESS TOKEN";
static String AccessTokenSecret = "YOUR ACCESS TOKEN SECRET";
That's it. Not hard at all.
Attachments
Step 5: Circuit Board
Breadboard vs Circuit Board
The fasted way to hack this project together is with a breadboard (image). The breadboard, or solderless breadboard, is perfect for prototyping, for proving that your circuit works as you expect it to. That's because the breadboard allows you to attach and disconnect wires without any forethought or commitment or difficulty. With a breadboard, if your circuit does not perform the way you thought it would, then you can take it apart and reassemble it as many times as you like until you've got it right. After you've proven the concept and you know your circuit is right, then it's a good idea to solder together a real circuit board. I'm a big fan of soldering your own circuit boards. It's fun and easy and adds a special element of ownership to a project. If you want to reproduce lots of copies of your circuit, then you should consider printed circuits. Printed Circuits are the next step after Circuit Boards and are a great way to share your project with others, especially when it's a complicated circuit. You can order printed circuits or make them on your own.
Step 6: In Conclusion....
The idea for this project was to develop generic code allowing you to automatically generate tweets based on input to your Arduino. With this code you now have the foundation for a tweeting empire. This project was simple and fun, but imho it's not a hack, it's a make.
I did not bust anything open, like a door alarm and piggyback on it's systems. That'd be a hack. Instead I built a clean prototype, I made it. And I had fun. I'll look for something to hack and be back with more good fun.
Cheers!

Participated in the
Adafruit Make It Tweet Challenge
26 Comments
7 years ago
i love the colors and the shadows
10 years ago on Introduction
Thank you so much, worked perfectly! really awesome.
10 years ago on Step 3
hey,suppose i have a processing or python application running ,so how can I let the user share with his friends that he is using my application by tweeting on his timeline and another thing I wanted to ask does Facebook has such api.
By the way great work ,helped a lot...!!!
10 years ago on Step 6
Thank for your good info.
I tried this project.
But Only works at just 1st time to my iphone twitter app.
and then never works again --;
My error message is here:
------------------------------------------------------------------
RXTX Warning: Removing stale lock file. /var/lock/LK.027.033.008
What's wrong with me ?
Intel iMac x64, MacOSX 10.8.3
Arduino 1.5.1
Processing 2.0b8
Twitter4j.jar that you offering one.
11 years ago on Introduction
Hi everyone, I found a solution to all your problems. I'll post soon! ;)
11 years ago on Step 3
hey man, great tut but I am totally stuck now. Done evrything from making the twitter dev and installed all the packages (i hope I done that right).
But i am currently getting these errors on processing:
Stable Library
=========================================
Native lib Version = RXTX-2.1-7
Java lib Version = RXTX-2.1-7
[0] "COM5"
[1] "COM7"
[2] "COM8"
gnu.io.PortInUseException: Unknown Application
at gnu.io.CommPortIdentifier.open(CommPortIdentifier.java:354)
at processing.serial.Serial.(Unknown Source)
at processing.serial.Serial.(Unknown Source)
at simpleTweet_00_p.setup(simpleTweet_00_p.java:91)
at processing.core.PApplet.handleDraw(Unknown Source)
at processing.core.PApplet.run(Unknown Source)
at java.lang.Thread.run(Thread.java:662)
Exception in thread "Animation Thread" java.lang.RuntimeException: Error inside Serial.()
at processing.serial.Serial.errorMessage(Unknown Source)
at processing.serial.Serial.(Unknown Source)
at processing.serial.Serial.(Unknown Source)
at simpleTweet_00_p.setup(simpleTweet_00_p.java:91)
at processing.core.PApplet.handleDraw(Unknown Source)
at processing.core.PApplet.run(Unknown Source)
at java.lang.Thread.run(Thread.java:662)
[color=red]This is my current processing code:[/color]
import processing.serial.*;
import twitter4j.conf.*;
import twitter4j.internal.async.*;
import twitter4j.internal.org.json.*;
import twitter4j.internal.logging.*;
import twitter4j.http.*;
import twitter4j.api.*;
import twitter4j.util.*;
import twitter4j.internal.http.*;
import twitter4j.*;
static String OAuthConsumerKey = "ykaw70kvBc6jVV21eLlWA";
static String OAuthConsumerSecret = "PllQqnwaZV7aYuH33vniloGW2U5fbkfYxef2LQVAK0";
static String AccessToken = "20026567-9juOyYchv9k7PXsu7kyrvhpHKkOY3Fg6xTn9vatuA";
static String AccessTokenSecret = "AcIhlVX95nvpFYMyk9oh41PWHe3TXYqhMbSy6hLgQ";
Serial arduino;
Twitter twitter = new TwitterFactory().getInstance();
void setup() {
size(125, 125);
frameRate(10);
background(0);
println(Serial.list());
String arduinoPort = Serial.list()[0];
arduino = new Serial(this, arduinoPort, 9600); [color=red]ERROR BEGINS ON THIS LINE[/color]
loginTwitter();
}
void loginTwitter() {
twitter.setOAuthConsumer(OAuthConsumerKey, OAuthConsumerSecret);
AccessToken accessToken = loadAccessToken();
twitter.setOAuthAccessToken(accessToken);
}
private static AccessToken loadAccessToken() {
return new AccessToken(AccessToken, AccessTokenSecret);
}
void draw() {
background(0);
text("simpleTweet_00", 18, 45);
text("@msg_box", 30, 70);
listenToArduino();
}
void listenToArduino() {
String msgOut = "";
int arduinoMsg = 0;
if (arduino.available() >= 1) {
arduinoMsg = arduino.read();
if (arduinoMsg == 1) {
msgOut = "Opened door at "+hour()+":"+minute()+":"+second();
}
if (arduinoMsg == 2) {
msgOut = "Closed door at "+hour()+":"+minute()+":"+second();
}
compareMsg(msgOut); // this step is optional
// postMsg(msgOut);
}
}
void postMsg(String s) {
try {
Status status = twitter.updateStatus(s);
println("new tweet --:{ " + status.getText() + " }:--");
}
catch(TwitterException e) {
println("Status Error: " + e + "; statusCode: " + e.getStatusCode());
}
}
void compareMsg(String s) {
// compare new msg against latest tweet to avoid reTweets
java.util.List statuses = null;
String prevMsg = "";
String newMsg = s;
try {
statuses = twitter.getUserTimeline();
}
catch(TwitterException e) {
println("Timeline Error: " + e + "; statusCode: " + e.getStatusCode());
}
Status status = (Status)statuses.get(0);
prevMsg = status.getText();
String[] p = splitTokens(prevMsg);
String[] n = splitTokens(newMsg);
//println("("+p[0]+") -> "+n[0]); // debug
if (p[0].equals(n[0]) == false) {
postMsg(newMsg);
}
//println(s); // debug
}
[color=red]And these are the errors on python:[/color]
running... simpleTweet_01_python
arduino msg: #peacefulGlow
Traceback (most recent call last):
File "C:/Users/Ciaran/Desktop/python final", line 47, in
listenToArduino()
File "C:/Users/Ciaran/Desktop/python final", line 24, in listenToArduino
compareMsg(msg.strip())
File "C:/Users/Ciaran/Desktop/python final", line 31, in compareMsg
pM = ""+prevMsg[0]+""
IndexError: list index out of range
>>>
[color=red][font=Verdana]This is my current python code:[/font][/color]
print 'running... simpleTweet_01_python'
# import libraries
import twitter
import serial
import time
# connect to arduino via serial port
arduino = serial.Serial('COM5', 9600, timeout=1)
# establish OAuth id with twitter
api = twitter.Api(consumer_key='ykaw70kvBc6jVV21eLlWA',
consumer_secret='PllQqnwaZV7aYuH33vniloGW2U5fbkfYxef2LQVAK0',
access_token_key='20026567-9juOyYchv9k7PXsu7kyrvhpHKkOY3Fg6xTn9vatuA',
access_token_secret='AcIhlVX95nvpFYMyk9oh41PWHe3TXYqhMbSy6hLgQ')
# listen to arduino
def listenToArduino():
msg=arduino.readline()
if msg > '':
print 'arduino msg: '+msg.strip()
compareMsg(msg.strip())
# avoid duplicate posts
def compareMsg(newMsg):
# compare the first word from new and old
status = api.GetUserTimeline('yourUsername')
prevMsg = [s.text for s in status]
pM = ""+prevMsg[0]+""
pM = pM.split()
nM = newMsg.split()
print "prevMsg: "+pM[0]
print "newMsg: "+nM[0]
if pM[0] != nM[0]:
print "bam"
postMsg(newMsg)
# post new message to twitter
def postMsg(newMsg):
localtime = time.asctime(time.localtime(time.time()))
tweet = api.PostUpdate(hello)
print "tweeted: "+tweet.text
while 1:
listenToArduino()
_______________________________________________________________________
I know atleast one of the buttons are working as it sends the signal of [color=red]arduino msg: #peacefulGlow
[/color] to pyhon when running module but as soon as the button is pressed then error messages appear.
My LED is not lighting up at all :(
I can send pictures of the circuitboard if needed.
Please will someone help me with this.
Either contact me here or and email to broadleyutb@googlemail.com would be great
Thanks
Reply 11 years ago on Step 3
this is relation to the moodlight twitter mention tutorial you made.
I have now got the led to cycle through some colours but it seems to fade in and out nicely then every few seconds it will blink off then back on?
and I also do not understand how you are supposed to run python+processing (for button code) at the same time of running the arduino RGB LED code as both can not use the same COM (COM5 in my case) at the same time
Reply 11 years ago on Step 3
Howdy. You are not supposed to run Python and Processing at the same time. The python and processing scripts are meant to be two separate examples of the same project, just to show how it looks when done one way or the other; not supposed to work together. Perhaps this relates to the error you mention above? Try running only Processing or only Python and see what you get. Otherwise, I'm afraid I'm not much help. Good luck!
11 years ago on Step 3
Hi mate.
Im getting errors on processing like, no libraries for twitter4j.http.
So I downloaded a jar file called, twitter4j-2.0.9 and draged it. But I was libraries using twitter4j 2.2.5-
Then another error came up, acces token is ambiguos.
And then on the code I put:
import twitter4j.http.OAuthToken*;
And then it says the Token is not visible.
Im using mac, I really need help. Thanks.
Reply 11 years ago on Introduction
That is so frustrating! I had to install twitter4j on a few machines and each time I had trouble with the libraries. Unfortunately I forget how I fixed it but it was something like copying the library into each of the two or three possible directories where "Processing" might look for it. Since that's not much of an answer, I suggest you try searching and asking questions at the Twitter4j google group:
http://groups.google.com/group/twitter4j
Good luck! If you iron it out please come back and post the answer.
Reply 11 years ago on Introduction
Also, I've got this same project done using Python instead of Processing. https://www.instructables.com/id/simpleTweet01python/
Not an answer, but I found Python to be really easy to use. In fact I don't even use Processing at all anymore.
Reply 11 years ago on Introduction
Ok, thank you so much. But I've never used python before. I'll give it a try.
Im trying to figure how to install the libraries for mac.
12 years ago on Step 4
Hi pdxnat,
Thanks for the great project.
I'm trying to get this code running, but I am stuck installing the library. I've put it in the location you suggested which didn't work. I then tried the default library location (where I have installed other libraries) which is a subdirectory of the sketch folder. This didn't work either.
I did find a discussion about installing libraries into Processing (http://processing.org/discourse/yabb2/YaBB.pl?num=1237933931) and tried to change the name of the twitter4j-core.jar to twitter4j.jar so that it matched the library name as they suggested. Processing then recognized the library, but gave me the following error:
"No library found for twitter4j.http"
Any thoughts on what I am doing wrong and why this isn't working?
Thanks, Aaron
Reply 12 years ago on Step 4
The bottom line is No, I don't know what's wrong. But it's got to be a fluke and therefore fixable.
I have attached the twitter4j.jar file to this instructable page. I'm not sure if you could just use that file or if there's more installation that needs to happen, but it's here for archival purposes now.
On my Windows 7 box I've installed the twitter4j jar file here:
C:\Program Files\processing-1.5.1\modes\java\libraries\twitter4j\library\twitter4j (executable jar file)
I think I may have had to exit and reopen Processing, or restart the machine, I don't recall. Anyway, with the executable twitter4j file in that directory, it finally showed up in the Processing IDE under Menu:Sketch>Import Library>twitter4j. But you're saying that's not working for you, right?
Well, I did a little surfing and found that I'm a version or so out of date. The libraries can now go into the sketchbook directory, as you seem to know already. This what you mean by "the default library location" yes?
Over at http://www.learningprocessing.com/tutorials/libraries/ I found this information:
"Processing now allows for a “libraries” folder inside your Processing sketchbook, which is a great deal more convenient than having your 3rd party libraries installed in the Processing application folder."
They're saying you can now install a library like twitter4j here (you add the directories into your \My Documents\Processing\ folder):
C:\My Documents\Processing\libraries\twitter4j\library\twitter4j (executable jar file)
This is mentioned again on the Processing site here: http://wiki.processing.org/w/How_to_Install_a_Contributed_Library
" libraries must be ... placed within the "libraries" folder of your Processing sketchbook."
(To find the Processing sketchbook location on your computer, open the Preferences window from the Processing application and look for the "Sketchbook location" item at the top.)
And in the forums here: http://forum.processing.org/topic/how-to-install-a-contributed-library
You've tried this both ways and it's not working? I don't know what's up. I'm sorry. Unless someone else contributes here, I'd say ask the Processing forums. They've got a forum just for Contributed Libraries here: http://forum.processing.org/contributed-library-questions
Sorry I don't have the answer for you. It *should* work. ;-)
Good luck!
Reply 12 years ago on Step 4
I finally go it to work by taking the twitter4j.jar file attached to this page and put it into "sketchbook">libraries>twitter4j>library>
Reply 12 years ago on Step 4
Excellent. Thanks for the info.
Reply 12 years ago on Step 4
I've got this same project available using Python instead of Processing, in case that appeals to you. I know that's not an answer (and I want to know when you get twitter4j working) but I figured I'd mention it.
https://www.instructables.com/id/simpleTweet01python/
12 years ago on Introduction
Brilliant!Rated5*
Reply 12 years ago on Introduction
Cheers!
12 years ago on Step 4
Hi - can you be more explicit when you say "install twitter"? I don't see an exe in the download section at all (plus, I'm running linux, so "install" is a term that doesn't mean anything to me :) ).