~ overflow ~

Tag: source

MySQL procedure related functions

by z3n on Aug.05, 2009, under Notes

Since i keep forgetting this I will post as reminder:

show procedure status;

Lists procedures stored on current database.

show create procedure database.procedure_name;

Shows the source of the stored procedure.

grant execute on procedure database.procedure_name to username;

Grants execute privileges to the specific procedure and user.

Those are somehow obscure functions on mysql documentation, I think that they are still improving the procedures usability.

Leave a Comment :, , , , , more...

Building Vidalia from Source at Fedora Core 6

by z3n on Jun.10, 2009, under Linux Happyness

Problem:

How to build vidalia from source at FC6 ?

Solution:

Ignore the INSTALL file, apparently it’s outdated and qt is no longer the same they link there, you can install all the needed packs from yum:

yum install qt4 qt4-dev* nas tor privoxy qt cmake

Then it’s just build from source:

cd /path/to/vidalia-src

cmake .;make;make install

done!

Source:

Vidalia Project Trac

Extra:

For me, tor didn’t worked at all it kept connecting forever and couldn’t build a node list, i figured out that the latest tor engine for fc6 installed by yum was 0.1.x which didn’t work with the actual network anymore, so i had install tor 0.2.x from the source, after that it almost connected, tor kept building a nodelist forever, so i checked the message log and figured out that the machine clock was wrong, in order to fix that, i had to sync it using ntp.

Leave a Comment :, , , , , , more...

Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!