<?xml version="1.0" encoding="UTF-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:base="http://everything2.com/">
    <title>rp's New Writeups</title>
    <link rel="alternate" type="text/html" href="http://everything2.com/index.pl?node=Everything%20User%20Search&amp;usersearch=rp" />
    <link rel="self" type="application/atom+xml" href="?node=New%20Writeups%20Atom%20Feed&amp;type=ticker&amp;foruser=rp" />
    <id>http://everything2.com/?node=New%20Writeups%20Atom%20Feed&amp;foruser=rp</id>
    <updated>2006-09-25T21:30:37Z</updated>
<entry><title>Turning into traffic (place)</title><link rel="alternate" type="text/html" href="http://everything2.com:80/user/rp/writeups/Turning+into+traffic"/><id>http://everything2.com:80/user/rp/writeups/Turning+into+traffic</id><author><name>rp</name><uri>http://everything2.com:80/user/rp</uri></author><published>2006-09-25T21:30:37Z</published><updated>2006-09-25T21:30:37Z</updated>
<content type="html">&lt;a href=&quot;/title/SharQ&quot;&gt;SharQ&lt;/a&gt; may even be underestimating the danger of this situation: in my experience, not only the drunk or numb cause accidents like this.

&lt;p&gt;
I have been in three serious driving accidents, all three in &lt;a href=&quot;/title/the+Netherlands&quot;&gt;the Netherlands&lt;/a&gt;, where driving is on the right; two of them happened in this situation.  In both, the sun was high in the sky, with hardly a cloud in sight; perfect visibility.

&lt;p&gt;
In the first accident, my mother was driving on a very busy provincial road.  We needed to turn left, so she put out the indicator, slowed down, came to a stop at the crossing, and waited for oncoming traffic to pass.  Three or four cars had already queued up behind her when she turned.  Then she saw a car overtaking the queue behind her at great speed; a crash was unavoidable, but she managed to steer back just enough to make the cars collide side by side, minimizing the impact.  Both cars darted off the road, but quickly came to a standstill, and everybody got out unharmed, after which the other driver started venting&amp;hellip;</content>
</entry><entry><title>preprocessor (thing)</title><link rel="alternate" type="text/html" href="http://everything2.com:80/user/rp/writeups/preprocessor"/><id>http://everything2.com:80/user/rp/writeups/preprocessor</id><author><name>rp</name><uri>http://everything2.com:80/user/rp</uri></author><published>2006-05-19T19:09:16Z</published><updated>2006-05-19T19:09:16Z</updated>
<content type="html">A preprocessor is a tool to process something in preparation for the execution of another, given processor.

&lt;p&gt;
In the context of software systems, preprocessing is a very common technique.  It is used to extend the power or range of applications of an existing data processing system - without having to modify that system.

&lt;p&gt;
This is a big deal.  Software is abstract and complex stuff.  Usually, it is easy enough to describe what individual functions or features are supposed to do; the challenge is to have a system in which it is still clear how exactly all of its those functions and features work &lt;em&gt;in arbitrary combination&lt;/em&gt;.  The number of combinations is of course much bigger than the number of features (&lt;a href=&quot;/title/combinatorial+explosion&quot;&gt;combinatorial explosion&lt;/a&gt;), which doesn't hurt if they are independent, but often there are all kinds of subtle dependencies between them.  This can make it extremely hard to understand how the system works in full detail.

&lt;p&gt;
Not ending up with a mess is important to the users, but also&amp;hellip;</content>
</entry><entry><title>process algebra (idea)</title><link rel="alternate" type="text/html" href="http://everything2.com:80/user/rp/writeups/process+algebra"/><id>http://everything2.com:80/user/rp/writeups/process+algebra</id><author><name>rp</name><uri>http://everything2.com:80/user/rp</uri></author><published>2006-05-12T21:44:32Z</published><updated>2006-05-12T21:44:32Z</updated>
<content type="html">A process algebra is an &lt;a href=&quot;/title/algebra&quot;&gt;algebra&lt;/a&gt; for describing &lt;a href=&quot;/title/process&quot;&gt;process&lt;/a&gt;es, or more accurately, &lt;a href=&quot;/title/discrete+systems&quot;&gt;discrete systems&lt;/a&gt;.

Being an algebra, it consists of a set of operations, and equivalence rules on constructions that can be built from those operations.  A simple example: let's
have the following three operations:

&lt;pre&gt;&lt;tt&gt;
  a | b
  a ; b
  a&lt;sup&gt;*&lt;/sup&gt;
&lt;/tt&gt;&lt;/pre&gt;

We can build expressions with them, e.g.
&lt;tt&gt;(a | b)&lt;sup&gt;*&lt;/sup&gt;&lt;/tt&gt; or
&lt;tt&gt;b&lt;sup&gt;*&lt;/sup&gt;(a ; b&lt;sup&gt;*&lt;/sup&gt;)&lt;sup&gt;*&lt;/sup&gt;&lt;/tt&gt;.

&lt;p&gt;
Now let's interpret these expressions as follows.

&lt;ul&gt;
&lt;li&gt;
  &lt;tt&gt;|&lt;/tt&gt; means 'or'
&lt;/li&gt;
&lt;li&gt;
  &lt;tt&gt;;&lt;/tt&gt; means 'and then'
&lt;/li&gt;
&lt;li&gt;
  &lt;tt&gt;&lt;sup&gt;*&lt;/sup&gt;&lt;/tt&gt; means 'zero or more times'
&lt;/li&gt;
&lt;/ul&gt;

So we're interpreting the operations as ways in which a bigger process can be
composed of smaller processes, and ultimately, elementary steps.

&lt;p&gt;
For instance, &lt;tt&gt;(a | b)&lt;sup&gt;*&lt;/sup&gt;&lt;/tt&gt; means:
zero or more times either &lt;tt&gt;a&lt;/tt&gt; or &lt;tt&gt;b&lt;/tt&gt;.
Or, if you wish, an arbitrary sequence of &lt;tt&gt;a&lt;/tt&gt;&amp;hellip;</content>
</entry><entry><title>MyBase and other VB.NET concepts designed to make you feel like a five year old (idea)</title><link rel="alternate" type="text/html" href="http://everything2.com:80/user/rp/writeups/MyBase+and+other+VB.NET+concepts+designed+to+make+you+feel+like+a+five+year+old"/><id>http://everything2.com:80/user/rp/writeups/MyBase+and+other+VB.NET+concepts+designed+to+make+you+feel+like+a+five+year+old</id><author><name>rp</name><uri>http://everything2.com:80/user/rp</uri></author><published>2005-04-20T18:55:47Z</published><updated>2005-04-20T18:55:47Z</updated>
<content type="html">&lt;small&gt;
While I agree with pretty much everything &lt;a href=&quot;/title/prole&quot;&gt;prole&lt;/a&gt; writes,
my overall assessment is very different: I love &lt;a href=&quot;/title/VB.NET&quot;&gt;VB.NET&lt;/a&gt;.
This is mostly because most of what in the writeup looks like
a criticism of VB.NET is neither a bad thing nor specific to VB.NET.
Some examples.
&lt;/small&gt;

&lt;dl&gt;
&lt;dt&gt;
MyBase designed to make you feel like a five-year old?
&lt;dd&gt;
As &lt;a href=&quot;/title/prole&quot;&gt;prole&lt;/a&gt; clearly states, the concepts of &lt;a href=&quot;/title/MyBase&quot;&gt;MyBase&lt;/a&gt; and Me are not
specific to VB.NET; they are common to most object-oriented languages,
including Java, and their common predecessor, &lt;a href=&quot;/title/Smalltalk&quot;&gt;Smalltalk&lt;/a&gt; (1975), which
knew them as &lt;a href=&quot;/title/self&quot;&gt;self&lt;/a&gt; and &lt;a href=&quot;/title/super&quot;&gt;super&lt;/a&gt;.  Now Smalltalk was in fact designed to
be a programming system that five-year olds can use, so MyBase is indeed
a concept in VB.NET designed for use by a five-year old.
The unstated assumption, however, is that this would be a
reason to shun &lt;a href=&quot;/title/VB.NET&quot;&gt;VB.NET&lt;/a&gt; and prefer &lt;a href=&quot;/title/Java&quot;&gt;Java&lt;/a&gt; instead.
Java has the exact same concept.  It just uses a different name
for it.
&lt;dt&gt;
How &lt;a href=&quot;/title/Microsoft&quot;&gt;Microsoft&lt;/a&gt; convinced so many people that
&lt;em&gt;Yo&lt;/em&gt;&lt;/dt&gt;&lt;/dd&gt;&lt;/dt&gt;&lt;/dl&gt;&amp;hellip;</content>
</entry><entry><title>Hawk (person)</title><link rel="alternate" type="text/html" href="http://everything2.com:80/user/rp/writeups/Hawk"/><id>http://everything2.com:80/user/rp/writeups/Hawk</id><author><name>rp</name><uri>http://everything2.com:80/user/rp</uri></author><published>2004-12-15T08:48:55Z</published><updated>2004-12-15T08:48:55Z</updated>
<content type="html">Just a clarification of Webster's entry here.
&lt;ul&gt;
&lt;li&gt;
The British &lt;b&gt;hawk&lt;/b&gt; (Latin name &lt;em&gt;accipiter&lt;/em&gt;) is very falcon-like in appearance and behaviour; with pointy wings and a long, narrow tail, it catches its prey in flight, using its speed.
&lt;li&gt;
The British &lt;b&gt;buzzard&lt;/b&gt; (Latin name &lt;em&gt;buteo&lt;/em&gt;) is a small eagle in appearance and behaviour; with large, broad wings and a short, wide, rounded tail, it slowly flaps or hovers, and circles at great height in search for small animals on the ground.
&lt;/li&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;
In America, on the other hand, &quot;hawk&quot; is a general word for a &lt;a href=&quot;/title/bird+of+prey&quot;&gt;bird of prey&lt;/a&gt;, but usually refers to &lt;em&gt;buteo&lt;/em&gt; birds, of which there are many species there.
</content>
</entry><entry><title>Mille regretz (thing)</title><link rel="alternate" type="text/html" href="http://everything2.com:80/user/rp/writeups/Mille+regretz"/><id>http://everything2.com:80/user/rp/writeups/Mille+regretz</id><author><name>rp</name><uri>http://everything2.com:80/user/rp</uri></author><published>2004-07-16T23:16:12Z</published><updated>2004-07-16T23:16:12Z</updated>
<content type="html">&lt;pre&gt;
  Mille regretz de vous abandonner
  Et d'eslonger vostre face amoureuse 
  J'ay si grand dueil et paine douloureuse
  Qu'on me verra brief mes jours deffiner
&lt;/pre&gt;
or in &lt;a href=&quot;/title/English&quot;&gt;English&lt;/a&gt;:
&lt;pre&gt;
  A thousand sorrows from leaving you
  and no longer seeing your loving face
  I have such great sorrow and aching pain
  that my days will soon be seen to end
&lt;/pre&gt;

&lt;p&gt;The &lt;a href=&quot;/title/four-part&quot;&gt;four-part&lt;/a&gt; &lt;a href=&quot;/title/setting&quot;&gt;setting&lt;/a&gt; of this love song written by &lt;a href=&quot;/title/Josquin+des+Prez&quot;&gt;Josquin des Prez&lt;/a&gt;,
published by &lt;a href=&quot;/title/Pierre+Atteignant&quot;&gt;Pierre Atteignant&lt;/a&gt; in &lt;a href=&quot;/title/Paris&quot;&gt;Paris&lt;/a&gt; in &lt;a href=&quot;/title/1533&quot;&gt;1533&lt;/a&gt;, was among the most
popular and revered songs of the century, and still is.
In those days they didn't work with &lt;a href=&quot;/title/record+sales&quot;&gt;record sales&lt;/a&gt;, but the song appeared everywhere: just to mention one example, &lt;a href=&quot;/title/Cristobal+de+Morales&quot;&gt;Cristobal de Morales&lt;/a&gt;, no mean composer in his own right, and certainly working in a different country,
wrote a holy &lt;a href=&quot;/title/mass&quot;&gt;mass&lt;/a&gt; around this theme.
&lt;p&gt;
This song is said to have been much loved by of the emperor &lt;a href=&quot;/title/Charles+V&quot;&gt;Charles V&lt;/a&gt;, probably the most powerful man of his age, and no doubt did a lot to elevate&amp;hellip;</content>
</entry></feed>
