Re: [PD] (netpd)U(Pd-extended), Pd-ext bug-tracker (was Re: elitism, software and academia)

2007-06-13 Thread Enrique Erne
i'm glad you like it. was it hard to install? if i'd maintain it into cvs first thing i would do is add plain/basic netpd. then i would add some patches to the 2 directories netpd/patches and netpd/abs. btw. if you disconnect the chat from the netpd server everything works locally. it opens a

Re: [PD] alternate values per change?

2007-06-13 Thread IOhannes m zmoelnig
David Powers wrote: > Woops, I'm tired, I meant a TOGGLE (the gui kind) not a TRIGGER ~D > i think you meant both a trigger and a toggle. since toggle will set its value to the incoming number, you will want to de-number the output of [ctlout] by using [t b] gmasdr IOhannes ___

Re: [PD] {netpd}U{Pd-extended}

2007-06-13 Thread Kyle Klipowicz
Hi Eni~ I also am curious about Roman's opinion, but I'm glad that you're on board! Installation was surprisingly simple. I just copied the netpd directory to my normal ~/Pd dir, and edited my .pdrc file for -path and -helppath stuff. After that, it was a snap to grap the stuff from you (luckily

Re: [PD] alternate values per change?

2007-06-13 Thread Kyle Klipowicz
Or alternatively, just use this construction: [inlet keypress] | [sel 0 1] | [f 0]X[+1] | [mod 2] | [outlet to wherever] Note: the first outlet of [sel] is ignored. ~Kyle On 6/13/07, IOhannes m zmoelnig <[EMAIL PROTECTED]> wrote: >

[PD] [PD-announce] Workshop Pure Data in Amsterdam

2007-06-13 Thread Mediamatic
25 | 26 & 27 | 28 | 29 June 2007 Mediamatic / Amsterdam Making practical designs with Pure Data in a 5, 2 or 3-day workshop PD Pure Data (or PD) is a visual programming language for the creation of interactive computer music, video and multimedia works. It has become a pioneering application

Re: [PD] (netpd)U(Pd-extended), Pd-ext bug-tracker (was Re: elitism, software and academia)

2007-06-13 Thread Enrique Erne
hello hans On Jun 13, 2007, at 3:46 AM, Hans-Christoph Steiner wrote: >> on one hand i would like to see netpd included in pd-extended, but not >> on cost of the current package. it is important that netpd and all >> patches work on linux, osx and windows. >> >> if people start to write netpd pat

Re: [PD] {netpd}U{Pd-extended}

2007-06-13 Thread Enrique Erne
hi Kyle On Jun 13, 2007, at 9:30 AM, Kyle Klipowicz wrote: > anarchic democracy that exists in the netpd performance > world. hehe, nice expression. > As a side question, has anyone ever tried to write all the netpd > events to a [textfile]-based sequencer so that they can easily record > and r

Re: [PD] Question about possible SQL/MySQL Externals

2007-06-13 Thread Jamie Bullock
Hi Mike, I did some work on this last year, but gave up for lack of time. I basically renamed it to psql, and changed the code so that it doesn't open, close and flush the database for every query, i.e. no more 'single'. If you are interested, I can send you the source tarball + diffs off list.

[PD] [pd] revision to vline~ doc in pddp

2007-06-13 Thread hard off
i made an addition to the vline~ documentation in pddp. how do i get my revision added into the general documentation? vline~-help-revision.pd Description: Binary data ___ PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists

Re: [PD] [pd] revision to vline~ doc in pddp

2007-06-13 Thread Hans-Christoph Steiner
Nice! Add it to the patch tracker on sourceforge: http://sourceforge.net/tracker/?group_id=55736&atid=478072 .hc On Jun 13, 2007, at 3:02 AM, hard off wrote: i made an addition to the vline~ documentation in pddp. how do i get my revision added into the general documentation?

[PD] alternate values per change?

2007-06-13 Thread Mathieu Bouchard
On Wed, 13 Jun 2007, Kyle wrote: [inlet keypress] | [sel 0 1] | [f 0]X[+1] | [mod 2] | [outlet to wherever] This will fail once [f] increments to 16777216 (also known as 256 cubed), and then it will get stuck, because that's the last co

Re: [PD] [pd] revision to vline~ doc in pddp

2007-06-13 Thread hard off
ok i added it, and it ended up in 'feature requests' ..i hope that is the correct place. ___ PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list

Re: [PD] alternate values per change?

2007-06-13 Thread hard off
This will fail once [f] increments to 16777216< yep, you'd get a pretty sore finger doing that many keypresses as well. [f]X[==] nice trick. cheers. ___ PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/

Re: [PD] [pd] revision to vline~ doc in pddp

2007-06-13 Thread Frank Barknecht
Hallo, Hans-Christoph Steiner hat gesagt: // Hans-Christoph Steiner wrote: > Nice! Add it to the patch tracker on sourceforge: > > http://sourceforge.net/tracker/?group_id=55736&atid=478072 However I think, a patch to fix to the vline~ behaviour would make more sense then a change to the docs.

Re: [PD] (netpd)U(Pd-extended), Pd-ext bug-tracker (was Re: elitism, software and academia)

2007-06-13 Thread Hans-Christoph Steiner
On Jun 13, 2007, at 4:10 AM, Enrique Erne wrote: > hello hans > > On Jun 13, 2007, at 3:46 AM, Hans-Christoph Steiner wrote: > >>> on one hand i would like to see netpd included in pd-extended, >>> but not >>> on cost of the current package. it is important that netpd and all >>> patches work o

Re: [PD] alternate values per change?

2007-06-13 Thread Mathieu Bouchard
On Wed, 13 Jun 2007, hard off wrote: This will fail once [f] increments to 16777216< yep, you'd get a pretty sore finger doing that many keypresses as well. I know that it's extremely unlikely to happen, but one day you'll want such a counter for something else that is triggered automaticall

Re: [PD] [pd] revision to vline~ doc in pddp

2007-06-13 Thread Dafydd Hughes
Hey - thanks for this. This is the sort of info we'll find really useful! cheers dafydd On 6/13/07, hard off <[EMAIL PROTECTED]> wrote: > ok i added it, and it ended up in 'feature requests' ..i hope that is the > correct place. > > ___ > PD-list@iem.a

Re: [PD] alternate values per change?

2007-06-13 Thread Kyle Klipowicz
Actually, I usually connect the output of the [mod] object back into the [f 0], but the ASCII patching made that a little difficult to describe. ~Kyle On 6/13/07, Mathieu Bouchard <[EMAIL PROTECTED]> wrote: > On Wed, 13 Jun 2007, Kyle wrote: > > > [inlet keypress] > > | > > [sel 0 1] > >

Re: [PD] plot

2007-06-13 Thread Hans-Christoph Steiner
If you just need to plot basic 2D stuff, you can do it with the arrays.  Here's an example: exponential_seat.pd Description: Binary data exponential_seat-help.pd Description: Binary data .hcOn Jun 8, 2007, at 5:53 PM, tania habib wrote:Hello list,I need some help in finding the object which can

[PD] another attempt at pdp quicktime support on Mac OS X

2007-06-13 Thread Hans-Christoph Steiner
Hey, I think this time it's for real! Please try out the pdp_qt and pdp_yqt on Mac OS X. I found a bug in the libquicktime embedding that I have fixed. http://autobuild.puredata.info/auto-build/2007-06-13/ .hc

Re: [PD] switch~ & cputime climbing

2007-06-13 Thread Frank Barknecht
Hallo, Claude Heiland-Allen hat gesagt: // Claude Heiland-Allen wrote: > A solution: > > Use a better data structure than a linked list; a balanced tree would > reduce time complexity to O(log n) instead of O(n) (if I remember > correctly), admittedly at the cost of harder implementation. > >

Re: [PD] another attempt at pdp quicktime support on Mac OS X

2007-06-13 Thread Hans-Christoph Steiner
Oops, I meant tomorrow's, not today's: http://autobuild.puredata.info/auto-build/ .hc On Jun 13, 2007, at 2:22 PM, Hans-Christoph Steiner wrote: > > Hey, > > I think this time it's for real! Please try out the pdp_qt and > pdp_yqt on Mac OS X. I found a bug in the libquicktime embedding >

Re: [PD] plot

2007-06-13 Thread Frank Barknecht
Hallo, Hans-Christoph Steiner hat gesagt: // Hans-Christoph Steiner wrote: > If you just need to plot basic 2D stuff, you can do it with the > arrays. Here's an example: A small suggestion: I wouldn't use "purepd/float_argument" in that patch. It's an added dependency that makes the whole abst

Re: [PD] plot

2007-06-13 Thread Frank Barknecht
Hallo, Frank Barknecht hat gesagt: // Frank Barknecht wrote: > Attached is a version without any dependencies in both files. Oops, a wrong connection in the help file, new files attached. Ciao -- Frank Barknecht _ __footils.org_ __goto10.org__ exponential_seat.pd Descript

[PD] probles with 0.39.2-extended-rc2 on windows

2007-06-13 Thread martin brinkmann
please apologize if this is not the right list to report problems with pd-extended. i have just tried pd extended on windows, and encountered the following problems: -iem abs vcf_hp2,4,6,8 are missing (i copied these from my linux installation) -iem_cot missing, used by vcf_hp2 and vcf_lp2 (i cha

[PD] OSC stuck

2007-06-13 Thread James Hearon
OSC in Pd ext.version 0.39.2, Fedora Core 6, planetCCRMA error: /usr/lib/pd/extra/oscx/sendOSC.pd_linux: /usr/lib/pd/extra/oscx/sendOSC.pd_linux: cannot restore segment prot after reloc: Permission denied sendOSC ... couldn't create OSC ... couldn't create tried $Pd -lib oscx, also $sudo Pd -li

Re: [PD] basic composition tutorial

2007-06-13 Thread Andy Farnell
On Sat, 9 Jun 2007 11:49:04 +0200 Frank Barknecht <[EMAIL PROTECTED]> wrote: > Hallo, > Andy Farnell hat gesagt: // Andy Farnell wrote: > > > pdf builds automatically now, > > Do you have your scripts to generate things somewhere only as well? I > could figure they might be useful to others as

Re: [PD] {netpd}U{Pd-extended}

2007-06-13 Thread Greg Pond
Kyle, I agree with your impression of this "anarchic democracy". These guys were generous enough to let me sit in with them when I was in in Zurich and I was really impressed. They also cooked me dinner. As a relative beginner I had Netpd up and running easily. cheers to Enrique, Moritz, and Ro

Re: [PD] probles with 0.39.2-extended-rc2 on windows

2007-06-13 Thread Hans-Christoph Steiner
Thanks for the bug report, comments inline: On Jun 13, 2007, at 4:44 PM, martin brinkmann wrote: > please apologize if this is not the right list to report > problems with pd-extended. > > i have just tried pd extended on windows, and encountered the > following problems: > -iem abs vcf_hp2,4,6,