[PD] [pd] forum hacked

2007-04-08 Thread hard off
some hackers just took down the pd forum ( http://puredata.hurleur.com/ ) does anyone know how to fix that? hopefully neko, who moderates the forum, can do something. it would be a shame if we lost all the posts from there. ___ PD-list@iem.at

Re: [PD] HID Crashing

2007-04-08 Thread Clifford Dunn
I am using version 0.6 of HID and it still keeps crashing. It seems like this might be local to my computer. Is there any way I can check if that's true? Thanks! Clifford Dunn www.myspace.com/clifforddunn On 08/04/07, Hans-Christoph Steiner [EMAIL PROTECTED] wrote: Yeah, that was a stupid

Re: [PD] [not really OT] a contemporary sensibility?

2007-04-08 Thread David Powers
On 4/6/07, Greg Pond [EMAIL PROTECTED] wrote: Bounce these quotes by Duchamp off Debord, Deleuze and Guattari- also don't forget Bourriaud: I am still a victim of chess. It has all the beauty of art - and much more. It cannot be commercialized. Chess is much purer than art in its social

Re: [PD] accessing mysql database

2007-04-08 Thread David Powers
Hi Luigi, Just to be clear: Can you connect to the database with just Python? If not, I will try to help later today. This gives me a good excuse to try such a thing, I've been doing PHP+MySQL typical web programming lately, but Python is (in my opinion) a far nicer language than PHP and I've

Re: [PD] HID Crashing

2007-04-08 Thread Hans-Christoph Steiner
I need more info to know what's going on. First off, which version are you using (i.e. the numbers not the most recent)? A log of what's in the Pd window would be useful. Here's how: - launch Pd - in the Preferences - StartUp, add -stderr to the startup flags - click Save all settings -

Re: [PD] accessing mysql database

2007-04-08 Thread Luigi Rensinghoff
Yes i can acces the database from python, entering some lines of python: db = MySQLdb.connect(localhost, root, gigiroot, sfx_database) sql = SELECT * FROM soundfile where description like '%birds% cursor.execute(sql) data = cursor.fetchall() print data. but from PD it does not work Am

Re: [PD] frequency graphing in gem

2007-04-08 Thread David Powers
Hi, I suggest changing the [spigot~] objects to [pd spigot~] subpatches, because: 1. Many versions don't have such an object, and more importantly, 2. There is a [spigot~] object from ydegoyon, that does NOT behave in the way that you expect in your patch ... i.e. it's not like [spigot], I don't

Re: [PD] HID Crashing

2007-04-08 Thread Kyle Klipowicz
Here is what the Pd window gives me for the print method in hid. It appears to detect the sidewinder (my gamepad) in all its glory, but the buttons do not register when pressed. I tried using the test option in the help patch to no avail as well. The gamepad should be fine, since I was using it

Re: [PD] accessing mysql database

2007-04-08 Thread David Powers
Ahhh I guess I can't be of any help then, I haven't used Python inside PD too much ... But I'd love to hear the outcome of this. ~David On 4/8/07, Luigi Rensinghoff [EMAIL PROTECTED] wrote: Yes i can acces the database from python, entering some lines of python: db =

Re: [PD] accessing mysql database

2007-04-08 Thread Thomas Grill
Hi Luigi, Yes i can acces the database from python, entering some lines of python: db = MySQLdb.connect(localhost, root, gigiroot, sfx_database) sql = SELECT * FROM soundfile where description like '%birds% cursor.execute(sql) data = cursor.fetchall() print data. but from PD it does