<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Counter for mac os x]]></title><description><![CDATA[<p>I need a quick solution of a counter that only counts to 1 and then resets itself. Cause of some strange reason, pd extended verision does not have [counter] which I used for my PC..</p>
<p>So if someone has a tip I'm greatful!</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/936/counter-for-mac-os-x</link><generator>RSS for Node</generator><lastBuildDate>Sun, 19 Apr 2026 18:56:55 GMT</lastBuildDate><atom:link href="http://forum.pdpatchrepo.info/topic/936.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 31 May 2007 15:35:04 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Counter for mac os x on Thu, 31 May 2007 15:35:04 GMT]]></title><description><![CDATA[<p>I need a quick solution of a counter that only counts to 1 and then resets itself. Cause of some strange reason, pd extended verision does not have [counter] which I used for my PC..</p>
<p>So if someone has a tip I'm greatful!</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/936/counter-for-mac-os-x</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/936/counter-for-mac-os-x</guid><dc:creator><![CDATA[asaw]]></dc:creator><pubDate>Thu, 31 May 2007 15:35:04 GMT</pubDate></item><item><title><![CDATA[Reply to Counter for mac os x on Fri, 01 Jun 2007 09:11:48 GMT]]></title><description><![CDATA[<p>not sure what you mean by counting to one, but I've attached the timed counter patch from the control examples, in which a metro object first resets the value to zero then outputs bangs at the specified interval until reaching 1 (the first bang!!). It is then stopped by the select 1 object.</p>
<p>Brett</p>
<p><a href="http://www.pdpatchrepo.info/hurleur/06.counter2one.pd" rel="nofollow">http://www.pdpatchrepo.info/hurleur/06.counter2one.pd</a></p>
]]></description><link>http://forum.pdpatchrepo.info/topic/936/counter-for-mac-os-x/2</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/936/counter-for-mac-os-x/2</guid><dc:creator><![CDATA[brettb]]></dc:creator><pubDate>Fri, 01 Jun 2007 09:11:48 GMT</pubDate></item><item><title><![CDATA[Reply to Counter for mac os x on Fri, 01 Jun 2007 13:06:25 GMT]]></title><description><![CDATA[<p>first time i'v ever heard someone ask for help counting to one <img class="emoji emoji-extended" src="http://forum.pdpatchrepo.info/plugins/nodebb-plugin-emoji-extended/images/wink.png" title=";)" alt=";)" /></p>
]]></description><link>http://forum.pdpatchrepo.info/topic/936/counter-for-mac-os-x/3</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/936/counter-for-mac-os-x/3</guid><dc:creator><![CDATA[hardoff]]></dc:creator><pubDate>Fri, 01 Jun 2007 13:06:25 GMT</pubDate></item><item><title><![CDATA[Reply to Counter for mac os x on Fri, 01 Jun 2007 13:07:31 GMT]]></title><description><![CDATA[<p>[mod 2] on a counter that keeps going will&amp;#12288;output 0, 1, 0, 1, 0, 1...etc</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/936/counter-for-mac-os-x/4</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/936/counter-for-mac-os-x/4</guid><dc:creator><![CDATA[hardoff]]></dc:creator><pubDate>Fri, 01 Jun 2007 13:07:31 GMT</pubDate></item><item><title><![CDATA[Reply to Counter for mac os x on Fri, 01 Jun 2007 16:39:39 GMT]]></title><description><![CDATA[<p>I know y'all are against gui objects, but the one I can't seem to do w/out is [toggle]<br />
In this situation; each bang toggles [toggle] ......0 1 0 1 0 1......</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/936/counter-for-mac-os-x/5</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/936/counter-for-mac-os-x/5</guid><dc:creator><![CDATA[nestor]]></dc:creator><pubDate>Fri, 01 Jun 2007 16:39:39 GMT</pubDate></item><item><title><![CDATA[Reply to Counter for mac os x on Sat, 02 Jun 2007 10:12:40 GMT]]></title><description><![CDATA[<p>(f ) x (+ 1)<br />
|<br />
(mod 2)</p>
<p>will do the same thing, and use heaps less cpu</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/936/counter-for-mac-os-x/6</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/936/counter-for-mac-os-x/6</guid><dc:creator><![CDATA[hardoff]]></dc:creator><pubDate>Sat, 02 Jun 2007 10:12:40 GMT</pubDate></item><item><title><![CDATA[Reply to Counter for mac os x on Sun, 03 Jun 2007 16:39:39 GMT]]></title><description><![CDATA[<p>Just to be nitpicky; [int]x[+ 1] is easier on the memory than [float]x[+ 1]. Not by much, but if you run a million iterations of these things in a patch, it adds up. my counter patches always look like this:</p>
<p>[bang]<br />
|<br />
[int]x[+ 1]<br />
|<br />
[sel 1]<br />
|<br />
[0)</p>
<p>and then route the 0 message back up to the int's 2nd inlet. But the [mod] thing is much more elegant. I'm gonna use that in the future.</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/936/counter-for-mac-os-x/7</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/936/counter-for-mac-os-x/7</guid><dc:creator><![CDATA[sunji]]></dc:creator><pubDate>Sun, 03 Jun 2007 16:39:39 GMT</pubDate></item></channel></rss>