<?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>Norwinter Studios &#187; Guide</title>
	<atom:link href="http://www.norwinter.com/tag/guide/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.norwinter.com</link>
	<description>Home of Bouncy Hunters and Konkret.</description>
	<lastBuildDate>Sat, 17 Jul 2010 20:38:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Signing code (Authenticode) in OS X with a Thawte Certificate</title>
		<link>http://www.norwinter.com/2009/07/16/signing-code-authenticode-in-os-x-with-a-thawte-certificate/</link>
		<comments>http://www.norwinter.com/2009/07/16/signing-code-authenticode-in-os-x-with-a-thawte-certificate/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 19:46:39 +0000</pubDate>
		<dc:creator>siker</dc:creator>
				<category><![CDATA[Site]]></category>
		<category><![CDATA[authenticode]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[mono]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.norwinter.com/?p=129</guid>
		<description><![CDATA[Just some quick notes on signing Windows executables using a Mac. First, get Mono: Download mono I used version 2.4. Next, take a look at Mozilla&#8217;s code signing guide and work around the problems you run into using Zillabit Notes on Mono Authenticode. It boils down to something like this: Open your Thawte issued .SPC [...]]]></description>
			<content:encoded><![CDATA[<p>Just some quick notes on signing Windows executables using a Mac. First, get Mono:</p>
<p><a href="http://www.go-mono.com/mono-downloads/download.html">Download mono</a></p>
<p>I used version 2.4. Next, take a look at <a href="https://developer.mozilla.org/En/Signing_an_executable_with_Authenticode">Mozilla&#8217;s code signing guide</a> and work around the problems you run into using <a href="http://projects.zillabit.com/authenticode.html">Zillabit Notes on Mono Authenticode</a>.</p>
<p>It boils down to something like this:</p>
<ul>
<li>Open your Thawte issued .SPC file in Windows using certmgr (just double click it).</li>
<li>Expand the certificate view in the left pane and click on Certificates.</li>
<li>The components of your SPC file will be displayed, normally consisting of your company certificate and then some signer root certificates.</li>
<li>For each of the certificates, go to <code>Action / All Tasks / Export...</code> and export the certificate as a DER .cer file.</li>
<li>Bring the exported files to your Mac and join them with <code>cert2spc</code>. E.g.:<br />
<code>cert2spc cert1.cer cert2.cer cert3.cer my_fixed_certificate.spc</code></li>
<li>Use the newly generated SPC file to sign your code:<br />
<code>signcode -spc my_fixed_certificate.spc -v my_private_certificate_key.pvk -a sha1 -$ commercial -n MyProductName -i http://www.mycompany.com -t http://timestamp.verisign.com/scripts/timstamp.dll MyProgram.exe</code></li>
<li>Verify by trying to run the executable in Windows.</li>
</ul>
<p>A final note: don&#8217;t try to verify the signing using mono&#8217;s chktrust command. At least for me it always tells me the exe doesn&#8217;t have a signature.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.norwinter.com/2009/07/16/signing-code-authenticode-in-os-x-with-a-thawte-certificate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing symfony on OS X 10.4.</title>
		<link>http://www.norwinter.com/2006/12/13/installing-symfony-on-os-x-104/</link>
		<comments>http://www.norwinter.com/2006/12/13/installing-symfony-on-os-x-104/#comments</comments>
		<pubDate>Wed, 13 Dec 2006 20:32:26 +0000</pubDate>
		<dc:creator>siker</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Guide]]></category>

		<guid isPermaLink="false">http://www.norwinter.com/?p=66</guid>
		<description><![CDATA[Just a couple of quick notes. Use &#8216;entropy-php&#8217; to install the php module to run with Apache on your mac. Rename /usr/bin/php to /usr/bin/php4 (This is important.) Rename /usr/bin/pear to /usr/bin/pear13 (Even more important.) Create a symbolic link so that the php5 pear can be used: ln /usr/local/php5/bin/pear /usr/bin/pear (Most important.) If you don&#8217;t follow [...]]]></description>
			<content:encoded><![CDATA[<p>Just a couple of quick notes.</p>
<ul>
<li>Use &#8216;entropy-php&#8217; to install the php module to run with Apache on your mac.</li>
<li>Rename /usr/bin/php to /usr/bin/php4 (This is important.)</li>
<li>Rename /usr/bin/pear to /usr/bin/pear13 (Even more important.)</li>
<li>Create a symbolic link so that the php5 pear can be used: ln /usr/local/php5/bin/pear /usr/bin/pear (Most important.)</li>
</ul>
<p>If you don&#8217;t follow the last two steps you will get all kinds of funny errors with pear. Pear upgrade will refuse to upgrade you to pear 1.4 because it claims it&#8217;s missing pear 1.3 (which is funny because if pear isn&#8217;t installed, how can pear say anything? And why do you need an old version of pear to get a new version of pear?).</p>
<p>The most likely message you&#8217;ll see if you don&#8217;t do the last two steps is:</p>
<p>&#8220;Command &#8216;pear.symfony-project.com&#8217; is not valid, try &#8216;pear help&#8217;&#8221;</p>
<p>when you try to add the Symfony channel.</p>
<p>From there on you can just proceed with the normal symfony installation stuff.</p>
<p><code>pear channel-discover pear.symfony-project.com<br />
pear install symfony/symfony</code></p>
<p>All done.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.norwinter.com/2006/12/13/installing-symfony-on-os-x-104/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Battery Pack Doesn&#8217;t Want to Fit MacBook After Memory Upgrade</title>
		<link>http://www.norwinter.com/2006/11/27/battery-pack-doesnt-want-to-fit-macbook-after-memory-upgrade/</link>
		<comments>http://www.norwinter.com/2006/11/27/battery-pack-doesnt-want-to-fit-macbook-after-memory-upgrade/#comments</comments>
		<pubDate>Mon, 27 Nov 2006 10:52:50 +0000</pubDate>
		<dc:creator>siker</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Guide]]></category>

		<guid isPermaLink="false">http://www.norwinter.com/?p=69</guid>
		<description><![CDATA[I experienced this problem today. I bought a first generation MacBook (13&#8243; 2.0 GHz Core Duo) for my brother. It came with 1GB of memory, but after playing around with a couple of programs I realized that was a little bit short. I was running a Windows XP in Parallels, and at the same time [...]]]></description>
			<content:encoded><![CDATA[<p>I experienced this problem today. I bought a first generation MacBook (13&#8243; 2.0 GHz Core Duo) for my brother. It came with 1GB of memory, but after playing around with a couple of programs I realized that was a little bit short. I was running a Windows XP in Parallels, and at the same time I had a Word document open, and a couple of browser windows. The machine almost came to a stop. Not that strange since Windows XP alone was using a couple of hundred MB of memory &#8211; maybe 400 MB. And Word running in Rosetta is a beast.</p>
<p>Anyhow, so I had 2GB of memory in my MacBook Pro and decided to swap a memory stick from the MacBook Pro with a stick from the MacBook. Then both machines would have 1.5 GB.</p>
<p>When you take out the battery pack from the MacBook you&#8217;ll find a little rail which you need to remove to get to the memory banks. Three tiny screws hold it in place, and it&#8217;s shaped like an L sort of. Here&#8217;s the thing: once I was done and I had put the memory in (marveling over the engineering making it possible to get to the memory hidden inside of the computer with the help of two cute little levers), I was unable to get the battery pack back in.</p>
<p>It just wouldn&#8217;t seem to fit anymore. When I tried to push the battery in it insisted on going towards the center of the computer instead of fitting snuggly. Anyhow to make a long story short it turns out I hadn&#8217;t put the L shaped rail back in place correctly. On the short leg of the L there is a little piece which needs to go into a little hole in the side of the battery compartment. Apparently I had missed that hole but since the L rail is made out of flexible metal it just bent a little and I didn&#8217;t realize it was put in wrong.</p>
<p>Solution was to use a little screwdriver to guide the little piece on the short leg into the little hole in the compartment wall. Then the battery fit great again and everything was A-ok.</p>
<p>Just writing this down to save people some time should you happen to come by this by place by Google or something. <img src='http://www.norwinter.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.norwinter.com/2006/11/27/battery-pack-doesnt-want-to-fit-macbook-after-memory-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
