<?xml version="1.0"?>
<rss version="2.0">
  <channel>
    <title>Advogato blog for mcr</title>
    <link>http://www.advogato.org/person/mcr/</link>
    <description>Advogato blog for mcr</description>
    <language>en-us</language>
    <generator>mod_virgule</generator>
    <pubDate>Fri, 10 Feb 2012 14:35:37 GMT</pubDate>
    <item>
      <pubDate>Sun, 5 Feb 2012 17:28:22 GMT</pubDate>
      <title>LVM mirroring: the right way</title>
      <link>http://www.advogato.org/person/mcr/diary.html?start=85</link>
      <guid>http://www.sandelman.ca/mcr/blog/2012/02/05#lvm_mirroring__the_right_way</guid>
      <description>&lt;p&gt;LVM now supports mirroring inside of LVM, rather than requiring that you put
mirrors underneath LVM physical volumnes.  This provides much more
flexibility, and some volumnes can be mirrored, some not (such as swap
partitions), and different RAID algorithms can be used.  LVM uses the same
underlying mechanisms as Linux RAID system (mdadm) to do the RAID operations,
so there is no change in overall performance.&lt;/p&gt;

&lt;p&gt;Lucas and I learnt on the Hydra project that creating a mirror as
follows:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;lvconvert  -m 1 --corelog /dev/nv0/time1root&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;or at lvcreate time:
&lt;/p&gt;&lt;blockquote&gt;
&lt;p&gt;lvcreate -L 4G --name time1root -m 1 --corelog --nosync /dev/nv0&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;while it works, produces a mirror that keeps certain meta-info in memory
only.  Should the machine reboot in an uncontrolled way, the mirror will
be marked as bad and rebuilt in order to validate the meta-data.&lt;/p&gt;

&lt;p&gt;On a machine with with VMs running (nvxen-0, crtlXX) after a reboot it can
take hours for the mirror to rebuild.  The correct answer it turns out is to
use --mirrorlog mirrored, and an option to put the mirror logs anywhere.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;lvconvert  -m 1 --mirrorlog mirrored --alloc anywhere /dev/nv0/time1root
The allocation policy of "anywhere" permits the two 4M mirror logs (4M is the
minimum allocation that LVM can do) to be kept on the same disks as the data
they are mirroring.  Otherwise, if you have only two physical volumnes, you
can not put the log anywhere and the default policy (which I think is wrong)
is to insist that the mirrorlogs go on different volumnes than the data.
(I don't know why this necessary)&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Converting between is a pain: the only way I found to do this is to remove
the mirroring and then re-create it.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;ionice -c3 lvconvert  -m 0 /dev/nv0/time1root
ionice -c3 lvconvert  -m 1 --mirrorlog mirrored --alloc anywhere /dev/nv0/time1root&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I wrote a script to process the output of lvs and do this.  The ionice keeps
the process in the background, not chewing up I/O.&lt;/p&gt;

&lt;p&gt;On the fresh boot after the crash however, you may find your system is
almost completely unresponsive as it tries to resync dozens of mirrors. On
that, /dev/md0-style raid devices get it right.  How to fix: find the kcopyd
kernel processes and run ionice on them:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;ps ax | grep kcopyd | awk '{print $1}' | while read pid; do sudo ionice -i3 -p$pid; done&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;once you have done this, you can then get in long enough to run the
lvconvert.  I suggest you remove all the mirrors first (-m 0) as that stops
the resync operation from getting in the way of the resync you will have to
anyway.&lt;/p&gt;</description>
    </item>
    <item>
      <pubDate>Thu, 1 Dec 2011 17:05:26 GMT</pubDate>
      <title>Active Scaffold obscures internal errors</title>
      <link>http://www.advogato.org/person/mcr/diary.html?start=84</link>
      <guid>http://www.sandelman.ca/mcr/blog/2011/12/01#active_scaffold_obscures_internal_errors</guid>
      <description>&lt;p&gt;In a newly scaffold'ed model and controller, created with ActiveScaffold
3.0.5, on rails 3.0.9, I was getting errors from the default created rspec
code that I could not diagnose:
&lt;/p&gt;&lt;pre&gt;
  1) Admin::ConnectionsController POST create with valid params creates a new Connection
     Failure/Error: post :create, :connection =&amp;gt; valid_attributes
     NoMethodError:
       You have a nil object when you didn't expect it!
       You might have expected an instance of Array.
       The error occurred while evaluating nil.each
     # ./spec/controllers/admin/connections_controller_spec.rb:54
&lt;/pre&gt;

&lt;p&gt;Worse, these things were working just fine in RAILS_ENV=development.&lt;/p&gt;

&lt;p&gt;Well, of course, it is failing on the line where the :create is invoked.
But, where is the nil.each occuring?&lt;/p&gt;

&lt;p&gt;I ran things with:
&lt;/p&gt;&lt;pre&gt;
bundle exec rspec -d spec/controllers/admin/connections_controller_spec.rb \
   -e "POST create with valid params creates a new Connection"
&lt;/pre&gt;

&lt;p&gt;after putting "debugger" in before the test case:
&lt;/p&gt;&lt;pre&gt;
  describe "POST create" do
    describe "with valid params" do
      it "creates a new Connection" do
        # expect {
          debugger
          post :create, :connection =&amp;gt; valid_attributes
        #}.to change(Connection, :count).by(1)
      end
&lt;/pre&gt;

&lt;p&gt;(I'm still looking for a good ruby-debug mode that works like gdb-mode in
Emacs works, that can show me the code around where I am...)&lt;/p&gt;

&lt;p&gt;One winds up in the rescue in:
&lt;/p&gt;&lt;pre&gt;
/var/lib/gems/1.8/gems/actionpack-3.0.9/lib/action_controller/metal/rescue.rb
&lt;/pre&gt;

&lt;p&gt;on line 19.&lt;/p&gt;

&lt;p&gt;So, stick a breakpoint on the super there:
&lt;/p&gt;&lt;pre&gt;
break /var/lib/gems/1.8/gems/actionpack-3.0.9/lib/action_controller/metal/rescue.rb:17
&lt;/pre&gt;

&lt;p&gt;This lets you see the exception:&lt;/p&gt;

&lt;pre&gt;
(rdb:1) p exception
#&amp;lt;NoMethodError: You have a nil object when you didn't expect it!
You might have expected an instance of Array.
The error occurred while evaluating nil.each&amp;gt;
&lt;/pre&gt;

&lt;p&gt;The annoying part is that the action is invoked at
&lt;code&gt;/var/lib/gems/1.8/gems/actionpack-3.0.9/lib/action_controller/metal/instrumentation.rb:29&lt;/code&gt;&lt;/p&gt;

&lt;pre&gt;
ActiveSupport::Notifications.instrument("process_action.action_controller", raw_payload) do |payload|
&lt;/pre&gt;

&lt;p&gt;so, it evaluates code, and there are in fact one block passed to another
block, and it seems really hard (a major ruby-debug limitation), that I can
not put a breakpoint easily into the beginning of a block passed in.&lt;/p&gt;

&lt;p&gt;I had to resort to editing that file, and sticking "debugger" in there!&lt;/p&gt;

&lt;p&gt;Finally, one gets to:&lt;/p&gt;

&lt;pre&gt;
/var/lib/gems/1.8/gems/actionpack-3.0.9/lib/abstract_controller/base.rb:150
send_action(method_name, *args)
&lt;/pre&gt;

&lt;p&gt;In the debugger, the right thing to do is:&lt;/p&gt;

&lt;pre&gt;
catch NoMethodError
&lt;/pre&gt;

&lt;p&gt;This finally shows me that the failure is at:&lt;/p&gt;

&lt;pre&gt;
/corp/projects/credil/hydra/t3041/vendor/plugins/active_scaffold/lib/active_scaffold/attribute_params.rb:42
&lt;/pre&gt;

&lt;p&gt;Why?  Because attributes is nil.&lt;/p&gt;

&lt;p&gt;Why, because the generated controllers spec file says:&lt;/p&gt;

&lt;pre&gt;
    describe "with valid params" do
      it "creates a new Connection" do
        expect {
          post :create, :connection =&amp;gt; valid_attributes
        }.to change(Connection, :count).by(1)
      end
&lt;/pre&gt;

&lt;p&gt;should have been generated as:
&lt;/p&gt;&lt;pre&gt;
    describe "with valid params" do
      it "creates a new Connection" do
        expect {
          post :create, :record =&amp;gt; valid_attributes
        }.to change(Connection, :count).by(1)
      end
&lt;/pre&gt;</description>
    </item>
    <item>
      <pubDate>Mon, 8 Aug 2011 14:04:41 GMT</pubDate>
      <title>Domain Squatter Avoidance tool</title>
      <link>http://www.advogato.org/person/mcr/diary.html?start=83</link>
      <guid>http://www.sandelman.ca/mcr/blog/2011/08/08#domain_squatter_avoidance_tool</guid>
      <description>&lt;p&gt;Here is a nice use for a distributed hash table, backed by the new IETF
REPUTE work.&lt;/p&gt;

&lt;p&gt;I just typed "antipope.net" rather than antipope.org to get to Charlies
Stross' web site.  A squatter offered to sell me the domain.  Some of the
squatters do it solely for ad revenue, and I'd rather not arrange for
them to get a dime.&lt;/p&gt;

&lt;p&gt;I want a button for my browser (Chromium) which logs that name into a
reputation database indicating that these guys are squatters, and letting me
(once I know the correct name) enter the proper name.
The same plugin will consult that database if I type something wrong, and
suggest an alternative.&lt;/p&gt;</description>
    </item>
    <item>
      <pubDate>Mon, 8 Aug 2011 14:04:41 GMT</pubDate>
      <title>Eclipse and Android SDK never ran</title>
      <link>http://www.advogato.org/person/mcr/diary.html?start=82</link>
      <guid>http://www.sandelman.ca/mcr/blog/2011/07/19#eclipse_and_android_sdk_never_ran</guid>
      <description>&lt;p&gt;I've had a problem getting Eclipse, and specifically the Android SDK to run
on my Debian laptop for over a year now.  I've generally just VNC'ed to a
more powerful box and ran it there.&lt;/p&gt;

&lt;p&gt;The problem I had was that most network operations in eclipse would fail with
network unreachable.  Not a big deal for day to day things, but you need the
network to install the Android SDK kits and install Eclipse plugins.&lt;/p&gt;

&lt;p&gt;I had been trying to strace things to figure out what it was, and finally
found it:&lt;/p&gt;

&lt;pre&gt;
connect(26, {sa_family=AF_INET6, sin6_port=htons(443), inet_pton(AF_INET6, "::ffff:74.125.95.91", &amp;amp;sin6_addr), sin6_flowinfo=0, sin6_scope_id=0}, 28) = -1 ENETUNREACH (Network is unreachable)
&lt;/pre&gt;

&lt;p&gt;Huh, it's doing IPv6 connections.  &lt;em&gt;GOOD&lt;/em&gt;.
But, it hasn't set the right IOCTL on the socket to permit IPv4 mapped
connections to work, and on Debian, the bindv6only is now not set.&lt;/p&gt;

&lt;p&gt;See: &lt;a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=560056" &gt;http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=560056&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <pubDate>Tue, 19 Jul 2011 01:05:15 GMT</pubDate>
      <title>Eclipse and Android SDK never ran</title>
      <link>http://www.advogato.org/person/mcr/diary.html?start=81</link>
      <guid>http://www.sandelman.ca/mcr/blog/2011/07/18#eclipse_and_android_sdk_never_ran</guid>
      <description>&lt;p&gt;I've had a problem getting Eclipse, and specifically the Android SDK to run
on my Debian laptop for over a year now.  I've generally just VNC'ed to a
more powerful box and ran it there.&lt;/p&gt;

&lt;p&gt;The problem I had was that most network operations in eclipse would fail with
network unreachable.  Not a big deal for day to day things, but you need the
network to install the Android SDK kits and install Eclipse plugins.&lt;/p&gt;

&lt;p&gt;I had been trying to strace things to figure out what it was, and finally
found it:&lt;/p&gt;

&lt;pre&gt;
connect(26, {sa_family=AF_INET6, sin6_port=htons(443), inet_pton(AF_INET6, "::ffff:74.125.95.91", &amp;amp;sin6_addr), sin6_flowinfo=0, sin6_scope_id=0}, 28) = -1 ENETUNREACH (Network is unreachable)
&lt;/pre&gt;

&lt;p&gt;Huh, it's doing IPv6 connections.  &lt;em&gt;GOOD&lt;/em&gt;.
But, it hasn't set the right IOCTL on the socket to permit IPv4 mapped
connections to work, and on Debian, the bindv6only is now not set.&lt;/p&gt;

&lt;p&gt;See: &lt;a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=560056" &gt;http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=560056&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <pubDate>Sun, 3 Jul 2011 23:04:13 GMT</pubDate>
      <title>"Over The Top" Television</title>
      <link>http://www.advogato.org/person/mcr/diary.html?start=80</link>
      <guid>http://www.sandelman.ca/mcr/blog/2011/07/03#_over_the_top__television</guid>
      <description>&lt;p&gt;re: &lt;a href="http://crtc.gc.ca/eng/archive/2011/2011-344.htm" &gt;http://crtc.gc.ca/eng/archive/2011/2011-344.htm&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;In Broadcasting Regulatory Policy 2009-329, the Commission set out the
results of its review of broadcasting in new media. This was followed by
Broadcasting Order 2009-660, which amended, clarified and affirmed the
continued appropriateness of the New Media Exemption Order applied to
new media broadcasting undertakings. Since then, there has been an
acceleration of technological, market and consumer behaviour trends that
may influence the Canadian broadcasting system's ability to achieve
the policy objectives of the Broadcasting Act. Increasingly, programming
is being provided by entities on multiple platforms and separate from
the physical infrastructure over which it is delivered. These
"over-the-top" entities are both foreign and domestic.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;1. My name is Michael Richardson.  I am chief scientist of Sandelman Software
Works. I am writing today about your consultation about "Over-The-Top"
television, such as "netflix" and others like this. I am a pioneer of the
Internet, my use of it dates back to 1987. I am active participant in the
Internet Engineering Task Force, and I've authored a number of RFCs in the
security field.&lt;/p&gt;

&lt;p&gt;2. I find the entire question about "over-the-top" to itself be indicative
of a bias to begin with.  My question was, over top of what?  I get as much
television "over" Canada Post as I do "over-the-air".&lt;/p&gt;

&lt;p&gt;3. The Internet does not run on top of other things, more and more, other
things run on top of the Internet.   Neither incumbent cable or telephone
companies have been competent enough to supply my home office for internet.
My family that has tried them for Internet has found their service to be
lacking, and have gone to reliable Internet suppliers, ones that are not
vertically integrated and therefore do not have a bias against other things.&lt;/p&gt;

&lt;p&gt;4. Since 1995, I have not subscribed to "cable" TV.  I tried microwave
(LOOK), but when I moved it was not available, and then I went to satellite
(Star Choice, now Shaw).  Since it became Shaw, my level of service has
steadily declined, while my rates have gone up.  My family uses the satellite
TV less and less (we are now on the lowest tier subscription, primary for US
Network channels) and relies on DVD delivery from ZIP and netflix over my
bridged-DSL connection with Storm Internet.&lt;/p&gt;

&lt;p&gt;5. Netflix has reported "problems" with Canadian residential internet
connections.  I have none.  I do not use an incumbent telco with a competing
service as my supplier.  Please connect the dots.&lt;/p&gt;

&lt;p&gt;6. I do not use "HD" services at this time, as I have no TVs like that.
I consider current HD TV systems to be too inflexible and yet too complicated
for my use.  When the time comes, I will replace the "screens" in my home
with dumb computer-grade displays, connected to media boxes running open
standard systems.&lt;/p&gt;

&lt;p&gt;7. The available content on Netflix leaves a lot to be desired.  The amount
in Canada, I'm told is much less than in the US due to licensing problems.
This upsets me greatly:  I would like to see a mandatory licensing regime
that seperated who I choose to deliver the content I want, from what content
is available.&lt;/p&gt;

&lt;p&gt;8. Netflix offers a service that apparently permits some Apple and some
Microsoft users to watch television their computers.  This system uses a
proprietary copyright infringing system to display the content.   I say that
it infringes the copyright laws because it appears that this "Digital Rights
Management" system in fact denies me rights that I would have on other
systems.  This system is incompatible with non-Microsoft systems (tied
selling) such as Ubuntu Linux that runs at my house.&lt;/p&gt;

&lt;p&gt;9. We happen to have a Nintendo WII game console that has a netflix system
for it, and I'm told that the Netflix application for it may also contain
DRM. However, the output of my WII is a DRM-free analogue signal, and
therefore my rights are identical with this system as they would be with
broadcast television.&lt;/p&gt;

&lt;p&gt;10. I am preparing myself for ATSC.  I intend to put an antenna on my roof to
receive US Network Channels from Rochester NY,  and along with an ATSC tuner
on each of my three TVs, I should be able to get Ottawa broadcast channels
from Camp Fortune.  At that point I will stop subscribing to satellite
service: they have provided me with essentially no value.&lt;/p&gt;

&lt;p&gt;11. At this point, what I would like is the ability to pay for the content
that I want.  I would like to be able to vote with my wallet, rather than
have the CRTC tell me.  I expect some service (such as Netflix, or a
competitor) to offer to intermediate my transactions, reducing the cost of
the transaction, and dealing the production studios directly.&lt;/p&gt;

&lt;p&gt;12. I would like to:
&lt;/p&gt;&lt;blockquote&gt;
&lt;p&gt;a) provide a tip of approximately 0.25 for a show that I like. This
would be voluntary by me.  I would do this because I want them to
produce more like it.  I want to do this even for shows that might
have been out of "print" for a long time, for instance Threes Company,
or old episodes of Sesame Street, which continue to have significant
value.     Right now, at most, I can provide a "star" rating.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;blockquote&gt;
&lt;p&gt;b) provide a bond (a promise) that I would tip for more episodes of
a series that I like.   This removes the role of the executives of
i) the incument cable/satellite companies, ii) the specialty channels.
who it seems continue to be reluctant to take risks, and have
significantly disrupted shows with significant fan bases with very
good writing.  If this scares these companies, tough.
The CRTC has no mandate to protect companies with out-dated business
plans.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;blockquote&gt;
&lt;p&gt;c) provide a tip to a "network" such as CBCKids who might provide me with
a playlist of shows to watch and timely interactive ways to engage
kids.   Note I would be tipping for the playlist (a list of
recommendations) not for the shows themselves.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;13. This is &lt;em&gt;particularly&lt;/em&gt; important to me for children's shows, as I will
only let me child watch the TV stations that do not feature advertising.&lt;/p&gt;

&lt;p&gt;
  &lt;strong&gt;
    &lt;em&gt;End of Document&lt;/em&gt;
  &lt;/strong&gt;
&lt;/p&gt;</description>
    </item>
    <item>
      <pubDate>Mon, 9 May 2011 19:11:44 GMT</pubDate>
      <title>Problems (insecurities) in ActiveResource</title>
      <link>http://www.advogato.org/person/mcr/diary.html?start=79</link>
      <guid>http://www.sandelman.ca/mcr/blog/2011/05/09#problems__insecurities__in_activeresource</guid>
      <description>&lt;p&gt;I have an application that talks to Redmine/Chiliproject using its API with
results in JSON.  I use ActiveResource to make these calls, and it suddendly
started failing after an upgrade from redmine to chiliproject:&lt;/p&gt;

&lt;pre class="example"&gt;
test_retrieve_the_thomas_watson_project_by_id(ProjectTest):
ActiveRecord::UnknownAttributeError: unknown attribute: created_on
&lt;/pre&gt;

&lt;p&gt;The fact that I was getting an error from &lt;em&gt;ActiveRecord&lt;/em&gt; and not
&lt;em&gt;ActiveResource&lt;/em&gt; was puzzling.  My ActiveResource class was called ProjectResource.
The thing that I was retrieving was a &amp;quot;project&amp;quot;, and yes, I happened to have
a model called &amp;quot;Project&amp;quot;, which was a subclass of ActiveRecord.&lt;/p&gt;

&lt;p&gt;Looking at the JSON results using curl:&lt;/p&gt;

&lt;pre class="example"&gt;
marajade-[~/C/dracula/hourbank3] mcr 10293 %curl 'http://localhost:3100/projects/show/16?format=json&amp;amp;key=abcdAPIKEY09123456789'
{&amp;quot;project&amp;quot;:{&amp;quot;description&amp;quot;:&amp;quot;Voice and Video softphone system for Android, with SIP support.&amp;quot;,&amp;quot;updated_on&amp;quot;:&amp;quot;2010/10/08 10:10:24-0400&amp;quot;,&amp;quot;identifier&amp;quot;:&amp;quot;thomas-watson&amp;quot;,&amp;quot;homepage&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Thomas-Watson&amp;quot;,&amp;quot;created_on&amp;quot;:&amp;quot;2009/08/23 12:21:38 -0400&amp;quot;,&amp;quot;id&amp;quot;:16}}
&lt;/pre&gt;

&lt;p&gt;and also in the debugger, at&lt;/p&gt;

&lt;pre class="example"&gt;
(rdb:1) c
Breakpoint 1 at /var/lib/gems/1.8/gems/activeresource-3.0.4/lib/active_resource/base.rb:889
/var/lib/gems/1.8/gems/activeresource-3.0.4/lib/active_resource/base.rb:889
new(record).tap do |resource|
(rdb:1) p record
{&amp;quot;project&amp;quot;=&amp;gt;{&amp;quot;name&amp;quot;=&amp;gt;&amp;quot;Thomas-Watson&amp;quot;, &amp;quot;created_on&amp;quot;=&amp;gt;&amp;quot;2009/08/23 12:21:38 -0400&amp;quot;, &amp;quot;id&amp;quot;=&amp;gt;16, &amp;quot;updated_on&amp;quot;=&amp;gt;&amp;quot;2010/10/08 10:10:24 -0400&amp;quot;, &amp;quot;homepage&amp;quot;=&amp;gt;&amp;quot;&amp;quot;, &amp;quot;description&amp;quot;=&amp;gt;&amp;quot;Voice and Video softphone system for Android, with SIP support.&amp;quot;, &amp;quot;identifier&amp;quot;=&amp;gt;&amp;quot;thomas-watson&amp;quot;}}
&lt;/pre&gt;

&lt;p&gt;what happens next is that the word &amp;quot;project&amp;quot; is passed to
&lt;pre class="example"&gt;
find_or_create_resource_for(key)
&lt;/pre&gt;&lt;/p&gt;

&lt;p&gt;and this finds and returns the &amp;quot;Project&amp;quot; class which is in my model.
My model does not have a field &lt;em&gt;created_on&lt;/em&gt;, thus the error.&lt;/p&gt;

&lt;p&gt;So there three problems with this behaviour:
&lt;h2&gt;additions to the API should not break my old code, I should just ignore them.&lt;/h2&gt;&lt;/p&gt;


&lt;h2&gt;there is no guarantee that the class that was found, &amp;quot;Project&amp;quot; has any of the behaviour that I need in the thing returned from ActiveResource.&lt;/h2&gt;


&lt;h2&gt;worst, since the word &amp;quot;project&amp;quot; came from the remote system, the remote system could pick any class it wanted and invoke code on it.  It's a reverse attack by a server on a client, but it's wrong to assume that the server is fully trusted by the client.&lt;/h2&gt;

&lt;p class="first"&gt;I'm not sure what the easiest way to fix this, but it's certainly wrong, and it's been there awhile in ActiveResource.&lt;/p&gt;



</description>
    </item>
    <item>
      <pubDate>Sun, 24 Apr 2011 20:10:46 GMT</pubDate>
      <title>A novel way to do PBX extensions</title>
      <link>http://www.advogato.org/person/mcr/diary.html?start=78</link>
      <guid>http://www.sandelman.ca/mcr/blog/2011/04/24#a_novel_way_to_do_pbx_extensions</guid>
      <description>&lt;p&gt;At CREDIL we are expanding our Asterisk out to service the entire floor.
We didn't do our extensions particularly efficiently (numberwise), and I was
thinking about ways to do them.&lt;/p&gt;

&lt;p&gt;A really (math) geeky way occured to me: give employee number n the n+2'th
prime (1-first prime, 2-second prime, first employee gets extension 3).&lt;/p&gt;

&lt;p&gt;Then, if you need to have a conference call with employees number 4, 6 and 9,
then you need to dial their product.  Primes are
1,2,3,5,7,11,13,17,19,23,29,31,.. 4+2 = 6th prime is 11, 6+2=8th prime is 17,
and 9+2=11th prime is 29.  So dial 11*17*29 = 5423.&lt;/p&gt;

&lt;p&gt;Primes are still in the 4 digits for the first 1000.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://primes.utm.edu/lists/small/1000.txt" &gt;http://primes.utm.edu/lists/small/1000.txt&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;All multiples of your extension are yours to do anything you want with, and
since the multiples times powers of 2 are never conference bridges, you have
a lot of bits you can use to encode useful things.  Want to call me and avoid
ringing me?  Okay, set bit number 2.  Want to call me and never go to voice
mail? Okay, set bit number 3... etc.&lt;/p&gt;</description>
    </item>
    <item>
      <pubDate>Thu, 21 Apr 2011 15:11:53 GMT</pubDate>
      <title>Time for a new Monarch</title>
      <link>http://www.advogato.org/person/mcr/diary.html?start=77</link>
      <guid>http://www.sandelman.ca/mcr/blog/2011/04/21#time_for_a_new_monarch</guid>
      <description>&lt;p&gt;To Her Majesty Her Majesty Elizabeth the Second,&lt;/p&gt;

&lt;p&gt;by the Grace of God, of Great Britain, Ireland and the British Dominions
beyond the Seas
Queen, Defender of the Faith,
Duchess of Edinburgh,
Countess of Merioneth,
Baroness Greenwich,
Duke of Lancaster,
Lord of Mann,
Duke of Normandy,
Sovereign of the Most Honourable Order of the Garter,
Sovereign of the Most Honourable Order of the Bath,
Sovereign of the Most Ancient and Most Noble Order of the Thistle,
Sovereign of the Most Illustrious Order of Saint Patrick,
Sovereign of the Most Distinguished Order of Saint Michael and Saint George,
Sovereign of the Most Excellent Order of the British Empire,
Sovereign of the Distinguished Service Order,
Sovereign of the Imperial Service Order,
Sovereign of the Most Exalted Order of the Star of India,
Sovereign of the Most Eminent Order of the Indian Empire,
Sovereign of the Order of British India,
Sovereign of the Indian Order of Merit,
Sovereign of the Order of Burma,
Sovereign of the Royal Order of Victoria and Albert,
Sovereign of the Royal Family Order of King Edward VII,
Sovereign of the Order of Merit,
Sovereign of the Order of the Companions of Honour,
Sovereign of the Royal Victorian Order,
Sovereign of the Most Venerable Order of the Hospital of St John of Jerusalem&lt;/p&gt;

&lt;p&gt;(see
&lt;a href="http://en.wikipedia.org/wiki/List_of_titles_and_honours_of_Queen_Elizabeth_II" &gt;http://en.wikipedia.org/wiki/List_of_titles_and_honours_of_Queen_Elizabeth_II&lt;/a&gt;
)&lt;/p&gt;

&lt;p&gt;On this, Our Birthday, where I turn 40, and you are still more than twice my
age, and likely four times my wisdom, I wanted to share some thoughts I have
had over the last few years.&lt;/p&gt;

&lt;p&gt;I am your direct subject, having been born in London, as as well as your
loyal subject in the &amp;quot;British Dominions beyond the Seas&amp;quot;.  I'm actually a fan
of having a monarch, which is rather unpopular these days.  I even met Your
Highness once when you visited Fredericton, but I actually too little to know
enough to be impressed.&lt;/p&gt;

&lt;p&gt;First, congradulations on celebrating the marriage of your grandson. I know
that things will go well next week, and we look forward his visit to Ottawa
this summer.&lt;/p&gt;

&lt;p&gt;I am sure that you have given a lot of thought to succession.  I wondered if
you had considered that Prince William would very nice King.  A very nice
Young King, one who could rally the youth of today, and bring a unity that
politicians yearn for, but have seldom delivered.&lt;/p&gt;

&lt;p&gt;Does Prince Charles actually want to be King?  Perhaps after a brief
Honeymoon, you and Prince Charles might consider abdicating in favour of
Prince William.&lt;/p&gt;

&lt;p&gt;I suggest sometime in 2012, maybe Feb. 29 would auspicious, or maybe April
21, 2012.  I don't know: I am sure you will come up with something sensible.&lt;/p&gt;</description>
    </item>
    <item>
      <pubDate>Thu, 17 Mar 2011 18:14:25 GMT</pubDate>
      <title>Dreamhost SSL certificates --- insecure</title>
      <link>http://www.advogato.org/person/mcr/diary.html?start=76</link>
      <guid>http://www.sandelman.ca/mcr/blog/2011/03/17#dreamhost_ssl_certificates_---_insecure</guid>
      <description>&lt;p&gt;Dreamhost sells third-level GeoTrust SSL security certificates for $15/year.
(You have to be an existing customer).&lt;/p&gt;

&lt;p&gt;It seems however, they do not give you the chance to upload a CSR file.
Instead, you are expected to fill out the DN information online, and
then they generate a private key for you.  And they keep the private key
around in their database.&lt;/p&gt;

&lt;p&gt;It also winds up in your browser cache, and if you have kind of a &amp;quot;trusted&amp;quot;
SSL proxy between you and the Internet (like half of corporate users have),
then it's gonna be in the cache of that device too.&lt;/p&gt;

&lt;p&gt;This is a FAIL.  Not only is your private key subject to whatever insecurity
their might have, but it's total FBI Patriot Act fodder.&lt;/p&gt;

&lt;p&gt;(If there is some place to upload a CSR, we couldn't find it)&lt;/p&gt;</description>
    </item>
  </channel>
</rss>

