<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-6110892125277931713</id><updated>2012-05-11T06:02:56.144-07:00</updated><category term='posse'/><title type='text'>benk11</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://benk11.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/-/posse'/><link rel='alternate' type='text/html' href='http://benk11.blogspot.com/search/label/posse'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>bk11</name><uri>http://www.blogger.com/profile/15622820933998540088</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>12</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6110892125277931713.post-3071362877924623629</id><published>2011-08-14T11:40:00.000-07:00</published><updated>2011-08-14T11:40:19.003-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='posse'/><title type='text'>The "Fail Better" quotation</title><content type='html'>Here's the quotation I was paraphrasing last week:&lt;br /&gt;"All of old. Nothing else ever.  Ever tried.  Ever failed.  No matter.  Try again.  Fail again.  Fail better."&lt;br /&gt;http://www.goodreads.com/author/quotes/1433597.Samuel_Beckett&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6110892125277931713-3071362877924623629?l=benk11.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://benk11.blogspot.com/feeds/3071362877924623629/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://benk11.blogspot.com/2011/08/fail-better-quotation.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/3071362877924623629'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/3071362877924623629'/><link rel='alternate' type='text/html' href='http://benk11.blogspot.com/2011/08/fail-better-quotation.html' title='The &quot;Fail Better&quot; quotation'/><author><name>bk11</name><uri>http://www.blogger.com/profile/15622820933998540088</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6110892125277931713.post-8801678782213164598</id><published>2011-08-12T14:07:00.000-07:00</published><updated>2011-08-12T14:07:36.231-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='posse'/><title type='text'>Pushing POSSE: Revising the lemonade stand</title><content type='html'>&lt;br /&gt;&lt;pre&gt;------------&lt;br /&gt;Pushing POSSE: Revising the lemonade stand&lt;br /&gt;------------&lt;br /&gt;A day in the life of an Open Source developer participant, or...&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; How I set up and pushed clone changes to a public git repository I own&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; so that a committer can 'git pull' them.&lt;br /&gt;&lt;br /&gt;The transcript below shows using two clones, a local and a remote, to&lt;br /&gt;add a feature to an open source project whose repository tool is git.&lt;br /&gt;&lt;br /&gt;-- ben steele, bks@cs.rit.edu &lt;br /&gt;http://benk11.blogspot.com/ (this blog may be replaced in the future...)&lt;br /&gt;------------&lt;br /&gt;&lt;br /&gt;Having created a clone repository on both my local machine and gitorious.org,&lt;br /&gt;I developed on my local machine (from where these commands executed) and then&lt;br /&gt;pushed them up to the publicly available gitorious.org clone.&lt;br /&gt;From there, I requested that Nate (the 'owner' of the master) merge in&lt;br /&gt;my changes; gitorious.org has a button you click and then fill out the request. &lt;br /&gt;&lt;br /&gt;## the original git referenced from &lt;br /&gt;[~/foss] % git clone git://gitorious.org/lemonade-stand-olpc/lemonade-stand.git&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; % ... edits to add and test the feature&lt;br /&gt;[~/foss/lemonade-stand] % git branch -a&lt;br /&gt;* master&lt;br /&gt;&amp;nbsp; remotes/origin/HEAD -&amp;gt; origin/master&lt;br /&gt;&amp;nbsp; remotes/origin/master&lt;br /&gt;&lt;br /&gt;[~/foss/lemonade-stand] % git remote add \&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; myrepo git@gitorious.org:~benk/lemonade-stand-olpc/benks-lemonade-stand.git&lt;br /&gt;&lt;br /&gt;[~/foss/lemonade-stand] % git branch -a&lt;br /&gt;* master&lt;br /&gt;&amp;nbsp; remotes/origin/HEAD -&amp;gt; origin/master&lt;br /&gt;&amp;nbsp; remotes/origin/master&lt;br /&gt;&lt;br /&gt;[~/foss/lemonade-stand] % git push myrepo&lt;br /&gt;To git@gitorious.org:~benk/lemonade-stand-olpc/benks-lemonade-stand.git&lt;br /&gt;&amp;nbsp;! [rejected]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; master -&amp;gt; master (non-fast-forward)&lt;br /&gt;error: failed to push some refs to 'git@gitorious.org:~benk/lemonade-stand-olpc/benks-lemonade-stand.git'&lt;br /&gt;To prevent you from losing history, non-fast-forward updates were rejected&lt;br /&gt;Merge the remote changes before pushing again.&amp;nbsp; See the 'Note about&lt;br /&gt;fast-forwards' section of 'git push --help' for details.&lt;br /&gt;&lt;br /&gt;[~/foss/lemonade-stand] % git pull myrepo master&lt;br /&gt;remote: Counting objects: 4, done.&lt;br /&gt;remote: Compressing objects: 100% (3/3), done.&lt;br /&gt;remote: Total 3 (delta 1), reused 0 (delta 0)&lt;br /&gt;Unpacking objects: 100% (3/3), done.&lt;br /&gt;From gitorious.org:~benk/lemonade-stand-olpc/benks-lemonade-stand&lt;br /&gt;&amp;nbsp;* branch&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; master&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -&amp;gt; FETCH_HEAD&lt;br /&gt;Merge made by recursive.&lt;br /&gt;&lt;br /&gt;[~/foss/lemonade-stand] % ls *.sh&lt;br /&gt;gitLemonadeStand.sh&amp;nbsp;&amp;nbsp;&amp;nbsp; ## &amp;lt;&amp;lt;--- this is the myrepo change I had to pull;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; ## that was from the first commit request I made.&lt;br /&gt;&lt;br /&gt;[~/foss/lemonade-stand] % git push myrepo&lt;br /&gt;Counting objects: 13, done.&lt;br /&gt;Delta compression using up to 2 threads.&lt;br /&gt;Compressing objects: 100% (9/9), done.&lt;br /&gt;Writing objects: 100% (9/9), 2.47 KiB, done.&lt;br /&gt;Total 9 (delta 5), reused 0 (delta 0)&lt;br /&gt;=&amp;gt; Syncing Gitorious... [OK]&lt;br /&gt;To git@gitorious.org:~benk/lemonade-stand-olpc/benks-lemonade-stand.git&lt;br /&gt;&amp;nbsp;&amp;nbsp; 4877035..5320fae&amp;nbsp; master -&amp;gt; master&lt;br /&gt;&lt;br /&gt;[~/foss/lemonade-stand] % date&lt;br /&gt;Fri Aug 12 16:46:54 EDT 2011&lt;br /&gt;## a merge request was sent to the committer (nate) through gitorious.org.&lt;/pre&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6110892125277931713-8801678782213164598?l=benk11.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://benk11.blogspot.com/feeds/8801678782213164598/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://benk11.blogspot.com/2011/08/pushing-posse-revising-lemonade-stand.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/8801678782213164598'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/8801678782213164598'/><link rel='alternate' type='text/html' href='http://benk11.blogspot.com/2011/08/pushing-posse-revising-lemonade-stand.html' title='Pushing POSSE: Revising the lemonade stand'/><author><name>bk11</name><uri>http://www.blogger.com/profile/15622820933998540088</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6110892125277931713.post-660608642102336706</id><published>2011-08-12T06:28:00.000-07:00</published><updated>2011-08-12T07:04:57.147-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='posse'/><title type='text'>The Open Source Way and Teaching CS</title><content type='html'>The open source way, the infrastructures and community culture of developing software, most closely aligns with the topic of "development process" in the teaching of computer science (CS). Unfortunately, the CS curriculum does not place a great emphasis on this topic.&lt;br /&gt;On the other hand, students learn that finding, developing and following a process is valuable, and open source development could be an excellent place to show them a distributed process.&lt;br /&gt;&lt;br /&gt;My wiki page at [[http://teachingopensource.org/index.php/User:BenSteele teachingopensource.org]] has a piece on my ideas for integrating open source into the CS curriculum at the seminar level.&lt;br /&gt;&lt;br /&gt;I very much enjoyed the course, its instructors and the activities. &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6110892125277931713-660608642102336706?l=benk11.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://benk11.blogspot.com/feeds/660608642102336706/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://benk11.blogspot.com/2011/08/open-source-way-and-teaching-cs.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/660608642102336706'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/660608642102336706'/><link rel='alternate' type='text/html' href='http://benk11.blogspot.com/2011/08/open-source-way-and-teaching-cs.html' title='The Open Source Way and Teaching CS'/><author><name>bk11</name><uri>http://www.blogger.com/profile/15622820933998540088</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6110892125277931713.post-5097020315358428989</id><published>2011-08-11T10:00:00.001-07:00</published><updated>2011-08-11T10:00:52.052-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='posse'/><title type='text'>funny, absurd patent</title><content type='html'>http://www.delphion.com/details?&amp;amp;pn=US06125480__&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6110892125277931713-5097020315358428989?l=benk11.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://benk11.blogspot.com/feeds/5097020315358428989/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://benk11.blogspot.com/2011/08/funny-absurd-patent.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/5097020315358428989'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/5097020315358428989'/><link rel='alternate' type='text/html' href='http://benk11.blogspot.com/2011/08/funny-absurd-patent.html' title='funny, absurd patent'/><author><name>bk11</name><uri>http://www.blogger.com/profile/15622820933998540088</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6110892125277931713.post-3998243582003324317</id><published>2011-08-10T10:51:00.001-07:00</published><updated>2011-08-10T10:51:23.266-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='posse'/><title type='text'>what finally built firefox on Mac OS X 10.5.8</title><content type='html'>&lt;br /&gt; &lt;br /&gt; &lt;pre&gt;&lt;br /&gt;&lt;br /&gt;# what finally worked to make firefox after updating xcode to 3.1.4.&lt;br /&gt;&lt;br /&gt;&amp;nbsp; % vi ~/.mozconfig &amp;nbsp; # remove the CC, CX settings&lt;br /&gt;&lt;br /&gt;&amp;nbsp; % make -f client.mk distclean &amp;nbsp;# clear out the distribution&lt;br /&gt;&lt;br /&gt;&amp;nbsp; % make -f client.mk realclean &amp;nbsp;# clean&lt;br /&gt;&lt;br /&gt;# I'm not sure which is the correct order: distclean first or realclean;&lt;br /&gt;&lt;br /&gt;# I did both a couple times.&lt;br /&gt;&lt;br /&gt;&amp;nbsp; % make -f client.mk build&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt; &lt;br /&gt; &lt;div&gt; &lt;br /&gt;&lt;/div&gt; &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6110892125277931713-3998243582003324317?l=benk11.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://benk11.blogspot.com/feeds/3998243582003324317/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://benk11.blogspot.com/2011/08/what-finally-built-firefox-on-mac-os-x.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/3998243582003324317'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/3998243582003324317'/><link rel='alternate' type='text/html' href='http://benk11.blogspot.com/2011/08/what-finally-built-firefox-on-mac-os-x.html' title='what finally built firefox on Mac OS X 10.5.8'/><author><name>bk11</name><uri>http://www.blogger.com/profile/15622820933998540088</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6110892125277931713.post-3538252035994240766</id><published>2011-08-09T17:28:00.001-07:00</published><updated>2011-08-09T17:28:50.537-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='posse'/><title type='text'>Build round 2</title><content type='html'>last round for today.&lt;br /&gt; &lt;br /&gt; &lt;pre&gt;&lt;br /&gt;# fail better better better better.&lt;br /&gt;# make fails with compiler errors:&lt;br /&gt;&lt;br /&gt;&amp;nbsp; % make -f client.mk&amp;nbsp; build&lt;br /&gt;&amp;nbsp; ...&lt;br /&gt;&lt;br /&gt;In the directory&amp;nbsp; /Users/bks/foss/mozilla/obj-ff-dbg/js/src&lt;br /&gt;The following command failed to execute properly:&lt;br /&gt;g++ -arch i386 -o jsbool.o -c -I./../../dist/system_wrappers_js -include /Users/bks/foss/mozilla/js/src/config/gcc_hidden.h -DOSTYPE="Darwin9.8.0" -DOSARCH=Darwin -DEXPORT_JS_API -DIMPL_MFBT -DJS_HAS_CTYPES -DDLL_PREFIX="lib" -DDLL_SUFFIX=".dylib" -Ictypes/libffi/include -I. -I/Users/bks/foss/mozilla/js/src -I. -I./../../dist/include -I./../../dist/include/nsprpub -I/Users/bks/foss/mozilla/obj-ff-dbg/dist/include/nspr -I/Users/bks/foss/mozilla/js/src -I/Users/bks/foss/mozilla/js/src/assembler -I/Users/bks/foss/mozilla/js/src/yarr -fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith -Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof -Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common -pthread -pipe -DDEBUG -D_DEBUG -DTRACING -g -DUSE_SYSTEM_MALLOC=1 -DENABLE_ASSEMBLER=1 -DENABLE_JIT=1 -DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsbool.pp /Users/bks/foss/mozilla/js/src/jsbool.cpp&lt;br /&gt;make[5]: *** [jsbool.o] Error 1&lt;br /&gt;/Users/bks/foss/mozilla/js/src/mfbt/InlineMap.h: In member function ‘js::InlineMap&lt;k, inlineelems="" v,=""&gt;::Entry js::InlineMap&lt;k, inlineelems="" v,=""&gt;::Range::front() [with K = JSAtom*, V = js::DefnOrHeader, long unsigned int InlineElems = 24ul]’:&lt;br /&gt;/Users/bks/foss/mozilla/js/src/frontend/ParseMaps.h:403:&amp;nbsp;&amp;nbsp; instantiated from here&lt;br /&gt;/Users/bks/foss/mozilla/js/src/mfbt/InlineMap.h:127: error: ‘js::InlineMap&lt;k, inlineelems="" v,=""&gt;::Entry::Entry(const K&amp;amp;, const V&amp;amp;) [with K = JSAtom*, V = js::DefnOrHeader, long unsigned int InlineElems = 24ul]’ is private&lt;br /&gt;/Users/bks/foss/mozilla/js/src/mfbt/InlineMap.h:390: error: within this context&lt;br /&gt;/Users/bks/foss/mozilla/js/src/frontend/ParseMaps.h:403:&amp;nbsp;&amp;nbsp; instantiated from here&lt;br /&gt;/Users/bks/foss/mozilla/js/src/mfbt/InlineMap.h:127: error: ‘js::InlineMap&lt;k, inlineelems="" v,=""&gt;::Entry::Entry(const K&amp;amp;, const V&amp;amp;) [with K = JSAtom*, V = js::DefnOrHeader, long unsigned int InlineElems = 24ul]’ is private&lt;br /&gt;/Users/bks/foss/mozilla/js/src/mfbt/InlineMap.h:391: error: within this context&lt;br /&gt;&lt;br /&gt;In the directory&amp;nbsp; /Users/bks/foss/mozilla/obj-ff-dbg/js/src&lt;br /&gt;The following command failed to execute properly:&lt;br /&gt;g++ -arch i386 -o jsapi.o -c -I./../../dist/system_wrappers_js -include /Users/bks/foss/mozilla/js/src/config/gcc_hidden.h -DOSTYPE="Darwin9.8.0" -DOSARCH=Darwin -DEXPORT_JS_API -DIMPL_MFBT -DJS_HAS_CTYPES -DDLL_PREFIX="lib" -DDLL_SUFFIX=".dylib" -Ictypes/libffi/include -I. -I/Users/bks/foss/mozilla/js/src -I. -I./../../dist/include -I./../../dist/include/nsprpub -I/Users/bks/foss/mozilla/obj-ff-dbg/dist/include/nspr -I/Users/bks/foss/mozilla/js/src -I/Users/bks/foss/mozilla/js/src/assembler -I/Users/bks/foss/mozilla/js/src/yarr -fPIC -fno-rtti -fno-exceptions -Wall -Wpointer-arith -Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wcast-align -Wno-invalid-offsetof -Wno-variadic-macros -fno-strict-aliasing -fpascal-strings -fno-common -pthread -pipe -DDEBUG -D_DEBUG -DTRACING -g -DUSE_SYSTEM_MALLOC=1 -DENABLE_ASSEMBLER=1 -DENABLE_JIT=1 -DMOZILLA_CLIENT -include ./js-confdefs.h -MD -MF .deps/jsapi.pp /Users/bks/foss/mozilla/js/src/jsapi.cpp&lt;br /&gt;make[5]: *** [jsapi.o] Error 1&lt;br /&gt;make[4]: *** [libs_tier_js] Error 2&lt;br /&gt;make[3]: *** [tier_js] Error 2&lt;br /&gt;make[2]: *** [default] Error 2&lt;br /&gt;make[1]: *** [realbuild] Error 2&lt;br /&gt;make: *** [build] Error 2&lt;br /&gt;&lt;br /&gt;# it turns out that fink did not install g++ with gcc. :-&amp;lt;&lt;br /&gt;&lt;/k,&gt;&lt;/k,&gt;&lt;/k,&gt;&lt;/k,&gt;&lt;/pre&gt; &lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6110892125277931713-3538252035994240766?l=benk11.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://benk11.blogspot.com/feeds/3538252035994240766/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://benk11.blogspot.com/2011/08/build-round-2.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/3538252035994240766'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/3538252035994240766'/><link rel='alternate' type='text/html' href='http://benk11.blogspot.com/2011/08/build-round-2.html' title='Build round 2'/><author><name>bk11</name><uri>http://www.blogger.com/profile/15622820933998540088</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6110892125277931713.post-241240505559621392</id><published>2011-08-09T16:58:00.000-07:00</published><updated>2011-08-09T16:58:39.304-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='posse'/><title type='text'>Mac Build Firefox</title><content type='html'>Info on zigs and zags trying to build firefox on an older mac.&lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;pre&gt;&lt;br /&gt;# now build mozilla (firefox)&lt;br /&gt;&amp;nbsp; % make -f client.mk&amp;nbsp; build&lt;br /&gt;make -f /Users/bks/foss/mozilla/client.mk realbuild&lt;br /&gt;Adding client.mk options from /Users/bks/.mozconfig:&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MOZ_OBJDIR=$(TOPSRCDIR)/obj-ff-dbg&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MOZ_MAKE_FLAGS=-s -j4&lt;br /&gt;Generating /Users/bks/foss/mozilla/configure using autoconf&lt;br /&gt;cd /Users/bks/foss/mozilla; /opt/local/bin/autoconf213&lt;br /&gt;Generating /Users/bks/foss/mozilla/js/src/configure using autoconf&lt;br /&gt;cd /Users/bks/foss/mozilla/js/src; /opt/local/bin/autoconf213&lt;br /&gt;cd /Users/bks/foss/mozilla/obj-ff-dbg&lt;br /&gt;/Users/bks/foss/mozilla/configure&lt;br /&gt;Adding configure options from /Users/bks/.mozconfig:&lt;br /&gt;&amp;nbsp; --enable-application=browser&lt;br /&gt;&amp;nbsp; --enable-debug&lt;br /&gt;&amp;nbsp; --disable-optimize&lt;br /&gt;creating cache ./config.cache&lt;br /&gt;checking host system type... i386-apple-darwin9.8.0&lt;br /&gt;checking target system type... i386-apple-darwin9.8.0&lt;br /&gt;checking build system type... i386-apple-darwin9.8.0&lt;br /&gt;checking for mawk... no&lt;br /&gt;checking for gawk... gawk&lt;br /&gt;checking for perl5... /opt/local/bin/perl5&lt;br /&gt;checking for gcc... gcc-4.2&lt;br /&gt;checking whether the C compiler (gcc-4.2&amp;nbsp; ) works... no&lt;br /&gt;configure: error: installation or configuration problem: C compiler cannot create executables.&lt;br /&gt;*** Fix above errors and then restart with&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "make -f client.mk build"&lt;br /&gt;make[2]: *** [configure] Error 1&lt;br /&gt;make[1]: *** [/Users/bks/foss/mozilla/obj-ff-dbg/Makefile] Error 2&lt;br /&gt;make: *** [build] Error 2&lt;br /&gt;&amp;nbsp; %&lt;br /&gt;# My mac has gcc 4.0.1 not gcc 4.2&lt;br /&gt;# ...Time to get gcc42 from fink commander gui (or macports).&lt;br /&gt;#&lt;br /&gt;&amp;nbsp; % rehash&lt;br /&gt;&amp;nbsp; % which gcc-4&lt;br /&gt;/sw/bin/gcc-4&lt;br /&gt;&amp;nbsp; % gcc-4 --version&lt;br /&gt;gcc-4 (GCC) 4.2.2&lt;br /&gt;Copyright (C) 2007 Free Software Foundation, Inc.&lt;br /&gt;This is free software; see the source for copying conditions.&amp;nbsp; There is NO&lt;br /&gt;warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.&lt;br /&gt;&lt;br /&gt;&amp;nbsp; % make -f client.mk&amp;nbsp; build&lt;br /&gt;&lt;br /&gt;# failed again. could not find/run gcc.&lt;br /&gt;#&lt;br /&gt;# edit .mozconfig to add these lines at the end (these are indented):&lt;br /&gt;#&lt;br /&gt;#&amp;nbsp;&amp;nbsp;&amp;nbsp; CC="gcc -arch i386"&lt;br /&gt;#&amp;nbsp;&amp;nbsp;&amp;nbsp; CXX="g++ -arch i386"&lt;br /&gt;&lt;br /&gt;&amp;nbsp; % make -f client.mk&amp;nbsp; build&lt;br /&gt;&lt;br /&gt;# got past the earlier failure only to get this after spewing many checks:&lt;br /&gt;checking if app-specific confvars.sh exists... /Users/bks/foss/mozilla/browser/confvars.sh&lt;br /&gt;checking __attribute__ ((aligned ())) support... trying 64&lt;br /&gt;64&lt;br /&gt;configure: error: yasm is a required build tool for this architecture when webm is enabled. You may either install yasm or --disable-webm (which disables the WebM video format). See https://developer.mozilla.org/en/YASM for more details.&lt;br /&gt;*** Fix above errors and then restart with&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "make -f client.mk build"&lt;br /&gt;make[2]: *** [configure] Error 1&lt;br /&gt;make[1]: *** [/Users/bks/foss/mozilla/obj-ff-dbg/Makefile] Error 2&lt;br /&gt;make: *** [build] Error 2&lt;br /&gt;&lt;br /&gt;# failed again. this time it failed better;-&amp;gt;&lt;br /&gt;# it seems that yasm is missing (yup. I skipped that setup step...)&lt;br /&gt;# &lt;br /&gt;&lt;br /&gt;&amp;nbsp; % make -f client.mk&amp;nbsp; build&lt;br /&gt;&lt;br /&gt;# failed again, even better. libidl2 missing.&lt;br /&gt;&lt;br /&gt;checking for libIDL - version &amp;gt;= 0.6.3... no&lt;br /&gt;*** The libIDL-config script installed by libIDL could not be found&lt;br /&gt;*** If libIDL was installed in PREFIX, make sure PREFIX/bin is in&lt;br /&gt;*** your path, or set the LIBIDL_CONFIG environment variable to the&lt;br /&gt;*** full path to libIDL-config.&lt;br /&gt;checking for libIDL-2.0 &amp;gt;= 0.8.0... Package libIDL-2.0 was not found in the pkg-config search path. Perhaps you should add the directory containing `libIDL-2.0.pc' to the PKG_CONFIG_PATH environment variable No package 'libIDL-2.0' found&lt;br /&gt;configure: error: Library requirements (libIDL-2.0 &amp;gt;= 0.8.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.&lt;br /&gt;*** Fix above errors and then restart with&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "make -f client.mk build"&lt;br /&gt;make[2]: *** [configure] Error 1&lt;br /&gt;checking for libIDL - version &amp;gt;= 0.6.3... no&lt;br /&gt;*** The libIDL-config script installed by libIDL could not be found&lt;br /&gt;*** If libIDL was installed in PREFIX, make sure PREFIX/bin is in&lt;br /&gt;*** your path, or set the LIBIDL_CONFIG environment variable to the&lt;br /&gt;*** full path to libIDL-config.&lt;br /&gt;checking for libIDL-2.0 &amp;gt;= 0.8.0... Package libIDL-2.0 was not found in the pkg-config search path. Perhaps you should add the directory containing `libIDL-2.0.pc' to the PKG_CONFIG_PATH environment variable No package 'libIDL-2.0' found&lt;br /&gt;configure: error: Library requirements (libIDL-2.0 &amp;gt;= 0.8.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.&lt;br /&gt;*** Fix above errors and then restart with&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "make -f client.mk build"&lt;br /&gt;make[2]: *** [configure] Error 1&lt;br /&gt;&lt;br /&gt;# failed better and better. must get libidl now...&lt;br /&gt;&lt;br /&gt;&amp;nbsp; % sudo port install libidl&lt;br /&gt;&lt;br /&gt;---&amp;gt;&amp;nbsp; Extracting zlib&lt;br /&gt;Error: On Mac OS X 10.5, zlib 1.2.5 requires Xcode 3.1 or later but you have Xcode 3.0.&lt;br /&gt;Error: See http://guide.macports.org/chunked/installing.xcode.html for download links.&lt;br /&gt;Error: Target org.macports.extract returned: incompatible Xcode version&lt;br /&gt;Error: Failed to install zlib&lt;br /&gt;Log for zlib is at: /opt/local/var/macports/logs/_opt_local_var_macports_sources_rsync.macports.org_release_ports_archivers_zlib/zlib/main.log&lt;br /&gt;Error: The following dependencies were not installed: glib2 zlib pkgconfig&lt;br /&gt;Error: Status 1 encountered during processing.&lt;br /&gt;To report a bug, see &lt;http: #project.tickets="" guide.macports.org=""&gt;&lt;br /&gt;&lt;br /&gt;# failed to get libidl; Xcode is out of date! need Xcode 3.1 or later...&lt;br /&gt;# we are definitely productively lost...&lt;br /&gt;&lt;br /&gt;# go to apple developer site (i have an account already; phew) to download...&lt;br /&gt;# Xcode 4 is out, but I want version 3.1 or later; 3.2.6 is (last?) version 3.&lt;br /&gt;# Xcode 3.2.6 is bundled with iOS SDK 4.3; bundle is 4GB and takes about&lt;br /&gt;# 8 minutes to download and 2 minutes to install on a 4GHz, 4GB RAM machine...&lt;br /&gt;##&lt;br /&gt;# oops. xcode 3.2.6 is for Mac OS 10.6; that may be an issue...&lt;br /&gt;##&lt;br /&gt;# sigh. there is no download for xcode 3.1 anywhere on the apple site.&lt;br /&gt;# that means I cannot build firefox on this old machine.&lt;br /&gt;##&lt;br /&gt;# @#*$!&lt;br /&gt;# I just spent 40 minutes poring through the apple developer site looking ...&lt;br /&gt;##&lt;br /&gt;##&lt;br /&gt;# While I found this site for an xcode 3.1 download, how can I trust it???&lt;br /&gt;# http://www.freemacware.com/apple-xcode-313&lt;br /&gt;#&lt;br /&gt;## yeah! mceachen to the rescue. &lt;br /&gt;# http://meandmark.com/blog/2009/10/downloading-older-versions-of-xcode/&lt;br /&gt;# site shows tells how and where to find the download.&lt;br /&gt;# this download only took 3 minutes...&lt;br /&gt;# 6 other folks had the same trouble I had. thank goodness for web search!&lt;br /&gt;##&lt;br /&gt;# now hopefully, I will be able to make firefox.&lt;br /&gt;# stay tuned for a later posting...&lt;br /&gt;&lt;/http:&gt;&lt;/pre&gt; &lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6110892125277931713-241240505559621392?l=benk11.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://benk11.blogspot.com/feeds/241240505559621392/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://benk11.blogspot.com/2011/08/mac-build-firefox.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/241240505559621392'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/241240505559621392'/><link rel='alternate' type='text/html' href='http://benk11.blogspot.com/2011/08/mac-build-firefox.html' title='Mac Build Firefox'/><author><name>bk11</name><uri>http://www.blogger.com/profile/15622820933998540088</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6110892125277931713.post-5934512322317213531</id><published>2011-08-09T15:07:00.000-07:00</published><updated>2011-08-09T15:16:16.222-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='posse'/><title type='text'>MacOS X 10.5.8 Firefox setup and download</title><content type='html'>These notes describe actual work done while setting up things for a Firefox build on a MacBook Pro MacOS X 10.5.8 with Xcode 3.0 installed. Refer to &lt;a href="https://developer.mozilla.org/En/Developer_Guide/Build_Instructions/Mac_OS_X_Prerequisites"&gt;developer.mozilla.org Mac Prerequisites&lt;/a&gt; for the basic steps.&lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;pre&gt;# a massaged transcript of my travails to get set up and build Firefox.&lt;br /&gt;# Thanks to Chris Tyler for the help on the macports mercurial diagnosis.&lt;br /&gt;# --bksteele&lt;br /&gt;# command line prompt is % (she sells c shells by the C shore...)&lt;br /&gt;#&lt;br /&gt;# update macports&lt;br /&gt;&amp;nbsp; % sudo port selfupdate&amp;nbsp;&lt;/pre&gt; &lt;pre&gt;  % sudo port sync&lt;br /&gt;# I skipped the command: sudo port install libidl autoconf213 yasm&lt;br /&gt;# because it looked like I had libidl autoconf and yasm.&lt;br /&gt;# I used spotlight to check for libidl autoconf and yasm.&lt;br /&gt;#&lt;br /&gt;# update get mercurial (hg) from macports&lt;br /&gt;&amp;nbsp; % sudo port install mercurial&lt;br /&gt;&amp;nbsp; % hg version&lt;br /&gt;&amp;nbsp; % rehash&lt;br /&gt;&amp;nbsp; % which hg&lt;br /&gt;# get mercurial (hg) from macports appeared to succeed, but failed. no hg.&lt;br /&gt;# investigation to find error note in log from installing mercurial (hg).&lt;br /&gt;&amp;nbsp; % cd /opt/local/var/macports/logs/&lt;br /&gt;&amp;nbsp; % cd *mercurial*&lt;br /&gt;&amp;nbsp; % cd mercurial/&lt;br /&gt;&amp;nbsp; % less main.log&lt;br /&gt;# a macports note said to upgrade macports, but commands below failed.&lt;br /&gt;&amp;nbsp; % port upgrade outdated&lt;br /&gt;&amp;nbsp; % sudo port upgrade outdated&lt;br /&gt;&amp;nbsp; % sudo port upgrade&lt;br /&gt;&amp;nbsp; % cd /opt/local&lt;br /&gt;&amp;nbsp; % cd var/macports&lt;br /&gt;&amp;nbsp; % sudo port upgrade outdated&lt;br /&gt;&amp;nbsp; % sudo port upgrade&lt;br /&gt;# workaround: install binary version of mercurial (hg) from &lt;br /&gt;# http://mercurial.selenic.com/ which provides a zip of an installable package.&lt;br /&gt;&amp;nbsp; % rehash&lt;br /&gt;&amp;nbsp; % hg version&lt;br /&gt;# it works. now on to the mozilla setup.&lt;br /&gt;&amp;nbsp; % cd&lt;br /&gt;&amp;nbsp; % vi .mozconfig&lt;br /&gt;&amp;nbsp; % hg clone http://hg.mozilla.org/mozilla-central/ mozilla&lt;br /&gt;&amp;nbsp; % cd mozilla/&lt;br /&gt;&amp;nbsp; % make -n -f client.mk build&lt;br /&gt;&amp;nbsp; % grep autoconf *mk&lt;br /&gt;# oops! it turns out the system does NOT have autoconf213 after all.&lt;br /&gt;# back to macports to fetch the old autoconf213.&lt;br /&gt;# which command from client.mk for autoconf is this:&lt;br /&gt;&amp;nbsp; % which autoconf-2.13 autoconf2.13 autoconf213&lt;br /&gt;&amp;nbsp; % sudo port install autoconf213&lt;br /&gt;&amp;nbsp; % rehash&lt;br /&gt;&amp;nbsp; % which autoconf-2.13 autoconf2.13 autoconf213&lt;br /&gt;# now the dry run with make -n (the -n is for no execute)&lt;br /&gt;&amp;nbsp; % cd mozilla/&lt;br /&gt;&amp;nbsp; % make -n -f client.mk build&lt;br /&gt;# looks good. time for letting the real thing build overnight. I'm hungry.&lt;/pre&gt; &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6110892125277931713-5934512322317213531?l=benk11.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://benk11.blogspot.com/feeds/5934512322317213531/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://benk11.blogspot.com/2011/08/macos-x-1058-firefox-setup-and-download.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/5934512322317213531'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/5934512322317213531'/><link rel='alternate' type='text/html' href='http://benk11.blogspot.com/2011/08/macos-x-1058-firefox-setup-and-download.html' title='MacOS X 10.5.8 Firefox setup and download'/><author><name>bk11</name><uri>http://www.blogger.com/profile/15622820933998540088</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6110892125277931713.post-8394035385489425836</id><published>2011-08-09T14:28:00.000-07:00</published><updated>2011-08-09T14:35:37.143-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='posse'/><title type='text'>Eclipse CommArch</title><content type='html'>See the &lt;a href="http://teachingopensource.org/index.php/Eclipse_Project_Architecture%20Eclipse"&gt;http://teachingopensource.org/index.php/Eclipse_Project_Architecture Eclipse&lt;/a&gt; material that &lt;a href="http://people.rit.edu/%7Edxpeee/index.html"&gt;Dorin Patru&lt;/a&gt; and I have put together so far.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6110892125277931713-8394035385489425836?l=benk11.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://benk11.blogspot.com/feeds/8394035385489425836/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://benk11.blogspot.com/2011/08/eclipse-commarch.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/8394035385489425836'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/8394035385489425836'/><link rel='alternate' type='text/html' href='http://benk11.blogspot.com/2011/08/eclipse-commarch.html' title='Eclipse CommArch'/><author><name>bk11</name><uri>http://www.blogger.com/profile/15622820933998540088</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6110892125277931713.post-4173180539270947054</id><published>2011-08-09T07:44:00.000-07:00</published><updated>2011-08-09T07:57:16.416-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='posse'/><title type='text'>Teaching Open Source Notes</title><content type='html'>My Notes on "Teaching the Practice of Open Source" Topic &lt;br /&gt;&lt;ol&gt;&lt;li&gt; Communication: &lt;br /&gt;instructor should be a 'good connector'. ideally, instructor is active in the community so that they can best help student to find the resources (docs/people) as needed.&lt;/li&gt; &lt;li&gt; Project Selection: &lt;br /&gt;students get a list of projects to choose from within a community. instructor must&lt;br /&gt;go to OS communities first; don't let students pick a project. ask the community for things they would need/want. community must be big enough to accept/handle the student population. for example, 2-3 students work on fedora-QA, 3 students work on fedora-Packaging, 4 on fedora-Bugs, etc.&lt;br /&gt;a "bug" is the project; to add a feature, issue a bug and then work on it.&lt;br /&gt;Project Description Example:&lt;br /&gt;Title: Add X&lt;br /&gt;Description: Feature X would be really great addition to the program.&lt;br /&gt;Skills: C++, OpenGL&lt;br /&gt;Links: yadaLink...&lt;/li&gt; &lt;li&gt; Learning How to Build &lt;/li&gt; &lt;li&gt; Tools and Methodologies &lt;/li&gt; &lt;li&gt; Meeting the Community:&lt;br /&gt;as the students study and review the project list, they will meet the community.&lt;br /&gt;they must learn and adapt to the accepted modes of communication used by the community as they study to learn what project to choose.&lt;br /&gt;&lt;/li&gt; &lt;li&gt; Releases:&lt;br /&gt;student does 3 releases (20% each) and uses blogs in addition to the bug.&lt;br /&gt;For example, 0.1 to 0.3 would be the release number of the development work on the bug.&lt;br /&gt;if student hit the wall (blocked) for any reason, they must document why and what they did about it.&lt;br /&gt;&lt;/li&gt; &lt;li&gt; Contribution to Other Projects:&lt;br /&gt;measure the student on their contribution to other aspects of the community; examples include a shared library improvement, test fixtures, or documentation.&lt;/li&gt; &lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6110892125277931713-4173180539270947054?l=benk11.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://benk11.blogspot.com/feeds/4173180539270947054/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://benk11.blogspot.com/2011/08/teaching-open-source-notes.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/4173180539270947054'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/4173180539270947054'/><link rel='alternate' type='text/html' href='http://benk11.blogspot.com/2011/08/teaching-open-source-notes.html' title='Teaching Open Source Notes'/><author><name>bk11</name><uri>http://www.blogger.com/profile/15622820933998540088</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6110892125277931713.post-1340307382858948681</id><published>2011-08-08T13:44:00.000-07:00</published><updated>2011-08-08T13:56:35.847-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='posse'/><title type='text'>The Posse Planet</title><content type='html'>There's even more infrastructure to negotiate than I expected... &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6110892125277931713-1340307382858948681?l=benk11.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://benk11.blogspot.com/feeds/1340307382858948681/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://benk11.blogspot.com/2011/08/posse-planet.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/1340307382858948681'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/1340307382858948681'/><link rel='alternate' type='text/html' href='http://benk11.blogspot.com/2011/08/posse-planet.html' title='The Posse Planet'/><author><name>bk11</name><uri>http://www.blogger.com/profile/15622820933998540088</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6110892125277931713.post-2476407461315394851</id><published>2011-08-08T13:06:00.000-07:00</published><updated>2011-08-08T13:58:39.127-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='posse'/><title type='text'>IRC hangups and Lost confirmation mails</title><content type='html'>My afternoon was quite frustrating.&lt;br /&gt;While the browser said I had a wiki page and was logged in, the email was lost in the ether. &lt;br /&gt;&lt;br /&gt;In addition, the IRC hung up. I could type all day but it would never post to any channel.&lt;br /&gt;&lt;br /&gt;The solution: redo everything and use a different email address.&lt;br /&gt;In retrospect, I believe that the CS dept. email system's tough spam filters were the cause.&lt;br /&gt;&lt;br /&gt;Update: The email finally arrived around 4pm, but I had already given up using that address.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6110892125277931713-2476407461315394851?l=benk11.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://benk11.blogspot.com/feeds/2476407461315394851/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://benk11.blogspot.com/2011/08/irc-hangups-and-lost-confirmation-mails.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/2476407461315394851'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6110892125277931713/posts/default/2476407461315394851'/><link rel='alternate' type='text/html' href='http://benk11.blogspot.com/2011/08/irc-hangups-and-lost-confirmation-mails.html' title='IRC hangups and Lost confirmation mails'/><author><name>bk11</name><uri>http://www.blogger.com/profile/15622820933998540088</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
