Re: [PD] Berlin Pure Data Meetings

2008-10-14 Thread João Pais
Unfortunately I'm out this month, or I would gladly try to do something. Is this a time-limited event, or you're staying for a while? (will be back around end of November) for something about me, you can read a fresh article in http://cec.concordia.ca/econtact/10_4/bernal_pais_endphase.html

Re: [PD] Sending Textures

2008-10-14 Thread IOhannes m zmoelnig
Joseph Barrows wrote: Hi Hans, thanks - it does work! what had changed was that pix_texture wouldn't do anything untill it was in a gem chain (which it didn't need in .39, but was probably an accidental 'feature') i would call it a bug. all gem-objects should only do anything (graphic wise)

Re: [PD] Testing for empty creation args?

2008-10-14 Thread Frank Barknecht
Hallo, Bill Gribble hat gesagt: // Bill Gribble wrote: I am doing something like this: |loadbang| | |symbol $1| | |readfile $1 cr, rewind( | |textfile| There's also an interface to set the filename later. Use this instead: [list append $1] | [select 0] |\

Re: [PD] expr modulo negative

2008-10-14 Thread Frank Barknecht
Hallo, Hans Roels hat gesagt: // Hans Roels wrote: Hello, If you want to calculate the modulo of a negative number, you get a different result if you use the 'mod' object or 'expr' with %. -1 4 || mod | 3 -1 4 | | expr $f1 % $f2 | -1 I

Re: [PD] expr modulo negative

2008-10-14 Thread IOhannes m zmoelnig
Hans Roels wrote: Hello, If you want to calculate the modulo of a negative number, you get a different result if you use the 'mod' object or 'expr' with %. -1 4 || mod | 3 -1 4 | | expr $f1 % $f2 | -1 I guess this is a bug in expr ?

Re: [PD] expr modulo negative

2008-10-14 Thread cyrille henry
you can use pd [mod] object or [%] object. it's not the same for negative umber. expr % is the same than pd %. so i don't see any bug. Cyrille Hans Roels a écrit : Hello, If you want to calculate the modulo of a negative number, you get a different result if you use the 'mod' object or

Re: [PD] expr modulo negative

2008-10-14 Thread Andy Farnell
[%] and [mod] treat the sign differently. [mod] is monotonic but [%] is symmetrical about zero. On Tue, 14 Oct 2008 13:45:50 +0100 Hans Roels [EMAIL PROTECTED] wrote: Hello, If you want to calculate the modulo of a negative number, you get a different result if you use the 'mod' object

[PD] 'argument number out of range' error in Miller Puckette's example patches

2008-10-14 Thread Lao Yu
Hi, I can't resolve this - in the example patch folder 2.control.examples the example 10.more.messages has to the lower right a message ; number9 $1; 9bis $2 which generates the above message when activated. the other examples with $1 and $2 in the same patch, for instance just before the

Re: [PD] pyext compile ubuntu

2008-10-14 Thread Vincent Rioux
hi Thomas and Patco, i had the same errors as you Patco but i finally managed to compile pyext on hardy, python2.5 this way: get sources from svn co https://svn.g.org/ext/trunk/flext svn co https://svn.g.org/ext/trunk/py compile flext compile py: cd py bash ../flext/build.sh pd gcc edit

Re: [PD] live distro with pd extended

2008-10-14 Thread Roman Haefeli
On Tue, 2008-10-14 at 17:07 +0200, Luigi Rensinghoff wrote: Hi List Well maybe it was discussed before I am looking for a live distro like puredyne , that i can start from a CD, with my patches on an usb stick. Since i have to usse a foreign computer for a performance. I

[PD] live distro with pd extended

2008-10-14 Thread Luigi Rensinghoff
Hi List Well maybe it was discussed before I am looking for a live distro like puredyne , that i can start from a CD, with my patches on an usb stick. Since i have to usse a foreign computer for a performance. I tried with puredyne but i am missing many externals from pd-

Re: [PD] live distro with pd extended

2008-10-14 Thread Roman Haefeli
On Tue, 2008-10-14 at 17:50 +0200, Luigi Rensinghoff wrote: On Oct 14, 2008, at 5:21 PM, Roman Haefeli wrote: Hi List Well maybe it was discussed before I am looking for a live distro like puredyne , that i can start from a CD, with my patches on an usb stick. Since

[PD] RjDj hits TechCrunch

2008-10-14 Thread Jamie Bullock
I've been off the list for a while so I missed the buzz around RjDj. It seems it's hit TechCrunch, which is pretty mainstream coverage for a Pd-based app: http://www.techcrunch.com/2008/10/13/rjdj-generates-an-awesome-trippy-soundtrack-for-your-life/ Great work! Jamie -- www.postlude.co.uk

[PD] Help with compressor/limiter abstraction

2008-10-14 Thread Frank Barknecht
Hallo, I'm trying to build a pure-Pd compressor/limiter effect. I followed a chapter in the Csound book a bit (by Marc Resibois), but somehow it's still a bit strange. I would appreciate if someone could test out the attachemend and maybe even enhance it? Ciao -- Frank Barknecht

Re: [PD] Testing for empty creation args?

2008-10-14 Thread Hans-Christoph Steiner
On Oct 14, 2008, at 7:56 AM, IOhannes m zmoelnig wrote: Frank Barknecht wrote: Hallo, Bill Gribble hat gesagt: // Bill Gribble wrote: I am doing something like this: |loadbang| | |symbol $1| | |readfile $1 cr, rewind( | |textfile| There's also an interface to set the filename

[PD] [PD-announce] PDa package for OpenMoko Freerunner GTA02

2008-10-14 Thread Hans-Christoph Steiner
Hey, I just uploaded a test build of PDa for OpenMoko Freerunner GTA02. I haven't had a chance to test it yet, so give it a shot and post back about your experiences with it. http://sourceforge.net/project/showfiles.php? group_id=236704package_id=287575 There are also Tcl/Tk packages in

Re: [PD] Testing for empty creation args?

2008-10-14 Thread Roman Haefeli
On Tue, 2008-10-14 at 13:56 +0200, IOhannes m zmoelnig wrote: since this does not differentiate between no args and 0, i prefer the attached version (too complicated for ascii art) fmgasdr IOhannes wow! this is smart. how often could i have used that! i wonder now, if there are other uses

Re: [PD] expr modulo negative

2008-10-14 Thread Max
maybe someone could explain _what_ the difference is? that would be enlightening vor everybody. ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] Testing for empty creation args?

2008-10-14 Thread Frank Barknecht
Hallo, IOhannes m zmoelnig hat gesagt: // IOhannes m zmoelnig wrote: since this does not differentiate between no args and 0, i prefer the attached version (too complicated for ascii art) That's neat! I've never tought of this approach, thanks for posting. Ciao -- Frank Barknecht

Re: [PD] expr modulo negative

2008-10-14 Thread Hans Roels
ok, so there is no expr function identical to the 'mod' object? Hans r At 13:09 14/10/2008, Frank Barknecht wrote: Hallo, Hans Roels hat gesagt: // Hans Roels wrote: Hello, If you want to calculate the modulo of a negative number, you get a different result if you use the 'mod' object

Re: [PD] Berlin Pure Data Meetings

2008-10-14 Thread Julian Brooks
Yar, me too. Shame no up north UK action. Would have liked to check it. Best, Jb From: hard off [mailto:[EMAIL PROTECTED] Sent: 13 October 2008 23:21 To: Julian Brooks Subject: Re: [PD] Berlin Pure Data Meetings oh sorry, should have posted to the list. just did thurs fri

Re: [PD] live distro with pd extended

2008-10-14 Thread Luigi Rensinghoff
On Oct 14, 2008, at 5:21 PM, Roman Haefeli wrote: Hi List Well maybe it was discussed before I am looking for a live distro like puredyne , that i can start from a CD, with my patches on an usb stick. Since i have to usse a foreign computer for a performance. I tried with puredyne

[PD] Testing for empty creation args?

2008-10-14 Thread Bill Gribble
I am doing something like this: |loadbang| | |symbol $1| | |readfile $1 cr, rewind( | |textfile| There's also an interface to set the filename later. Because of the later message processing, it would be nice not to send the read message if there is no creation arg. Is there a

Re: [PD] 'argument number out of range' error in Miller Puckette's example patches

2008-10-14 Thread IOhannes m zmoelnig
Lao Yu wrote: Hi, I can't resolve this - in the example patch folder 2.control.examples the example 10.more.messages has to the lower right a message ; number9 $1; 9bis $2 which generates the above message when activated. the other examples with $1 and $2 in the same patch, for

[PD] expr modulo negative

2008-10-14 Thread Hans Roels
Hello, If you want to calculate the modulo of a negative number, you get a different result if you use the 'mod' object or 'expr' with %. -1 4 || mod | 3 -1 4 | | expr $f1 % $f2 | -1 I guess this is a bug in expr ? Hans r

Re: [PD] Testing for empty creation args?

2008-10-14 Thread IOhannes m zmoelnig
Frank Barknecht wrote: Hallo, Bill Gribble hat gesagt: // Bill Gribble wrote: I am doing something like this: |loadbang| | |symbol $1| | |readfile $1 cr, rewind( | |textfile| There's also an interface to set the filename later. Use this instead: [list append $1] | [select 0] |

Re: [PD] live distro with pd extended

2008-10-14 Thread Frank Barknecht
Hallo, Luigi Rensinghoff hat gesagt: // Luigi Rensinghoff wrote: I tried with puredyne but i am missing many externals from pd- extended Are they really missing? pure:dyne includes many many externals, but doesn't use the directory layout of Pd extended, AFAIK, so you may be able to load

[PD] first Reware Pd image for Palm TX released

2008-10-14 Thread Hans-Christoph Steiner
Hey, http://eds.org/~hans/reware-pd-PalmTX.tar.bz2 I just put up a complete image and kernel for the Palm TX. Just download, untar to an SD card, stick it in your Palm TX, then click the Linux Penguin and voila! It should work. BE SURE YOU SYNC YOUR PALM FIRST! It might corrupt things!

Re: [PD] expr modulo negative

2008-10-14 Thread Kyle Klipowicz
I think that since Miller is a self-described math geek, the difference is that [mod] behaves like the mathematical (mod n). [%] is the modulo operator used by computer science. If my memory serves me, in number theory and abstract algebra, the m (mod n) notation is used to define a subset of the

Re: [PD] expr modulo negative

2008-10-14 Thread Max
thank you andy. i guess it is a bug anyway, not in the objects, but in the documentation. both open the same helppatch with no mention about the difference. max Am 14.10.2008 um 14:32 schrieb Andy Farnell: [%] and [mod] treat the sign differently. [mod] is monotonic but [%] is