Re: [PD-dev] autotools for pd-devel

2009-03-27 Thread Mike McGonagle
Hans, Didn't I read last week that Iohannes was planning to convert everything over to Scons? I mean, it all seems very confusing, with the transition from CVS over to SVN, with almost none of the old info removed from the website, and having to hunt for what is there for SVN, it is hard to know

Re: [PD-dev] autotools for pd-devel

2009-03-27 Thread Mike McGonagle
On Fri, Mar 27, 2009 at 6:07 PM, Hans-Christoph Steiner h...@eds.org wrote: This is where we discuss it.  As for outdated docs, its just a matter of someone updating them.  Which ones in particular are you tlaking about? http://puredata.info/dev/ From this page, you will notice that the first

Re: [PD-dev] Externals with interdependancies

2009-03-24 Thread Mike McGonagle
On Mon, Mar 23, 2009 at 7:13 PM, Mathieu Bouchard ma...@artengine.ca wrote: Check whether you might be printing any uninitialised atoms... Bingo, Mathieu. I found that I had an atom that I was using as a constant value, and I forgot to put in the code to initialize its value. Thank. Mike --

[PD-dev] Externals with interdependancies

2009-03-23 Thread Mike McGonagle
Hello all, I am currently trying to rework the SQL stuff I have, to break them down into their component objects (ie, each external in its own file, as opposed to a library). Well, I am able to get the code such that everything compiles and produces the *.pd_darwin files that I need. But, when I

Re: [PD-dev] Externals with interdependancies

2009-03-23 Thread Mike McGonagle
off by linking everything into one binary.  The grand plan is to support loading a lib file as part of the libdir format, which would work for you. .hc On Mar 23, 2009, at 4:42 PM, Mike McGonagle wrote: Hello all, I am currently trying to rework the SQL stuff I have, to break them down

Re: [PD-dev] Externals with interdependancies

2009-03-23 Thread Mike McGonagle
don't yet have a good way to load the shared code before loading individual files.  I hope to work that out soon. .hc On Mar 23, 2009, at 6:27 PM, Mike McGonagle wrote: Thanks, Hans, I guess I misunderstood you when you said that the externals should be in a separate file, I took it to mean

Re: [PD-dev] Externals with interdependancies

2009-03-23 Thread Mike McGonagle
:08 PM, Mathieu Bouchard ma...@artengine.ca wrote: On Mon, 23 Mar 2009, Mike McGonagle wrote: Any suggestions about the consistency check issue? The only reference I see to them in the Pd source is in the 's_print.c' file, but that is just the function that gets called to report the error

Re: [PD-dev] How to construct a dynamic length list in PD external?

2009-03-22 Thread Mike McGonagle
Why not just create a binbuf object, append all the atoms to it, and then extract the length and atoms vector... t_atom a; t_binbuf b = binbuf_new(); while(more_data) { SETSYMBOL(a, camera_data); binbuf_add(b, 1, a); } outlet_anything(x - x_obj.ob_outlet, s_list, binbuf_getnatom(b),

Re: [PD-dev] Reinstatement to Source Forge Project

2009-03-20 Thread Mike McGonagle
Is there any word regarding the reinstatement? Thank you, Mike On Wed, Mar 18, 2009 at 7:41 PM, Mike McGonagle mjm...@gmail.com wrote: Hello all, I was looking at getting the SQL stuff that I have been working on into the Source Forge Project, so that I could get it into the nightly

[PD-dev] Reinstatement to Source Forge Project

2009-03-18 Thread Mike McGonagle
Hello all, I was looking at getting the SQL stuff that I have been working on into the Source Forge Project, so that I could get it into the nightly builds, and in the process of doing that, I found that I am no longer on the developers list... I was hoping that the powers that be might

[PD-dev] SQLite3DBv0.03

2009-03-01 Thread Mike McGonagle
Hello all, I would like to announce the release of SQLite3db. This release represents a complete rewrite of the externals. It has been rolled into a single external library containing the externals [sqlite3db], [sqlite3query], [sqlite3rowid], and [sqlite3blob]. This release includes several

Re: [PD-dev] how to access literal $args in constructor?

2008-09-30 Thread Mike McGonagle
, Sep 30, 2008 at 2:00 AM, IOhannes m zmoelnig [EMAIL PROTECTED]wrote: Mike McGonagle wrote: If you are already putting the literal argument in the creation args, then why not just make another creation argument that shadows the dollar argument? i am not sure whether i fully understand what

Re: [PD-dev] how to access literal $args in constructor?

2008-09-29 Thread Mike McGonagle
If you are already putting the literal argument in the creation args, then why not just make another creation argument that shadows the dollar argument? Mike On Mon, Sep 29, 2008 at 10:56 AM, IOhannes m zmoelnig [EMAIL PROTECTED]wrote: hi we are having a hard time with the following

[PD-dev] Using Arrow Keys in Vanilla and Extended Pd

2008-07-07 Thread Mike McGonagle
Hello all, Over the weekend, I was building a program that I wanted to use the Arrow keys to control direction, and one thing that I found was that anytime I hit one of those keys, the front most window is marked as dirty (as if I made a modification in the Edit Mode). Is there some reason for

[PD-dev] 'cnv' colors

2008-07-07 Thread Mike McGonagle
Hello all, I have a program that I have written that creates lots of small 'cnv' objects, where I am changing the colors of the backgrounds and the text in the object. I was noticing that when I create these cnv objects, I have to use a different 'color number' to get the same color when I change

Re: [PD-dev] 'cnv' colors

2008-07-07 Thread Mike McGonagle
again. Mike On Mon, Jul 7, 2008 at 1:17 PM, Frank Barknecht [EMAIL PROTECTED] wrote: Hallo, Claude Heiland-Allen hat gesagt: // Claude Heiland-Allen wrote: Mike McGonagle wrote: Hello all, I have a program that I have written that creates lots of small 'cnv' objects, where I am

Re: [PD-dev] Using Arrow Keys in Vanilla and Extended Pd

2008-07-07 Thread Mike McGonagle
, Mike McGonagle hat gesagt: // Mike McGonagle wrote: Over the weekend, I was building a program that I wanted to use the Arrow keys to control direction, and one thing that I found was that anytime I hit one of those keys, the front most window is marked as dirty (as if I made

Re: [PD-dev] Messaging between Pd and GUI

2008-06-09 Thread Mike McGonagle
Sam, I don't know if you have seen this, but have you heard about Paradiddle? It has been around for sometime, now, and sounds like what you are describing. http://lindsay.at/work/pd/paradiddle.html While it is Mac Specific, it could tell you what you need to know about connecting your gui up to

[PD-dev] SVN access...

2008-02-18 Thread Mike McGonagle
Hello all, I was wondering if there is anything posted for accessing the SVN archives? I looked on the PureData.info site, and it still only has the CVS stuff. Thanks, Mike -- Peace may sound simple—one beautiful word— but it requires everything we have, every quality, every strength, every

Re: [PD-dev] SVN access...

2008-02-18 Thread Mike McGonagle
, just checking things out. Thanks, Mike On 2/18/08, David Plans Casal [EMAIL PROTECTED] wrote: On 18 Feb 2008, at 21:45, Mike McGonagle wrote: I was wondering if there is anything posted for accessing the SVN archives? I looked on the PureData.info site, and it still only has the CVS

[PD-dev] Prelude and Introduction

2007-12-12 Thread Mike McGonagle
Hello all, I just wanted to give a quick introduction of myself. My name is Michael McGonagle, and my childhood nickname is Mogo, a name that has stuck with me as there are just too many damned Mike's in the world. My mother was a nurse and played the piano, her favorite thing to play was Clair

Re: [PD-dev] [-SPAM-] [PD] SQL wrappers

2007-12-11 Thread Mike McGonagle
On 12/11/07, Jamie Bullock [EMAIL PROTECTED] wrote: I've been thinking along these lines also. In this pd-sql rethink, there are two things that come out for me: i) We should support the 'query as an argument to the object with placeholders' syntax, AND the 'query passed to an inlet as a

Re: [PD-dev] Troubleshooting suggestions

2007-12-05 Thread Mike McGonagle
On Dec 5, 2007 3:34 AM, IOhannes m zmoelnig [EMAIL PROTECTED] wrote: so pd is crashing when it tries to draw an object (most likely: a certain object) since it is unlikely that a normal object (no gui, no gop) will cause the crash (though not impossible; i only assume so, because if it was

Re: [PD-dev] SQLite for PD v0.0

2007-12-04 Thread Mike McGonagle
On Nov 30, 2007 11:39 PM, Hans-Christoph Steiner [EMAIL PROTECTED] wrote: If you use a selector for every message into this object, then you can get rid of the sqlite prefix, and it would be very natural for people used to Pd. For example: [open $1( [close( [export $1( - this could be

[PD-dev] Troubleshooting suggestions

2007-12-04 Thread Mike McGonagle
Hello all, I have a patch that has started to cause a crash in PD. In trying to figure out exactly what is happening, I reworked the patch, and now each of the smaller chunks of code are in their own subpatch. So, now the patch doesn't ALWAYS crash. Now the only time it crashes is when I open the

Re: [PD-dev] SQLite for PD v0.0

2007-11-30 Thread Mike McGonagle
On Nov 30, 2007 2:13 PM, Hans-Christoph Steiner [EMAIL PROTECTED] wrote: Works for me after I compiled it as a universal binary. I attached the makefile to compile it as universal. I have one question about the interface, the [sqlite -open( style messages seem strange. Since you are

Re: [PD-dev] SQLite for PD v0.0

2007-11-29 Thread Mike McGonagle
PM, Mike McGonagle wrote: Hello all, Ok, I got some preliminary things to test. As far as I can tell, everything works using the message input method. There are still some issues to resolve for the 'text' widget entry method. As it still contains the Amagamated version of SQLite, the archive

[PD-dev] SQLite for PD v0.0

2007-11-27 Thread Mike McGonagle
Hello all, Ok, I got some preliminary things to test. As far as I can tell, everything works using the message input method. There are still some issues to resolve for the 'text' widget entry method. As it still contains the Amagamated version of SQLite, the archive that I have is about 800K. I

Re: [PD-dev] SQLite for PD v0.0

2007-11-27 Thread Mike McGonagle
Opps, forgot to mention that you will get a lot of warnings when you compile the SQLite3 stuff, I have not had an issue with it yet. Mike On Nov 27, 2007 12:14 PM, Mike McGonagle [EMAIL PROTECTED] wrote: Hello all, Ok, I got some preliminary things to test. As far as I can tell, everything

[PD-dev] Fwd: To Administrators

2007-11-24 Thread Mike McGonagle
-- Forwarded message -- From: Mike McGonagle [EMAIL PROTECTED] Date: Nov 24, 2007 1:28 PM Subject: Re: [PD-dev] To Administrators To: Peter Plessas [EMAIL PROTECTED] Hum, it has been almost a week now, should I be asking the administrators directly for access? Is there anyone

Re: [PD-dev] No float method in external causes crash was: Re: Connecting up an SQL Database to PD

2007-11-14 Thread Mike McGonagle
doesn't load the libraries. It is really strange because I use the exact same binary on my laptop, and it is fine... Mike On 11/14/07, Jamie Bullock [EMAIL PROTECTED] wrote: On Wed, 2007-11-14 at 13:13 -0600, Mike McGonagle wrote: What I meant was it crashes when you have no float method defined

Re: [PD-dev] Fwd: Fwd: Fwd: Connecting up an SQL Database to PD

2007-11-13 Thread Mike McGonagle
Also, Jamie, if you are sending back an entire result set as a list, what would be the point of having the second outlet indicating the end of the data? It would bang pretty much at the same time as the output list would come out. Mike On 11/13/07, Mike McGonagle [EMAIL PROTECTED] wrote: On 11

Re: [PD-dev] Fwd: Fwd: Fwd: Connecting up an SQL Database to PD

2007-11-13 Thread Mike McGonagle
Ok, this is what I was envisioning... I think I misunderstood Frank's comments on this... On 11/13/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, Also, Jamie, if you are sending back an entire result set as a list, what would be the point of having the second outlet indicating the

Re: [PD-dev] Fwd: Fwd: Fwd: Fwd: Connecting up an SQL Database to PD

2007-11-13 Thread Mike McGonagle
And yet, I know that it is NOT a valid column name, I am not certain if it is part of the 1992 SQL spec (which seems to be the bible), but I know that it will just return the number as a CONSTANT in both MySQL and SQLite. I will have to check on if this is in the spec. Also, did you catch the

[PD-dev] Fwd: Fwd: Fwd: Fwd: Fwd: Connecting up an SQL Database to PD

2007-11-13 Thread Mike McGonagle
-- Forwarded message -- From: Mike McGonagle [EMAIL PROTECTED] Date: Nov 13, 2007 3:29 PM Subject: Re: [PD-dev] Fwd: Fwd: Fwd: Fwd: Connecting up an SQL Database to PD To: [EMAIL PROTECTED] [EMAIL PROTECTED] Jamie, I was just noticing another thread where Hans asked about

[PD-dev] Fwd: [PD] who is using [entry]?

2007-11-13 Thread Mike McGonagle
-- Forwarded message -- From: Mike McGonagle [EMAIL PROTECTED] Date: Nov 13, 2007 5:49 PM Subject: Re: [PD] who is using [entry]? To: Hans-Christoph Steiner [EMAIL PROTECTED] On 11/13/07, Hans-Christoph Steiner [EMAIL PROTECTED] wrote: On Nov 13, 2007, at 4:31 PM, Mike

Re: [PD-dev] Fwd: Fwd: Fwd: Connecting up an SQL Database to PD

2007-11-13 Thread Mike McGonagle
On 11/13/07, Frank Barknecht [EMAIL PROTECTED] wrote: Hallo, Mike McGonagle hat gesagt: // Mike McGonagle wrote: Working with smaller result sets is pretty standard with SQL databases. If some query is returning billions of data, the query is wrong. A very common idiom with SQL programming

[PD-dev] Fwd: Fwd: Connecting up an SQL Database to PD

2007-11-12 Thread Mike McGonagle
forgot to send to the list. On 11/12/07, Mike McGonagle [EMAIL PROTECTED] wrote: On 11/12/07, Jamie Bullock [EMAIL PROTECTED] wrote: Hi Mike, Hola, Jamie. I had a look at your external, and I have a few comments. Firstly I think having a sqlite external for Pd is a nice idea because

[PD-dev] Fwd: PD Strings

2007-11-12 Thread Mike McGonagle
once again, forgot to send to list... -- Forwarded message -- From: Mike McGonagle [EMAIL PROTECTED] Date: Nov 12, 2007 1:11 PM Subject: Re: [PD-dev] PD Strings To: Martin Peach [EMAIL PROTECTED] Thanks, Martin, I will have to look at the other thread that is discussing this. I

[PD-dev] Fwd: Fwd: Fwd: Connecting up an SQL Database to PD

2007-11-12 Thread Mike McGonagle
God, why do I do this? -- Forwarded message -- From: Mike McGonagle [EMAIL PROTECTED] Date: Nov 12, 2007 1:35 PM Subject: Re: [PD-dev] Fwd: Fwd: Connecting up an SQL Database to PD To: Andy Farnell [EMAIL PROTECTED] On 11/13/07, Andy Farnell [EMAIL PROTECTED] wrote: On Mon, 12

[PD-dev] Fwd: Fwd: Fwd: Connecting up an SQL Database to PD

2007-11-12 Thread Mike McGonagle
One more time... please. -- Forwarded message -- From: Mike McGonagle [EMAIL PROTECTED] Date: Nov 12, 2007 1:38 PM Subject: Re: [PD-dev] Fwd: Fwd: Connecting up an SQL Database to PD To: Andy Farnell [EMAIL PROTECTED] I was just thinking, should the result sets be returned

[PD-dev] Is this possible - List input to inlets other than the leftmost...

2007-11-12 Thread Mike McGonagle
From reading some of the docs, I got the impression that it is NOT possible to have any subsequent inlets allow for list input? Is this correct? Do you know why this is? I have some ideas that I would like to implement with lists on the second and third inlets... Thanks, Mike -- Help the

Re: [PD-dev] Fwd: Fwd: Fwd: Connecting up an SQL Database to PD

2007-11-12 Thread Mike McGonagle
On 11/12/07, Frank Barknecht [EMAIL PROTECTED] wrote: Hallo, Mike McGonagle hat gesagt: // Mike McGonagle wrote: I was just thinking, should the result sets be returned as TAGGED data? Meaning, should the name of the column precede the data in the returned PD list? While I can see

Re: [PD-dev] Fwd: Fwd: Fwd: Connecting up an SQL Database to PD

2007-11-12 Thread Mike McGonagle
On 11/12/07, Jamie Bullock [EMAIL PROTECTED] wrote: I'm sure you've already looked at it, but there's a (maybe) useful README and help file here: http://pure-data.cvs.sourceforge.net/pure-data/externals/postlude/psql/ Jamie, I was looking at your source code for psql, and was wondering if it

[PD-dev] Fwd: Allocating memory in externals

2007-11-08 Thread Mike McGonagle
forgot to send to the list... -- Forwarded message -- From: Mike McGonagle [EMAIL PROTECTED] Date: Nov 8, 2007 7:00 PM Subject: Re: [PD-dev] Allocating memory in externals To: Charles Henry [EMAIL PROTECTED] I guess my real issue is that I am using an embedded piece of software

[PD-dev] Connecting up an SQL Database to PD

2007-11-05 Thread Mike McGonagle
Hello all, It has been several months since I first inquired about this idea, and it seems there are some out there who think this would be a good idea. So, in the interest of figuring out just how this could work with PD, I would like to start a discussion about what sort of interface objects

Re: [PD-dev] Project Outline for SQL External

2007-06-15 Thread Mike McGonagle
OOPS, I sent this a little prematurely... Please ignore until I can actually finish what I was trying say... Thanks... Mike McGonagle On 6/15/07, Mike McGonagle [EMAIL PROTECTED] wrote: Hello all, Over the past month and a half, I have been dealing with MySQL and working with SQL. I

Re: [PD-dev] tcl 8.5 help browser bug and a fix

2007-02-21 Thread Mike McGonagle
Well, I know that on the Mac, there is the trouble of having to deal with Applications being somewhat like folders, but when you are using an Application Open dialog, you can't get into the Application AS a folder. This prevents the opening of patches from withing PD that are contained in the