<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Balint&#039;s Blog &#187; Links</title>
	<atom:link href="http://blog.spench.net/category/links/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.spench.net</link>
	<description>balint at spench fullstop-decimalpoint-dot net</description>
	<lastBuildDate>Sun, 20 Jul 2025 18:53:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Pd (Pure Data) and friends</title>
		<link>http://blog.spench.net/2007/07/27/pd-pure-data-and-friends/</link>
		<comments>http://blog.spench.net/2007/07/27/pd-pure-data-and-friends/#comments</comments>
		<pubDate>Fri, 27 Jul 2007 06:31:20 +0000</pubDate>
		<dc:creator>balint</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Others' work]]></category>

		<guid isPermaLink="false">http://blog.spench.net/2007/07/27/pd-pure-data-and-friends/</guid>
		<description><![CDATA[I recently downloaded and started playing with Pd (written by Miller S. Puckette, the same chap who started Max/MSP).
For reference, these are some good sites to learn about Pd and download loads of goodies to extend its functionality:

 The community-run Pd portal

py/pyext: Python script objects (for MSP too)
GridFlow  		A Multidimensional dataflow processing library 	 [...]]]></description>
			<content:encoded><![CDATA[<p>I recently downloaded and started playing with <a target="_blank" href="http://en.wikipedia.org/wiki/Pure_Data">Pd</a> (written by <strong>M</strong>iller <strong>S</strong>. <strong>P</strong>uckette, the <a target="_blank" href="http://crca.ucsd.edu/~msp/software.html">same chap</a> who started Max/<strong>MSP</strong>).</p>
<p>For reference, these are some good sites to learn about Pd and download loads of goodies to extend its functionality:</p>
<ul>
<li><a target="_blank" href="http://puredata.info/"> The community-run Pd portal<br />
</a></li>
<li><a target="_blank" href="http://grrrr.org/ext/py/">py/pyext: Python script objects</a> (for MSP too)</li>
<li><a target="_blank" href="http://gridflow.ca/">GridFlow</a>  		A Multidimensional dataflow processing library 	 for PureData and Ruby, designed for interactive multimedia (non-Win32 at the moment)</li>
<li><a target="_blank" href="http://at.or.at/hans/pd/">Hans&#8217; site</a></li>
<li><a target="_blank" href="http://pd.klingt.org/webring/">The Webring</a></li>
<li>The <a target="_blank" href="http://crca.ucsd.edu/~jsarlo/gripd/">Graphical Interface for Pure Data</a> allows one to create a front   end to a Pd patch</li>
</ul>
<p>I am in the process of creating a Visual Studio 2005 VC project/solution to supersede the antiquated command-line based Makefile compilation process. I hope this will draw more people to extending Pd and creating new/contributing to existing externals in a friendlier development environment!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.spench.net/2007/07/27/pd-pure-data-and-friends/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Internet Communications Engine</title>
		<link>http://blog.spench.net/2007/07/27/the-internet-communications-engine/</link>
		<comments>http://blog.spench.net/2007/07/27/the-internet-communications-engine/#comments</comments>
		<pubDate>Fri, 27 Jul 2007 06:10:58 +0000</pubDate>
		<dc:creator>balint</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://blog.spench.net/2007/07/27/the-internet-communications-engine/</guid>
		<description><![CDATA[Ice, as it&#8217;s known, appears to be a relatively new competitor in the middleware communications layer. They compare its performance to TAO and come out better in many respects. It&#8217;s always easy to come out better than DCOM since that only runs on Windows! Although they boast a nice package list, it nevertheless appears very [...]]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://www.zeroc.com/ice.html"><strong>Ice</strong></a>, as it&#8217;s known, appears to be a relatively new competitor in the middleware communications layer. They compare its <a target="_blank" href="http://www.zeroc.com/performance/">performance </a>to <a target="_blank" href="http://www.cs.wustl.edu/~schmidt/TAO.html">TAO</a> and come out better in many respects. It&#8217;s always easy to come out better than DCOM since that only runs on Windows! Although they boast a nice package list, it nevertheless appears very reminiscent of the other two in terms of interface definition through some form of IDL and conversion into stub code (they support a wide variety of languages!).</p>
<p>I have said in the past:</p>
<p><em>&#8220;Since [the interface and therefore stub code] can change often in an experimental setting, re-generating/losing changes/etc can become a major pain.<br />
Personally I&#8217;ve favoured lower level data handling since it&#8217;s more flexible. But then again, ICE, etc, throw in a hell of a lot of stuff (pre-built classes, servers, connection establishment routines, &#8230;) that can make creating a larger distributed system less of a frustrating task. I suppose if you can really nail down the interfaces and be sure that integrating their system [ICE] into one&#8217;s own, in the midst of other entities (eg: a 3D engine, &#8230;), will be at the very least possible (and hopefully a happy affair), it&#8217;s all good. Then again, there might be problems where such a &#8217;server&#8217; requires that it run/be called/cycled in such a way that is incompatible with something else&#8217;s structure/run loop, unless you hack up ICE, which may in the end require more effort.&#8221;</em></p>
<p>And is there really no way to avoid using Object Adapters?!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.spench.net/2007/07/27/the-internet-communications-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cross-computer bookmark synchronisation</title>
		<link>http://blog.spench.net/2007/07/27/cross-computer-bookmark-synchronisation/</link>
		<comments>http://blog.spench.net/2007/07/27/cross-computer-bookmark-synchronisation/#comments</comments>
		<pubDate>Fri, 27 Jul 2007 05:55:09 +0000</pubDate>
		<dc:creator>balint</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://blog.spench.net/2007/07/27/cross-computer-bookmark-synchronisation/</guid>
		<description><![CDATA[The following are three major extensions for bookmark synchronisation if you have Firefox installed across multiple computers:
 Foxmarks Bookmark Synchronizer (via their servers)

Bookmarks Synchronizer (FTP) (via your own FTP server)

Google Browser Sync (using the Google toolbar, does more than bookmarks, via your Google account)
]]></description>
			<content:encoded><![CDATA[<p>The following are three major extensions for bookmark synchronisation if you have Firefox installed across multiple computers:</p>
<p><a target="_blank" href="https://addons.mozilla.org/en-US/firefox/addon/2410"> Foxmarks Bookmark Synchronizer</a> (via their servers)<a target="_blank" href="https://addons.mozilla.org/en-US/firefox/addon/2410"><br />
</a></p>
<p><a target="_blank" href="http://extensionroom.mozdev.org/more-info/booksync">Bookmarks Synchronizer (FTP)</a> (via your own FTP server)<a target="_blank" href="http://extensionroom.mozdev.org/more-info/booksync"><br />
</a></p>
<p><a target="_blank" href="http://tools.google.com/firefox/browsersync/">Google Browser Sync</a> (using the Google toolbar, does more than bookmarks, via your Google account)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.spench.net/2007/07/27/cross-computer-bookmark-synchronisation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
