Re: [PD] [OT] SSE/MMX tips?

2011-09-08 Thread Mathieu Bouchard
On Wed, 7 Sep 2011, Charles Henry wrote: On Wed, Sep 7, 2011 at 7:59 PM, Mathieu Bouchard ma...@artengine.ca wrote: On Wed, 7 Sep 2011, Mathieu Bouchard wrote: On Wed, 7 Sep 2011, Bill Gribble wrote: So far iteration on plain floats seems to be the best I can come up with, but HADDPS is

Re: [PD] OSC Confusion

2011-09-08 Thread Roman Haefeli
On Wed, 2011-09-07 at 21:00 -0700, Jim Aikin wrote: This leads me to a concatenation of questions. (1) Does the fact that OSCroute, sendOSC, and dumpOSC are deprecated mean that they actually don't work, or do they still work? They probably still work, but are not maintained actively

[PD] [PD-announce] Origination and Metacreation: a conversation with Ben Bogart

2011-09-08 Thread Marco Donnarumma
Dear all, it's with great pleasure that I share with you this piece. I had an inspiring, in-depth conversation with artist and fellow Pd'er Ben Bogart over the last months, and this is the result: http://vagueterrain.net/content/2011/09/origination-and-metacreation-conversation-ben-bogart Tags:

[PD] ternary counting

2011-09-08 Thread tim vets
Hello, Does anyone have an example of how to do ternary counting in pd? 00 01 02 10 11 12 20 21 22 ...etc thanks, Tim ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] [OT] SSE/MMX tips?

2011-09-08 Thread Charles Henry
On Thu, Sep 8, 2011 at 1:02 AM, Mathieu Bouchard ma...@artengine.ca wrote: On Wed, 7 Sep 2011, Charles Henry wrote: On Wed, Sep 7, 2011 at 7:59 PM, Mathieu Bouchard ma...@artengine.ca wrote: On Wed, 7 Sep 2011, Mathieu Bouchard wrote: On Wed, 7 Sep 2011, Bill Gribble wrote: So far

Re: [PD] ternary counting

2011-09-08 Thread Andy Farnell
Try a [div] [mod] chain Four digits base 3 would be base 10 | [t f f]_[mod 3]_ D0 | [div 3] | [t f f]_[mod 3]_ D1 | [div 3] | [t f f]_[mod 3]_ D2 | div 3] | [t f f]_[mod 3]_ D3 | etc. for more digits On Thu, 8 Sep 2011 15:19:03 +0200 tim vets timv...@gmail.com wrote: Hello, Does anyone have

Re: [PD] [OT] SSE/MMX tips?

2011-09-08 Thread Mathieu Bouchard
On Wed, 7 Sep 2011, Bill Gribble wrote: It's really just for fun anyway. Well, if you wanted to really use SSE in that case, it would be appropriate to process 4 interleaved signals at once, or at least two. Btw, if you want something fun, consider : a+b = (a^b) + ((ab)1) that is,

Re: [PD] ternary counting

2011-09-08 Thread tim vets
perfect, thanks :) Tim 2011/9/8 Andy Farnell padawa...@obiwannabe.co.uk Try a [div] [mod] chain Four digits base 3 would be base 10 | [t f f]_[mod 3]_ D0 | [div 3] | [t f f]_[mod 3]_ D1 | [div 3] | [t f f]_[mod 3]_ D2 | div 3] | [t f f]_[mod 3]_ D3 | etc. for more digits

Re: [PD] ternary counting

2011-09-08 Thread Mathieu Bouchard
On Thu, 8 Sep 2011, Andy Farnell wrote: Try a [div] [mod] chain Four digits base 3 would be Also, to have the counting itself in base 3, chain counters that count 0,1,2,0,1,2,0,1,2,... in which each counter adds a 1 to the counter on the left whenever it goes from 2 to 0. This makes a

Re: [PD] ternary counting

2011-09-08 Thread Lorenzo Sutton
On 08/09/2011 15:39, Andy Farnell wrote: Try a [div] [mod] chain Four digits base 3 would be base 10 | [t f f]_[mod 3]_ D0 | [div 3] | [t f f]_[mod 3]_ D1 | [div 3] | [t f f]_[mod 3]_ D2 | div 3] | [t f f]_[mod 3]_ D3 | etc. for more digits On Thu, 8 Sep 2011 15:19:03 +0200 tim

[PD] list interlace ?

2011-09-08 Thread tim vets
what's the best way to 'interlace' two lists, i.e. turn: 1 2 3 4 and 5 6 7 8 into 1 5 2 6 3 7 4 8 ? thanks, Tim ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

[PD] Python Externals for OSX

2011-09-08 Thread Pagano, Patrick
Hello Is there a compiled version of pyEXT for macintosh out there? I have a new graduate student here versed in python that wants to tweak pd with twitter and python and I wanted to have him look at those patches I may have fooled with them only on windows though Thanks is advance pp

Re: [PD] list interlace ?

2011-09-08 Thread João Pais
[sfruit/list-zip]. or you do some fancy list-drip+mix abstraction. what's the best way to 'interlace' two lists, i.e. turn: 1 2 3 4 and 5 6 7 8 into 1 5 2 6 3 7 4 8 ? thanks, Tim -- Friedenstr. 58 10249 Berlin (Deutschland) Tel +49 30 42020091 | Mob +49 162 6843570 Studio +49 30 69509190

Re: [PD] list interlace ?

2011-09-08 Thread hardoff goes bananas
if you're only using floats, and not symbols, what about just creating two tables, and then just alternating [tabread] between each table, sending the outputs into an accumulating list [list]x[t a] ? On Fri, Sep 9, 2011 at 1:13 AM, João Pais jmmmp...@googlemail.com wrote:

Re: [PD] Python Externals for OSX

2011-09-08 Thread patrick
http://g.org/ext/beta/macos/pd/ from: http://puredata.info/Members/thomas/py/?searchterm=pyext ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] (breaking symbols) was Re: find a list of numbers in a text file

2011-09-08 Thread Hans-Christoph Steiner
On Sep 7, 2011, at 5:46 PM, Jonathan Wilkes wrote: - Original Message - From: Hans-Christoph Steiner h...@at.or.at To: Jonathan Wilkes jancs...@yahoo.com Cc: fbar f...@footils.org; pd-list@iem.at pd-list@iem.at Sent: Tuesday, September 6, 2011 4:04 PM Subject: Re: [PD] (breaking

Re: [PD] list interlace ?

2011-09-08 Thread Mathieu Bouchard
On Thu, 8 Sep 2011, tim vets wrote: what's the best way to 'interlace' two lists, i.e. turn: 1 2 3 4 and 5 6 7 8 into 1 5 2 6 3 7 4 8 ? It's usually called interleaving. If they are all floats, the fastest is something like this : [list prepend 1 4 f #] | [#join 0]---[list

Re: [PD] list interlace ?

2011-09-08 Thread tim vets
thanks guys, I went with the sfruit/list-zip solution... 2011/9/8 hardoff goes bananas hard@gmail.com if you're only using floats, and not symbols, what about just creating two tables, and then just alternating [tabread] between each table, sending the outputs into an accumulating list

Re: [PD] list interlace ?

2011-09-08 Thread tim vets
2011/9/8 Mathieu Bouchard ma...@artengine.ca On Thu, 8 Sep 2011, tim vets wrote: what's the best way to 'interlace' two lists, i.e. turn: 1 2 3 4 and 5 6 7 8 into 1 5 2 6 3 7 4 8 ? It's usually called interleaving. If they are all floats, the fastest is something like this : [list

Re: [PD] list interlace ?

2011-09-08 Thread Mathieu Bouchard
On Fri, 9 Sep 2011, hardoff goes bananas wrote: if you're only using floats, and not symbols, what about just creating two tables, and then just alternating [tabread] between each table, sending the outputs into an accumulating list [list]x[t a] [list]x[t a] is quite slow. But then, so is

Re: [PD] (breaking symbols) was Re: find a list of numbers in a text file

2011-09-08 Thread Hans-Christoph Steiner
On Sep 8, 2011, at 12:59 PM, Hans-Christoph Steiner wrote: On Sep 7, 2011, at 5:46 PM, Jonathan Wilkes wrote: - Original Message - From: Hans-Christoph Steiner h...@at.or.at To: Jonathan Wilkes jancs...@yahoo.com Cc: fbar f...@footils.org; pd-list@iem.at pd-list@iem.at

[PD] [OT] cool book (maybe relevant to list discussion)

2011-09-08 Thread Andy Farnell
Anyone seen this? http://pragprog.com/book/btlang/seven-languages-in-seven-weeks I was flicking through it in Foyles bookshop yesterday and thought of many of the discussions we've had here of late. The style and content seem somewhat tuned to a web POV, but I think Pders would find

Re: [PD] kinect external

2011-09-08 Thread Richie Cyngler
I have libfreenect installed with Homebrew on OSX 10.6.8. Any ideas how to get this external working with Homebrew please? thanks On Fri, Jun 24, 2011 at 2:35 PM, Hans-Christoph Steiner h...@at.or.atwrote: Also, I just packaged libfreenect for fink, its not in Fink yet, so you need to

Re: [PD] Announcing CouchPdb development

2011-09-08 Thread Thomas Mayer
Hello all, On 03.09.2011 18:36, Mathieu Bouchard wrote: On Wed, 31 Aug 2011, Thomas Mayer wrote: I came up with lists: The example above outputs now on the left outlet list id 1 list name my\ name list year 2011 Yes, that sounds like the appropriate thing to do with Pd. After a JSON

Re: [PD] Python Externals for OSX

2011-09-08 Thread Pagano, Patrick
This is great it has a compiled version of py, thanks I assume pyext is different, do you have a compiled version of it? I am hoping Thomas will see this and shed a light on it too Thanks everyone pp On 9/8/11 12:48 PM, patrick pured...@11h11.com wrote: http://g.org/ext/beta/macos/pd/

Re: [PD] Python Externals for OSX

2011-09-08 Thread Pagano, Patrick
Sorry, after downloading the .py scripts everything seems to be loading and working pp On 9/8/11 5:33 PM, Pagano, Patrick p...@digitalworlds.ufl.edu wrote: This is great it has a compiled version of py, thanks I assume pyext is different, do you have a compiled version of it? I am hoping

Re: [PD] [OT] cool book (maybe relevant to list discussion)

2011-09-08 Thread Mathieu Bouchard
On Thu, 8 Sep 2011, Andy Farnell wrote: I was flicking through it in Foyles bookshop yesterday and thought of many of the discussions we've had here of late. The style and content seem somewhat tuned to a web POV, but I think Pders would find something interesting. Just wondered if anyone else

Re: [PD] pduino rewrite

2011-09-08 Thread Ingo
I could not open any patch at all! Neither Natty nor Windows XP worked. I am still on Pd-extended 0.42.5. There is a huge list of stuff (not pd library related) missing. So far this doesn't look like it's improving any dependency problem. Ingo buenas tutti roman me did some rewrite on the

Re: [PD] pduino rewrite

2011-09-08 Thread Ingo
OK, I got it! Downloading the files didn't work (at least not on my Windows computer) but copying the content into a bunch of text files and renaming them did. I'll take a look at it later to see if the problems with the 1st and 2nd digital input as well as my problems with inputs 10 - 13 are