Riding The Breeze

Jump to content

Additional information

Categories


Posts

Slang

Nov 2006
02

Here some slang/vocabulary from the english course "Rain dogs"

Yes man – Brown nose
Lecchino, paraculo
Shitting bricks
Avere paura, ironico
Spew
Vomitare
Bill
Banconota in americano, conto in inglese
Note
Banconote in inglese
Check
Conto in americano, assegno in inglese
Jack the ripper
Jack lo squartatore

One more time in Padova

Oct 2006
23
Padova by night
Prato della Valle at dusk | Picture from SXC.hu

Padova is, with Siena, the city I like most in Italy.

Things you can't miss :

And if after have cicled all day and have had a long night-party the day after you wanna relax, have a good bath at the Terme preistoriche hot open-air bath opened till midnight and more.


Ops …

Oct 2006
08

Oh no ! It happend again !!

The sysadmin turned on the gpc_magic_quotes and you got the DB full of \'

Here a fast way to get back the correct values.

UPDATE table_name SET field_name = REPLACE(field_name,'\"',"")


Abroad …

Oct 2006
03

Some of my friends went abroad in this last month … Jan went to Paris, Ila to Barcelona and Vivi to London.

All these "goodbye" recall me my time in Sweden, so I've decided to put some pictures on-line … check them out


Tuscany …

Sep 2006
30
Pienza, view on the Val d'Orcia
In Pienza with view on the Val d'Orcia

Well … great weekend in Tuscany last one ! Great place, good travelmate and perfect food&wine of course ;)


Ubuntu Dual Monitor Setup

Sep 2006
26

Hello, I'm finally on Ubuntu, Dapper drake :)

The setup was really easy. I don't have any strange device connected to the PC.

The only thing that didn't work immediately was the dual monitor; I have a Nvidia 7600GS with dual DVI output with 2 BenQ FP93G.

Thanks to this great tutorial Dual Monitors TwinView HowTo By Steve Fink the setup was fast and easy.

Just 2 advices:

1) Be sure that in your xorg.conf under Section Device you have

Driver "nvidia"

and not

Driver "nv"

dunno why but this was my default value.

2) If the second monitor do not works set the horizontal resolution to twice the monitor resolution.
For example, my monitor has 1280×1024 and I had to set the resolution to 2560×1024.


Sweden

Sep 2006
10

I cut&paste this list from Bianca's BLOG.
I've got in contact with her throght the site Interrail.net where I'm subscibed as cit guide for Milano .

As someone knows I've lived in Sweden for a while (eleven months) and when I've read this I realized I was there for too long :)

So, here we go:

You know you’ve been in Sweden too long when


Access Mysql from other machines

Aug 2006
29

For security reason, MySQL doesn't allow access from other computer.
If you try to connect with a MySQL administration client like MySQL Administrator you will get a Mysql Error Number 2003.

All this operations modify system settings, so they must be executed with root privileges

If you want connect from a computer in your LAN to your mysql server you have to :

1) Edit your MySQL configuration file

root@namazu:~#sudo vi /etc/mysql/my.conf
and change the line
bind-address = 127.0.0.1
with
bind-address = 192.168.178.100

Now, to apply changes you have to reload the MySQL server
root@namazu:~#sudo /etc/init.d/mysql start
No MySQL listen on your external interface, to verify that the server is up and accept connection type

root@namazu:~#telnet 192.168.178.100 3306

and you should get:

Trying 192.168.178.100...
Connected to 192.168.178.100.
Escape character is '^]'.
@
5.0.75-0ubuntu10.2

2) Give grants

Now MySQL is reachable on the "network" level, we have to enable access to databases.

Let's access MySQL with the mysql client, we still use localhost because we don't have privileges to access MySQL from others hosts yet.

root@namazu:~#mysql -uroot -pmyRootPass -h localhost

Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 7 to server version: 5.0.22-Debian_0ubuntu6.06-log Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

Modify access privileges to the server

mysql>GRANT ALL PRIVILEGES ON DB_NAME TO 'USERNAME'@'HOST' IDENTIFIED BY
'PASSWORD';

N.B.

So, for instance, with this command :

mysql>GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'foopass';

we allow root (whose pass is foopass) to access all databases whichever host.

Exit the client

mysql>exit

Reload the privileges

root@namazu:~#mysqladmin reload

For more info on GRANT command: GRANT Syntax on MySQL Reference Manual

Have fun …


Back from Spain …

Aug 2006
13
Back from Spain

Well … vacation are always too short.

If you go to Spain do not miss :


After The Party

Jul 2006
22
MM

Ok, the party was … check out the photos :-)


Paging

Credits

Template designed by praegnanz.de.