Riding The Breeze

Jump to content

Additional information

Categories


Posts

Critical Mass Lecco

Nov 2007
07

It has to start somewhere,
it has to start sometime !
Which better place than here ?
Which better time than now ?

Critical Mass Lecco 2008


Clusone '07

Oct 2007
15
Giusy, Kathrin and me. Thanks to Adeline (on the other side of the camera

Giusy, Kathrin and me. Thanks to Adeline (on the other side of the camera

Like the last 4 years, few days ago, I was in Clusone for the Estate di S.Martino, I love this village and the feeling you get during the happening. Lovely wine, traditional food and true friends … need more to be happy ?

If the next year you wanna come mark this site: www.bandabidu.org.


Got pictures !

Sep 2007
17
Reading and writing in Amsterdam !

Reading and writing in Amsterdam !

Sotto la panza ...

Under the belly ...


CSV export from MySQL

Sep 2007
15

If you have access on the machine with MySQL and you need to export all tables in a database you can use:

hpatoio@namazu:~$ mysqldump -uroot -p DATABASE_NAME -T '/home/simone/export_csv' --fields-terminated-by "," --fields-enclosed-by '"' --lines-terminated-by "\n"

the script will create a files for each table of the DB and will place it in export_csv.

If you need to export a custom resultset or you need to export data from a remote MySQL server on your machine you can use this command :

hpatoio@namazu:~$ mysql -uroot -h HOSTNAME -p DATABASE_NAME -B -e "select field1,field2 ... fieldX from \`TABLE_NAME\`;" | sed 's/\t/","/g;s/^/"/;s/$/"/;s/\n//g' > my_export.csv


Microsoft Access to MySQL | Online converter

Sep 2007
11

Amazing online tool to convert MDB Microsoft Access file to MySQL SQL scripts !

Check it out -> http://www.mdb2mysql.com/


Good times

Aug 2007
13
Joelle and I

Joelle and I

And also for this year my vacations are finished. Many people I've met on the way … some were already friends, some were new :D .

I could write for hours trying to tell you who I meet and where I was, but, as you probably know I'm not good in telling stories.

So just wanna say thanks to : Jan, Rebekka, Bugo, Vale, Gio, Anca (even if it didn't work), Joelle and all the people at the NEVA meeting, Linnea, Kenneth and all the Tjärnkvist family, Karsten, Liga, the lovely people in Ultervattnet, the backpackers at the Sunflower Hostel, Adam and of course to Swedish Police :D

Due I didn't have a camera with me there are no pictures of the vacations, except for this one …


Finally ! What you see is what you mean

Aug 2007
05

I was looking for a good and clean editor for one of my customers, and I end up to WYMeditor !

That's the way I like, that's the way I meant !


Add days to a date in javascript

May 2007
30

shiftDay = 10
var myDate = new Date();
myDate.setDate(myDate.getUTCDate() + shiftDay)
day   = myDate.getUTCDate()
month = myDate.getUTCMonth()*1 + 1
year  = myDate.getUTCFullYear()

This code is quite easy:


Rails API with the AJAX flavor

May 2007
10

http://www.railsbrain.com/


MSSQL | Convert unix timestamp to date

Apr 2007
24

select dateadd(ss, {field_name}, '19700101')


Paging

Credits

Template designed by praegnanz.de.