<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Mac Os X – Yeri Tiete</title>
    <link>https://yeri.be/tag/mac-os-x/</link>
    <description>Yeri Tiete&#39;s blog</description>
    <language>en</language>
    <copyright>© Yeri Tiete</copyright>
    <lastBuildDate>Fri, 08 Sep 2023 17:40:29 +0200</lastBuildDate>
    <atom:link href="https://yeri.be/tag/mac-os-x/index.xml" rel="self" type="application/rss+xml" />
    
    <item>
      <title>Check websites with LanguageTool for typos</title>
      <link>https://yeri.be/check-websites-with-languagetool-for-typos/</link>
      <pubDate>Fri, 08 Sep 2023 17:40:29 +0200</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/check-websites-with-languagetool-for-typos/</guid><enclosure url="https://static.yeri.be/2023/09/typo-checker.png" length="0" type="image/png" />
      <description>&lt;p&gt;This is quick and dirty (and with the help of ChatGPT). &lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://yeri.be/tag/flatturtle&#34; data-type=&#34;link&#34; data-id=&#34;https://flatturtle.com&#34;&gt;FlatTurtle&lt;/a&gt; has a &lt;a href=&#34;https://flatturtle.com&#34; data-type=&#34;link&#34; data-id=&#34;https://flatturtle.com&#34; target=&#34;_blank&#34; rel=&#34;noreferrer noopener&#34;&gt;new site&lt;/a&gt;, and there&#39;s been some fine-tuning here and there that led to a few typos creeping in. I wanted a quick tool to plug in a page, and that would highlight possible mistakes.&lt;/p&gt;&#xA;&lt;p&gt;I&#39;ve been a personal (paying) user of &lt;a href=&#34;https://languagetool.org/&#34; target=&#34;_blank&#34; rel=&#34;noreferrer noopener&#34;&gt;LanguageTool&lt;/a&gt; for a few years now (European, and less spammy and dodgy than Grammarly)&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p><img src="https://static.yeri.be/2023/09/typo-checker.png" alt="Check websites with LanguageTool for typos"></p><p>This is quick and dirty (and with the help of ChatGPT). </p>
<p><a href="https://yeri.be/tag/flatturtle" data-type="link" data-id="https://flatturtle.com">FlatTurtle</a> has a <a href="https://flatturtle.com" data-type="link" data-id="https://flatturtle.com" target="_blank" rel="noreferrer noopener">new site</a>, and there's been some fine-tuning here and there that led to a few typos creeping in. I wanted a quick tool to plug in a page, and that would highlight possible mistakes.</p>
<p>I've been a personal (paying) user of <a href="https://languagetool.org/" target="_blank" rel="noreferrer noopener">LanguageTool</a> for a few years now (European, and less spammy and dodgy than Grammarly)</p>
<p>Started off with a <a rel="noreferrer noopener" href="https://gitlab.com/superuser.one/languagetool-website-checker/-/blob/38c4c09a560f70e549e2d7266ad11ea256d82383/typocheck.py" data-type="link" data-id="https://gitlab.com/superuser.one/languagetool-website-checker/-/blob/38c4c09a560f70e549e2d7266ad11ea256d82383/typocheck.py" target="_blank">terminal tool</a>, but in the end that wasn't working out (hard to get the colouring to work and make it clear enough). </p>
<p>Figured a website would be easier:</p>
<ul>
<li>Insert a site</li>
<li>Let it go through the LanguageTool API for mistakes*</li>
<li>Show what is potentially wrong and explain why so I can go and edit it</li>
</ul>
<p>(*) Surprisingly hard because it needs to trim all HTML and js and other crap. And it has issues detecting headers (without punctuation) from paragraph text, etc). </p>
<p>It's far from perfect, but it works well enough for half a day of fiddling around. </p>
<figure class="wp-block-image alignwide size-large"><a href="https://static.yeri.be/2023/09/typo-checker-ft.png"><img src="https://static.yeri.be/2023/09/typo-checker-ft-1024x680.png" alt="" class="wp-image-73287"/></a></figure>
<p>You can hover your mouse over the red words to get some information as to why something is wrong.</p>
<p>The code, provided as-is, <a rel="noreferrer noopener" href="https://gitlab.com/superuser.one/languagetool-website-checker" data-type="link" data-id="https://gitlab.com/superuser.one/languagetool-website-checker" target="_blank">is here</a>, and you can run it using:</p>
<pre class="wp-block-code"><code>python3 -m pip install flask selenium beautifulsoup4 geckodriver-autoinstaller requests
python3 web_check.py --api-key KEY --username EMAIL</code></pre>
<p>And opening http://localhost:5000.</p>
<p>EMAIL is your login, the KEY can be found <a rel="noreferrer noopener" href="https://languagetool.org/editor/settings/access-tokens" target="_blank">here</a>.</p>
<p>Have fun. </p>
]]></content:encoded>
      <category>software</category><category>www</category>
      <category>ai</category><category>flatturtle</category><category>mac os x</category><category>python</category>
    </item>
    
    <item>
      <title>Script to display Mac battery information</title>
      <link>https://yeri.be/script-to-display-mac-battery-information/</link>
      <pubDate>Tue, 05 Sep 2023 17:07:44 +0200</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/script-to-display-mac-battery-information/</guid><enclosure url="https://static.yeri.be/2023/09/pexels-photo-4245928.jpeg" length="0" type="image/jpeg" />
      <description>&lt;p&gt;You can see how this script makes that couple very happy.&lt;/p&gt;&#xA;&lt;p&gt;Quick and dirty script that shows your Mac battery information (health, cycles, etc). If an Apple keyboard or mouse is connected, it&#39;ll also display the battery % of those.&lt;/p&gt;&#xA;&lt;pre class=&#34;wp-block-code&#34;&gt;&lt;code&gt;# Battery information&#xA;battery() {&#xA;&#xA;&#x9;if !ioreg &amp;gt; /dev/null 2&amp;gt;&amp;amp;1; then&#xA;&#x9;&#x9;echo &#34;ioreg not found. Exiting.&#34;&#xA;&#x9;&#x9;return 1&#xA;&#x9;fi&#xA;&#xA;&#x9;_ioreg=`ioreg -l`&#xA;&#x9;_profile=`system_profiler SPPowerDataType`&#xA;&#xA;&#x9;MOUSE=`echo $_ioreg -l | grep -A 10 &#34;Mouse&#34; | grep &#39;&#34;BatteryPercent&#34; =&#39; | sed &#39;s/&amp;#91;^0-9]*//g&#39;`&#xA;&#x9;TRACKPAD=`echo $_ioreg -l | grep -A 10 &#34;Track&#34; | grep &#39;&#34;BatteryPercent&#34; =&#39; | sed &#39;s/&amp;#91;^0-9]*//g&#39;`&#xA;&#x9;KEYBOARD=`echo $_ioreg -l | grep -A 10 &#34;Keyboard&#34; | grep &#39;&#34;BatteryPercent&#34; =&#39; | sed &#39;s/&amp;#91;^0-9]*//g&#39;`&#xA;&#x9;CYCLE=`echo $_profile | grep &#34;Cycle Count&#34; | awk &#39;{print $3}&#39;`&#xA;&#xA;&#x9;if &amp;#91; -n &#34;$MOUSE&#34; ]; then&#xA;&#x9;&#x9;echo &#34;Mouse: &#34;$MOUSE&#34;%&#34;&#xA;&#x9;fi&#xA;&#xA;&#x9;if &amp;#91; -n &#34;$TRACKPAD&#34; ]; then&#xA;&#x9;&#x9;echo &#34;Trackpad: &#34;$TRACKPAD&#34;%&#34;&#xA;&#x9;fi&#xA;&#xA;&#x9;if &amp;#91; -n &#34;$KEYBOARD&#34; ]; then&#xA;&#x9;&#x9;echo &#34;Keyboard: &#34;$KEYBOARD&#34;%&#34;&#xA;&#x9;fi&#xA;&#xA;&#x9;if &amp;#91; -n &#34;$CYCLE&#34; ] &amp;amp;&amp;amp; &amp;#91; &#34;$CYCLE&#34; -ne 0 ]; then&#xA;&#x9;&#x9;echo &#34;Mac battery &#34;`echo $_profile | grep &#34;State of Charge&#34; | awk &#39;{print $5}&#39;`&#34;%&#34;&#xA;&#x9;&#x9;echo &#34;Charging: &#34;`echo $_profile | grep &#34;Charging&#34; | head -n 1 | awk &#39;{print $2}&#39;`&#xA;&#x9;&#x9;echo &#34;Cycles: &#34;$CYCLE&#xA;&#x9;&#x9;echo &#34;Condition: &#34;`echo $_profile | grep &#34;Condition&#34; | awk &#39;{print $2}&#39;`&#xA;&#x9;&#x9;echo &#34;Health: &#34;`echo $_profile | grep &#34;Maximum Capacity&#34; | awk &#39;{print $3}&#39;`&#xA;&#x9;fi&#xA;}&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Outputs something similar to this (no mouse or keyboard connected):&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p><img src="https://static.yeri.be/2023/09/pexels-photo-4245928.jpeg" alt="Script to display Mac battery information"></p><p>You can see how this script makes that couple very happy.</p>
<p>Quick and dirty script that shows your Mac battery information (health, cycles, etc). If an Apple keyboard or mouse is connected, it'll also display the battery % of those.</p>
<pre class="wp-block-code"><code># Battery information
battery() {

	if !ioreg &gt; /dev/null 2&gt;&amp;1; then
		echo "ioreg not found. Exiting."
		return 1
	fi

	_ioreg=`ioreg -l`
	_profile=`system_profiler SPPowerDataType`

	MOUSE=`echo $_ioreg -l | grep -A 10 "Mouse" | grep '"BatteryPercent" =' | sed 's/&#91;^0-9]*//g'`
	TRACKPAD=`echo $_ioreg -l | grep -A 10 "Track" | grep '"BatteryPercent" =' | sed 's/&#91;^0-9]*//g'`
	KEYBOARD=`echo $_ioreg -l | grep -A 10 "Keyboard" | grep '"BatteryPercent" =' | sed 's/&#91;^0-9]*//g'`
	CYCLE=`echo $_profile | grep "Cycle Count" | awk '{print $3}'`

	if &#91; -n "$MOUSE" ]; then
		echo "Mouse: "$MOUSE"%"
	fi

	if &#91; -n "$TRACKPAD" ]; then
		echo "Trackpad: "$TRACKPAD"%"
	fi

	if &#91; -n "$KEYBOARD" ]; then
		echo "Keyboard: "$KEYBOARD"%"
	fi

	if &#91; -n "$CYCLE" ] &amp;&amp; &#91; "$CYCLE" -ne 0 ]; then
		echo "Mac battery "`echo $_profile | grep "State of Charge" | awk '{print $5}'`"%"
		echo "Charging: "`echo $_profile | grep "Charging" | head -n 1 | awk '{print $2}'`
		echo "Cycles: "$CYCLE
		echo "Condition: "`echo $_profile | grep "Condition" | awk '{print $2}'`
		echo "Health: "`echo $_profile | grep "Maximum Capacity" | awk '{print $3}'`
	fi
}</code></pre>
<p>Outputs something similar to this (no mouse or keyboard connected):</p>
<pre class="wp-block-code"><code>nazgul ~ $ battery
Mac battery 54%
Charging: No
Cycles: 224
Condition: Normal
Health: 89%</code></pre>
<p>This works on <code>zsh</code> and may not work in <code>bash</code>.</p>
]]></content:encoded>
      <category>apple</category><category>hardware</category><category>software</category>
      <category>mac os x</category><category>macbook</category>
    </item>
    
    <item>
      <title>Macbook Air M1 issues</title>
      <link>https://yeri.be/macbook-air-m1-issues/</link>
      <pubDate>Fri, 05 Feb 2021 04:11:22 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/macbook-air-m1-issues/</guid><enclosure url="https://static.yeri.be/2021/02/mba-m1-1.png" length="0" type="image/png" />
      <description>&lt;p&gt;I recently got my mom a Macbook Air M1, upgrading from a 2010 Macbook Pro (High Sierra). &lt;/p&gt;&#xA;&lt;p&gt;When migrating over from High Sierra to Big Sur, using Migration Assistant (my Synology TimeMachine kept on failing -- but besides that, migration went smoothly) two issues came up that required calling Apple. &lt;/p&gt;&#xA;&lt;p&gt;But first off I noticed that when migrating, for some reason FileVault was turned off (more on that later). I, obviously, turned it on. &lt;/p&gt;</description>
      <content:encoded><![CDATA[<p><img src="https://static.yeri.be/2021/02/mba-m1-1.png" alt="Macbook Air M1 issues"></p><p>I recently got my mom a Macbook Air M1, upgrading from a 2010 Macbook Pro (High Sierra). </p>
<p>When migrating over from High Sierra to Big Sur, using Migration Assistant (my Synology TimeMachine kept on failing -- but besides that, migration went smoothly) two issues came up that required calling Apple. </p>
<p>But first off I noticed that when migrating, for some reason FileVault was turned off (more on that later). I, obviously, turned it on. </p>
<p><strong>Problem A</strong>: when rebooting the Mac, I noticed the keyboard layout changed from Belgian (Azerty) to ABC (which is US English?) and it didn't accept the password to unlock the Mac. You can manually select another keyboard layout which accepts the password, but at every reboot that resets and requires going back through the layout picker.</p>
<p><strong>Solution A</strong>: M1 no longer supports the usual <a href="https://support.apple.com/en-us/HT201295" target="_blank" rel="noreferrer noopener">SMC</a> or <a href="https://support.apple.com/en-us/HT204063" target="_blank" rel="noreferrer noopener">NVRAM</a> reset. But this problem could be solved by turning off the mac, closing the lid (?!) and waiting 30+ seconds before turning it back on. According to the person on the phone, that's the M1 SMC reset. </p>
<p><strong>Problem B</strong>: I disabled guest mode in <code>System Preferences &gt; Users &amp; Groups</code> -- but it was still showing alongside the regular/admin user. I don't want guest mode. </p>
<p>Note that the guest mode <em>only </em>showed at the disk unlock (i.e.: after a reboot) and not when logged out (i.e.: <code>Apple logo &gt; Log Out</code> from the regular user). </p>
<p><strong>Solution B</strong>: Tried several things with Apple support:</p>
<ul><li>Turning off screen sharing and print sharing (sure -- didn't care too much about these)</li><li>Turn guest mode on/off and reboot/force quite System preferences</li><li>Turn off <a href="https://www.apple.com/icloud/find-my/">Find My</a> in iCloud settings (not acceptable) </li><li>Turn off FileVault (not acceptable) </li><li>Manually running:<ul><li><code>sudo defaults write /Library/Preferences/com.apple.AppleFileServer guestAccess -bool NO\n</code></li><li><code>sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.smb.server AllowGuestAccess -bool NO\n</code></li></ul></li><li>and a few other things I now forgot</li></ul>
<p>This is what actually did help: </p>
<ul><li>Turning off FileVault actually turns off Guest mode; so when the Mac was not encrypted, it only showered one user (instead of the user + Guest) at the login prompt.  <ul><li>Obviously, that's not acceptable and I turned it back on</li></ul></li><li>Supposedly turning off Find My in iCloud settings is needed (according to Apple this requires Guest mode)<ul><li>I later turned it back on and Guest mode did not reappear. So, what Apple was saying was incorrect, and it does not make the Guest user show up. </li></ul></li><li>Running <code>sudo fdesetup list</code> in Terminal shows the list of users. This may be helpful for debugging. </li><li>Running <code>dscl . list /Users</code> shows many users and included Guest in my mom's case. Not entirely sure what I am looking at here. </li><li>Running <code>sudo dscl . delete /Users/Guest</code> solved the problem. This deletes the Guest user (<a href="https://www.unix.com/man-page/OSX/1/dscl/" target="_blank" rel="noreferrer noopener">?</a>). </li></ul>
<p></p>
]]></content:encoded>
      <category>misc</category>
      <category>mac os x</category><category>macbook</category>
    </item>
    
    <item>
      <title>Yard Sale: Macbook Pro late 2013</title>
      <link>https://yeri.be/yard-sale-macbook-pro-late-2013/</link>
      <pubDate>Tue, 23 Aug 2016 10:00:48 +0200</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/yard-sale-macbook-pro-late-2013/</guid>
      <description>&lt;p&gt;&lt;strong&gt;For sale&lt;/strong&gt; due to getting a portable &lt;a href=&#34;https://static.yeri.be/2016/08/IMG-20160823-WA0000.jpeg&#34;&gt;Macbook&lt;/a&gt;:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA; &#x9;&lt;li&gt;Late 2013 Macbook Pro (15.4&#34; Retina)&lt;/li&gt;&#xA; &#x9;&lt;li&gt;2.3Ghz i7 (quad core + Hyper-Threading)&lt;/li&gt;&#xA; &#x9;&lt;li&gt;16Gb RAM&lt;/li&gt;&#xA; &#x9;&lt;li&gt;512Gb SSD&lt;/li&gt;&#xA; &#x9;&lt;li&gt;Intel Iris onboard GFX + Nvidia GeForce GT 750M PCE GFX&lt;/li&gt;&#xA; &#x9;&lt;li&gt;BE-Azerty keyboard&lt;/li&gt;&#xA; &#x9;&lt;li&gt;€2445,41 in 28 October 2013&lt;/li&gt;&#xA; &#x9;&lt;li&gt;SUPER fast&lt;/li&gt;&#xA; &#x9;&lt;li&gt;Minor scratch in the back of the LCD&lt;/li&gt;&#xA; &#x9;&lt;li&gt;Minor (not very noticeable) &lt;a href=&#34;https://www.google.be/search?q=macbook+pro+corrosion+sweat&amp;amp;source=lnms&amp;amp;tbm=isch&amp;amp;sa=X&amp;amp;ved=0ahUKEwjd-Znfj9bOAhXkCsAKHbKRCqUQ_AUICCgB&amp;amp;biw=1920&amp;amp;bih=1009&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;corrosion&lt;/a&gt; at the right hand&lt;/li&gt;&#xA; &#x9;&lt;li&gt;Weird scratch &#34;smear&#34; in LCD display (only visible on white background; about 2x2cm; to be honest it&#39;s not really visible)&lt;/li&gt;&#xA; &#x9;&lt;li&gt;Besides this very decent Macbook Pro, it has been used, but in very good shape for the extreme work it has committed. Taken care of this device as if it was my own child. And did I mention blazing fast?&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;strong&gt;Contact&lt;/strong&gt;: yeri+mbp@tiete.be&#xA;&lt;p&gt;&lt;strong&gt;Specs&lt;/strong&gt;:&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p><strong>For sale</strong> due to getting a portable <a href="https://static.yeri.be/2016/08/IMG-20160823-WA0000.jpeg">Macbook</a>:</p>
<ul>
 	<li>Late 2013 Macbook Pro (15.4" Retina)</li>
 	<li>2.3Ghz i7 (quad core + Hyper-Threading)</li>
 	<li>16Gb RAM</li>
 	<li>512Gb SSD</li>
 	<li>Intel Iris onboard GFX + Nvidia GeForce GT 750M PCE GFX</li>
 	<li>BE-Azerty keyboard</li>
 	<li>€2445,41 in 28 October 2013</li>
 	<li>SUPER fast</li>
 	<li>Minor scratch in the back of the LCD</li>
 	<li>Minor (not very noticeable) <a href="https://www.google.be/search?q=macbook+pro+corrosion+sweat&amp;source=lnms&amp;tbm=isch&amp;sa=X&amp;ved=0ahUKEwjd-Znfj9bOAhXkCsAKHbKRCqUQ_AUICCgB&amp;biw=1920&amp;bih=1009" target="_blank" rel="noopener noreferrer">corrosion</a> at the right hand</li>
 	<li>Weird scratch "smear" in LCD display (only visible on white background; about 2x2cm; to be honest it's not really visible)</li>
 	<li>Besides this very decent Macbook Pro, it has been used, but in very good shape for the extreme work it has committed. Taken care of this device as if it was my own child. And did I mention blazing fast?</li>
</ul>
<strong>Contact</strong>: yeri+mbp@tiete.be
<p><strong>Specs</strong>:</p>
<div class="page" title="Page 1">
<div class="section">
<div class="layoutArea">
<div class="column">
<p><em>Processor 2.3GHz Quad-core Intel Core i7</em>
<em> Memory 16GB 1600MHz DDR3L SDRAM</em>
<em> Flash Storage 512GB Flash Storage</em>
<em> Apple Thunderbolt to Enet Adpt Apple Thunderbolt to Enet Adpt Apple Thunderbolt to FW Adptr No FireWire Adapter</em>
<em>Mini DisplayPort to VGA Adptr No VGA Adapter</em>
<em> Keyboard and Documentation Keyboard/User&rsquo;s Guide(Z)-BEL Country Kit Country Kit-INT</em></p>
</div></div></div></div>
<p><strong>Pictures</strong>:</p>
<p><a href="https://static.yeri.be/2016/08/IMG_20160823_010509.jpg"><img class="alignnone wp-image-8116 size-large" src="https://static.yeri.be/2016/08/IMG_20160823_010509-766x1024.jpg" alt="IMG_20160823_010509" width="766" height="1024" /></a></p>
<p>It&rsquo;s a Macbook Pro !</p>
<p><a href="https://static.yeri.be/2016/08/IMG_20160823_010523.jpg"><img class="alignnone wp-image-8117 size-large" src="https://static.yeri.be/2016/08/IMG_20160823_010523-766x1024.jpg" alt="IMG_20160823_010523" width="766" height="1024" /></a></p>
<p>&ldquo;Smear&rdquo; above &ldquo;AGE&rdquo; (really hard to see)</p>
<p><a href="https://static.yeri.be/2016/08/IMG_20160823_010531.jpg"><img class="alignnone size-large wp-image-8118" src="https://static.yeri.be/2016/08/IMG_20160823_010531-766x1024.jpg" alt="IMG_20160823_010531" width="766" height="1024" /></a></p>
<p>Scratch at the back (knocked it against a glass door at night in my old apartment)</p>
<p><a href="https://static.yeri.be/2016/08/IMG_20160823_010450.jpg"><img class="alignnone size-large wp-image-8119" src="https://static.yeri.be/2016/08/IMG_20160823_010450-1024x766.jpg" alt="IMG_20160823_010450" width="780" height="583" /></a></p>
<p>Corrosion at the right hand (not left, don&rsquo;t ask why &ndash; probably because I use the touch pad all the time).</p>
<p><strong>More info</strong>:</p>
<p><a href="https://static.yeri.be/2016/08/Screen-Shot-2016-08-23-at-00.50.51.png"><img class="alignnone size-large wp-image-8104" src="https://static.yeri.be/2016/08/Screen-Shot-2016-08-23-at-00.50.51-1024x684.png" alt="Screen Shot 2016-08-23 at 00.50.51" width="780" height="521" /></a></p>
<p><a href="https://static.yeri.be/2016/08/Screen-Shot-2016-08-23-at-00.50.54.png"><img class="alignnone size-large wp-image-8105" src="https://static.yeri.be/2016/08/Screen-Shot-2016-08-23-at-00.50.54-1024x443.png" alt="Screen Shot 2016-08-23 at 00.50.54" width="780" height="337" /></a></p>
<p><a href="https://static.yeri.be/2016/08/Screen-Shot-2016-08-23-at-00.52.35.png"><img class="alignnone size-large wp-image-8107" src="https://static.yeri.be/2016/08/Screen-Shot-2016-08-23-at-00.52.35-1024x750.png" alt="Screen Shot 2016-08-23 at 00.52.35" width="780" height="571" /></a></p>
<p><a href="https://static.yeri.be/2016/08/Screen-Shot-2016-08-23-at-00.54.11.png"><img class="alignnone size-large wp-image-8108" src="https://static.yeri.be/2016/08/Screen-Shot-2016-08-23-at-00.54.11-1024x750.png" alt="Screen Shot 2016-08-23 at 00.54.11" width="780" height="571" /></a><a href="https://static.yeri.be/2016/08/Screen-Shot-2016-08-23-at-00.54.28.png"><img class="alignnone size-large wp-image-8109" src="https://static.yeri.be/2016/08/Screen-Shot-2016-08-23-at-00.54.28-1024x804.png" alt="Screen Shot 2016-08-23 at 00.54.28" width="780" height="612" /></a></p>
]]></content:encoded>
      <category>apple</category><category>hardware</category>
      <category>apple</category><category>mac os x</category><category>macbook</category><category>yard sale</category>
    </item>
    
    <item>
      <title>Courier IMAP and auto deleting trash after 7 days</title>
      <link>https://yeri.be/courier-imap-and-auto-deleting-trash-after-7-days/</link>
      <pubDate>Tue, 03 Feb 2015 11:53:20 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/courier-imap-and-auto-deleting-trash-after-7-days/</guid>
      <description>&lt;p&gt;E-mails that had been deleted for over 7 days were automatically removed from the IMAP server. E-mail date was ignored (ie the mail could have been from 2010; the actual time in &amp;ldquo;Trash&amp;rdquo; counted). This didn&amp;rsquo;t happen to other folders (Sent, Archive, Spam). This recently happened and hadn&amp;rsquo;t happened before.&lt;/p&gt;&#xA;&lt;p&gt;I had to restore my trash folder from backups every 7 days (yay for &lt;a href=&#34;http://www.nongnu.org/rdiff-backup/&#34; target=&#34;_blank&#34;&gt;rdiff-backup&lt;/a&gt;).&lt;/p&gt;&#xA;&lt;p&gt;It took me a while to figure it out&amp;hellip; The problem first appeared in October, right after several big changes:&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>E-mails that had been deleted for over 7 days were automatically removed from the IMAP server. E-mail date was ignored (ie the mail could have been from 2010; the actual time in &ldquo;Trash&rdquo; counted). This didn&rsquo;t happen to other folders (Sent, Archive, Spam). This recently happened and hadn&rsquo;t happened before.</p>
<p>I had to restore my trash folder from backups every 7 days (yay for <a href="http://www.nongnu.org/rdiff-backup/" target="_blank">rdiff-backup</a>).</p>
<p>It took me a while to figure it out&hellip; The problem first appeared in October, right after several big changes:</p>
<ul>
	<li>Yosemite update</li>
	<li>Airmail to <a href="http://airmailapp.com/" target="_blank">Airmail 2</a> update (I was <a href="https://twitter.com/Tuinslak/status/543457760525180929" target="_blank">convinced this was the root cause</a>, looking at my clients instead of the server)</li>
	<li>Android 5.0.x</li>
	<li>Android Email app sunset, changes to GMail app</li>
	<li>IPv6 working decently at home after updating my <a href="https://yeri.be/connect-different-lans-over-openvpn">RPi</a> to <a href="http://en.avm.de/" target="_blank">Fritzbox</a> devices.</li>
	<li>Random connection errors in GMail app (this was due to misconfigured DNS in the GMail app and causing IPv6 catch all to redirect to the webserver instead of the mailserver. It didn't happen consistently because over mobile (4G &amp; lower) there is no IPv6 and at home is randomly falls back to IPv4 as well. IPv4 DNS was well configured.</li>
	<li>Moving my ~100.000 deleted e-mails from "Deleted Items" (OS X Mail default) to "Trash" (Android &amp; Courier default) to stop having to move them manually from one folder to the other every so often. =&gt; this was eventually the cause but I didn't realize.</li>
</ul>
Being convinced it was most likely Airmail 2 and very maybe Android I had been looking in that direction.
<p>Debugging was also extremely slow as I had to wait 7 days before being able to check if the changes I made helped anything.</p>
<p>I eventually figured out that it was not Airmail when I rebuild my whole mail database and it defaulted back to putting my deleted mails into the Archive folder instead of Trash. Archive mails were kept over 7 days, but items in Trash still removed.</p>
<p>That&rsquo;s when I started looking at Courier IMAP config: <code>/etc/courier/imapd</code> (and not <code>imapd-ssl</code>).</p>
<p>There&rsquo;s an option that says:</p>
<pre>##NAME: IMAP_EMPTYTRASH:0
#
# The following setting is optional, and causes messages from the given
# folder to be automatically deleted after the given number of days.
# IMAP_EMPTYTRASH is a comma-separated list of folder:days.  The default
# setting, below, purges 7 day old messages from the Trash folder.
# Another useful setting would be:
#  
# IMAP_EMPTYTRASH=Trash:7,Sent:30
#
# This would also delete messages from the Sent folder (presumably copies
# of sent mail) after 30 days.  This is a global setting that is applied to
# every mail account, and is probably useful in a controlled, corporate
# environment.
#
# Important: the purging is controlled by CTIME, not MTIME (the file time
# as shown by ls).  It is perfectly ordinary to see stuff in Trash that's
# a year old.  That's the file modification time, MTIME, that's displayed.
# This is generally when the message was originally delivered to this
# mailbox.  Purging is controlled by a different timestamp, CTIME, which is
# changed when the file is moved to the Trash folder (and at other times too).
#
# You might want to disable this setting in certain situations - it results
# in a stat() of every file in each folder, at login and logout.
#
IMAP_EMPTYTRASH=Trash:7</pre>
<p>Comment out that last line, and restart courier-imap(-ssl)&hellip; Simple as that.</p>
<p>This solved my issue.</p>
<p>I&rsquo;m not sure when that config change happened (Debian update?) and I do not know who at Courier thought it was a good idea &hellip;. But sheesh.</p>
]]></content:encoded>
      <category>apple</category><category>errors</category><category>linux</category><category>networking</category><category>software</category>
      <category>gmail</category><category>imap</category><category>mac os x</category><category>mail</category>
    </item>
    
    <item>
      <title>Yard Sale: Mac Mini (G4)</title>
      <link>https://yeri.be/yard-sale-mac-mini-g4/</link>
      <pubDate>Mon, 21 Apr 2014 13:03:17 +0200</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/yard-sale-mac-mini-g4/</guid>
      <description>&lt;p&gt;I&amp;rsquo;m &lt;a href=&#34;https://yeri.be/tag/yard-sale&#34;&gt;selling&lt;/a&gt; a Mac Mini 1.5Ghz &lt;a href=&#34;https://en.wikipedia.org/wiki/Mac_Mini#Mac_Mini_G4&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;G4&lt;/a&gt; (PowerPC) with 512Mb ram. It has a 80Gb disk in it (7200 rpm I believe, but not sure). It runs Linux like a charm, and is a perfect server (and WAY faster than a &lt;a href=&#34;https://yeri.be/yard-sale-raspberry-pis&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Raspberry Pi&lt;/a&gt;).&lt;/p&gt;&#xA;&lt;p style=&#34;text-align: center;&#34;&gt;&lt;a href=&#34;https://static.yeri.be/2014/04/IMG_20140418_104714.jpg&#34;&gt;&lt;img class=&#34;alignnone size-medium wp-image-6145&#34; src=&#34;https://static.yeri.be/2014/04/IMG_20140418_104714-222x300.jpg&#34; alt=&#34;IMG_20140418_104714&#34; width=&#34;222&#34; height=&#34;300&#34; /&gt;&lt;/a&gt; &lt;a href=&#34;https://static.yeri.be/2014/04/IMG_20140418_104725.jpg&#34;&gt;&lt;img class=&#34;alignnone size-medium wp-image-6146&#34; src=&#34;https://static.yeri.be/2014/04/IMG_20140418_104725-300x222.jpg&#34; alt=&#34;IMG_20140418_104725&#34; width=&#34;300&#34; height=&#34;222&#34; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;I believe the latest version to run was Mac OS X Tiger (10.4).&#xA;&lt;p&gt;It comes with the power adapter, a DVI to VGA adapter, and in the picture below is the optional &lt;a href=&#34;https://yeri.be/yard-sale-wifi-adapters&#34;&gt;WiFi adapter&lt;/a&gt;.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>I&rsquo;m <a href="https://yeri.be/tag/yard-sale">selling</a> a Mac Mini 1.5Ghz <a href="https://en.wikipedia.org/wiki/Mac_Mini#Mac_Mini_G4" target="_blank" rel="noopener noreferrer">G4</a> (PowerPC) with 512Mb ram. It has a 80Gb disk in it (7200 rpm I believe, but not sure). It runs Linux like a charm, and is a perfect server (and WAY faster than a <a href="https://yeri.be/yard-sale-raspberry-pis" target="_blank" rel="noopener noreferrer">Raspberry Pi</a>).</p>
<p style="text-align: center;"><a href="https://static.yeri.be/2014/04/IMG_20140418_104714.jpg"><img class="alignnone size-medium wp-image-6145" src="https://static.yeri.be/2014/04/IMG_20140418_104714-222x300.jpg" alt="IMG_20140418_104714" width="222" height="300" /></a> <a href="https://static.yeri.be/2014/04/IMG_20140418_104725.jpg"><img class="alignnone size-medium wp-image-6146" src="https://static.yeri.be/2014/04/IMG_20140418_104725-300x222.jpg" alt="IMG_20140418_104725" width="300" height="222" /></a></p>
I believe the latest version to run was Mac OS X Tiger (10.4).
<p>It comes with the power adapter, a DVI to VGA adapter, and in the picture below is the optional <a href="https://yeri.be/yard-sale-wifi-adapters">WiFi adapter</a>.</p>
<p style="text-align: center;"><a href="https://static.yeri.be/2014/04/IMG_20140418_104735.jpg"><img class="alignnone size-medium wp-image-6148" src="https://static.yeri.be/2014/04/IMG_20140418_104735-300x222.jpg" alt="IMG_20140418_104735" width="300" height="222" /></a></p>
<p style="text-align: left;"><code>
Tyr ~ # uname -a
Linux Tyr 3.2.0-4-powerpc #1 Debian 3.2.54-2 ppc GNU/Linux</code></p>
<p style="text-align: left;"><code>
Tyr ~ # free -m
total used free shared buffers cached
Mem: 500 217 283 0 11 171
-/+ buffers/cache: 34 466
Swap: 953 0 953</code></p>
<p style="text-align: left;"><code>
Tyr ~ # df -h
Filesystem Size Used Avail Use% Mounted on
rootfs 73G 882M 72G 2% /
udev 10M 0 10M 0% /dev
tmpfs 51M 212K 50M 1% /run
/dev/disk/by-uuid/bf89e3dc-6606-45e1-a87f-ab8e1be66b85 73G 882M 72G 2% /
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 291M 0 291M 0% /run/shm
tmpfs 251M 40M 211M 16% /var/cache/apt
tmpfs 251M 73M 179M 29% /var/lib/apt/lists
tmpfs 291M 0 291M 0% /tmp</code></p>
<p style="text-align: left;"><code>
Tyr ~ # cat /proc/cpuinfo
processor : 0
cpu : 7447A, altivec supported
clock : 1416.666661MHz
revision : 1.2 (pvr 8003 0102)
bogomips : 83.24
timebase : 41620907
platform : PowerMac
model : PowerMac10,1
machine : PowerMac10,1
motherboard : PowerMac10,1 MacRISC3 Power Macintosh
detected as : 287 (Mac mini)
pmac flags : 00000010
L2 cache : 512K unified
pmac-generation : NewWorld
Memory : 512 MB</code></p>
Price: €50
<p>Contact: <a href="mailto:yeri&#43;mac@tiete.be">yeri+mac@tiete.be</a></p>
]]></content:encoded>
      <category>apple</category><category>hardware</category><category>linux</category>
      <category>mac os x</category><category>yard sale</category>
    </item>
    
    <item>
      <title>Mac OS X Mavericks &#43; VLC top bar</title>
      <link>https://yeri.be/mac-os-x-mavericks-vlc-top-bar/</link>
      <pubDate>Tue, 21 Jan 2014 09:28:05 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/mac-os-x-mavericks-vlc-top-bar/</guid>
      <description>&lt;p style=&#34;text-align: left;&#34;&gt;Mavericks, and its new &#34;multi display support&#34; adds a grey-ish bar to the top of VLC when watching anything full screen.&lt;/p&gt;&#xA;&lt;p style=&#34;text-align: center;&#34;&gt;&lt;a href=&#34;https://static.yeri.be/2014/01/VLC-fullscreen-header.png&#34;&gt;&lt;img class=&#34;alignnone size-medium wp-image-5805&#34; alt=&#34;VLC-fullscreen-header&#34; src=&#34;https://static.yeri.be/2014/01/VLC-fullscreen-header-300x168.png&#34; width=&#34;300&#34; height=&#34;168&#34; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p style=&#34;text-align: left;&#34;&gt;I never found a way to get rid of it, and it has annoyed me ever since. Until yesterday...&lt;/p&gt;&#xA;&lt;p style=&#34;text-align: left;&#34;&gt;This is how to get rid of it:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&#x9;&lt;li&gt;play movie&lt;/li&gt;&#xA;&#x9;&lt;li&gt;drag to 2nd screen&lt;/li&gt;&#xA;&#x9;&lt;li&gt;click Video &amp;gt; Float on Top&lt;/li&gt;&#xA;&#x9;&lt;li&gt;go full screen (cmd+F or Video &amp;gt; Fullscreen)&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p style=&#34;text-align: center;&#34;&gt;&lt;a href=&#34;https://static.yeri.be/2014/01/float-that-shit.png&#34;&gt;&lt;img class=&#34;alignnone size-medium wp-image-5809&#34; alt=&#34;float-that-shit&#34; src=&#34;https://static.yeri.be/2014/01/float-that-shit-221x300.png&#34; width=&#34;221&#34; height=&#34;300&#34; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p style="text-align: left;">Mavericks, and its new "multi display support" adds a grey-ish bar to the top of VLC when watching anything full screen.</p>
<p style="text-align: center;"><a href="https://static.yeri.be/2014/01/VLC-fullscreen-header.png"><img class="alignnone size-medium wp-image-5805" alt="VLC-fullscreen-header" src="https://static.yeri.be/2014/01/VLC-fullscreen-header-300x168.png" width="300" height="168" /></a></p>
<p style="text-align: left;">I never found a way to get rid of it, and it has annoyed me ever since. Until yesterday...</p>
<p style="text-align: left;">This is how to get rid of it:</p>
<ol>
	<li>play movie</li>
	<li>drag to 2nd screen</li>
	<li>click Video &gt; Float on Top</li>
	<li>go full screen (cmd+F or Video &gt; Fullscreen)</li>
</ol>
<p style="text-align: center;"><a href="https://static.yeri.be/2014/01/float-that-shit.png"><img class="alignnone size-medium wp-image-5809" alt="float-that-shit" src="https://static.yeri.be/2014/01/float-that-shit-221x300.png" width="221" height="300" /></a></p>
<p style="text-align: left;">Keep in mind, that once you get out of full screen, and get back in it, the bar will be back. Enabling and disabling the above mentioned option won't change it anymore. The only solution I've found was to quit VLC entirely, reopen it, go back the where the movie was, click the option, and go full screen...</p>
<p style="text-align: left;">plxthx for buggy releases.</p>
<p style="text-align: left;"><span style="text-decoration: underline;">Edit</span>: Today I am unable to apply my above mentioned 'fix'. I have however found another option under VLC preferences: "Interface &gt; Use the native fullscreen mode". Deselect that option, and it seems to be working.</p>
]]></content:encoded>
      <category>apple</category><category>errors</category><category>software</category>
      <category>mac os x</category><category>vlc</category>
    </item>
    
    <item>
      <title>Mac os (Mountain) Lion &#43; external display &#43; sleep when closing the lid</title>
      <link>https://yeri.be/mac-os-mountain-lion-external-display-sleep-when-closing-the-lid/</link>
      <pubDate>Wed, 05 Sep 2012 22:13:41 +0200</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/mac-os-mountain-lion-external-display-sleep-when-closing-the-lid/</guid>
      <description>&lt;p&gt;I recently dared to upgrade from Snow Leopard (10.6) to Mountain Lion (10.8), skipping Lion (10.7) altogether.&lt;/p&gt;&#xA;&lt;p&gt;One of the mayor disturbances I had, was when I was using my Macbook Pro at my home office. I use an external display (some Samsung SyncMaster) as well as my MBP&amp;rsquo;s main display.&lt;/p&gt;&#xA;&lt;p&gt;I put my MBP to sleep by simply closing the lid, keeping the power source and external display attached.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>I recently dared to upgrade from Snow Leopard (10.6) to Mountain Lion (10.8), skipping Lion (10.7) altogether.</p>
<p>One of the mayor disturbances I had, was when I was using my Macbook Pro at my home office. I use an external display (some Samsung SyncMaster) as well as my MBP&rsquo;s main display.</p>
<p>I put my MBP to sleep by simply closing the lid, keeping the power source and external display attached.</p>
<p>Pre-Lion this resulted in my MBP neatly going to sleep mode, in Mountain Lion this resulted in Mac OS using the external display as sole display and keeping the MBP running&hellip; Not something I was interested in, as it would either require me to unplug power before closing the lid or manually clicking the sleep button for my MBP to go to sleep.</p>
<p>After some great searching, I came along <a href="https://discussions.apple.com/thread/3194909?start=30&amp;tstart=0" target="_blank">this post</a> (page 3 and 4 have useful information) and I&rsquo;ll summarize it here:</p>
<ol>
	<li>Unplug your external display</li>
	<li>open Terminal (via spotlight for example) and type:
<code>sudo nvram boot-args="iog=0x0"</code>
</li>
	<li>Type your Mac password</li>
	<li>Reboot and wait for Mac OS X to fully boot</li>
	<li>Plug your external display back in. The resolution might be wrong and it might not recognise your display.</li>
	<li>Go to sleep by closing the lid. It should now work correctly.</li>
	<li>Upon reopening, the resolution will be fixed (if not, close and reopen or replug the external display -- I'm sure it'll be solved now).</li>
</ol>
I'll add this info as well that <a id="jive-15786396788632820814243" href="https://discussions.apple.com/people/jk10003" rel="nofollow" data-externalid="" data-username="jk10003" data-avatarid="1316">jk10003</a> added:
<blockquote>If it screws up your system, just zap the PRAM next boot (cmd-opt-p-r) and you'll be back to the default Lion state. Or if you can still get into terminal, this command will get you back to Lion's default state as well:
<pre>sudo nvram -d boot-args</pre>
</blockquote>
&nbsp;
<p> </p>
]]></content:encoded>
      <category>apple</category><category>errors</category><category>hardware</category><category>software</category>
      <category>mac os x</category>
    </item>
    
    <item>
      <title>Compile wget on Mac OS X</title>
      <link>https://yeri.be/compile-wget-on-mac-os-x/</link>
      <pubDate>Fri, 04 Mar 2011 08:08:03 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/compile-wget-on-mac-os-x/</guid>
      <description>&lt;p&gt;There&#39;s a &lt;a href=&#34;https://yeri.be/wget-for-mac-os-x/&#34;&gt;precompiled&lt;/a&gt; wget available on the net, but it&#39;s not automatically accepting &lt;a href=&#34;https://yeri.be/blog-over-ssl/&#34;&gt;StartSSL&#39;s&lt;/a&gt; certificates. And as it seems, there&#39;s a wget update available that did.&lt;/p&gt;&#xA;&lt;p&gt;This is what I had to do to compile it on my Macbook Pro;&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Install &lt;a href=&#34;https://developer.apple.com/xcode/&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Xcode&lt;/a&gt;, if you haven&#39;t, and be sure to select UNIX Dev Support.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;figure class=&#34;wp-block-image&#34;&gt;&lt;a href=&#34;https://static.yeri.be/2011/03/Screen-shot-2011-02-18-at-12.14.18.png&#34;&gt;&lt;img src=&#34;https://static.yeri.be/2011/03/Screen-shot-2011-02-18-at-12.14.18.png&#34; alt=&#34;&#34; class=&#34;wp-image-2610&#34; title=&#34;Screen shot 2011-02-18 at 12.14.18&#34;/&gt;&lt;/a&gt;&lt;/figure&gt;&#xA;&lt;p class=&#34;has-text-align-center&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Or you&#39;ll get this error:&lt;/p&gt;&#xA;&lt;pre class=&#34;wp-block-preformatted&#34;&gt;configure: error: C compiler cannot create executables&lt;/pre&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Export Xcode&#39;s gcc PATH:&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;pre class=&#34;wp-block-preformatted&#34;&gt;PATH=/Developer/usr/bin/:$PATH&lt;/pre&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Download &lt;a href=&#34;ftp://ftp.gnu.org/pub/gnu/wget/wget-latest.tar.gz&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;wget&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;In Terminal: untar it&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;pre class=&#34;wp-block-preformatted&#34;&gt;tar xvzf wget-latest.*&lt;/pre&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;And compile it&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;pre class=&#34;wp-block-preformatted&#34;&gt;cd wget directory&#xA;./configure&#xA;make&#xA;sudo make install&lt;/pre&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;In case you had an old (precompiled) wget installed;&lt;br /&gt;remove that version first (/usr/bin/wget probably).&lt;br /&gt;By default, this one will install itself in /usr/local/bin/wget which should be in your $PATH as well (in case it&#39;s not, make a symlink from the old /usr/bin/wget to /usr/local/bin/wget, or recompile with other installation directories).&lt;/li&gt;&#xA;&lt;/ul&gt;</description>
      <content:encoded><![CDATA[<p>There's a <a href="https://yeri.be/wget-for-mac-os-x/">precompiled</a> wget available on the net, but it's not automatically accepting <a href="https://yeri.be/blog-over-ssl/">StartSSL's</a> certificates. And as it seems, there's a wget update available that did.</p>
<p>This is what I had to do to compile it on my Macbook Pro;</p>
<ul>
<li>Install <a href="https://developer.apple.com/xcode/" target="_blank" rel="noopener noreferrer">Xcode</a>, if you haven't, and be sure to select UNIX Dev Support.</li>
</ul>
<figure class="wp-block-image"><a href="https://static.yeri.be/2011/03/Screen-shot-2011-02-18-at-12.14.18.png"><img src="https://static.yeri.be/2011/03/Screen-shot-2011-02-18-at-12.14.18.png" alt="" class="wp-image-2610" title="Screen shot 2011-02-18 at 12.14.18"/></a></figure>
<p class="has-text-align-center"></p>
<p>Or you'll get this error:</p>
<pre class="wp-block-preformatted">configure: error: C compiler cannot create executables</pre>
<ul>
<li>Export Xcode's gcc PATH:</li>
</ul>
<pre class="wp-block-preformatted">PATH=/Developer/usr/bin/:$PATH</pre>
<ul>
<li>Download <a href="ftp://ftp.gnu.org/pub/gnu/wget/wget-latest.tar.gz" target="_blank" rel="noopener noreferrer">wget</a></li>
<li>In Terminal: untar it</li>
</ul>
<pre class="wp-block-preformatted">tar xvzf wget-latest.*</pre>
<ul>
<li>And compile it</li>
</ul>
<pre class="wp-block-preformatted">cd wget directory
./configure
make
sudo make install</pre>
<ul>
<li>In case you had an old (precompiled) wget installed;<br />remove that version first (/usr/bin/wget probably).<br />By default, this one will install itself in /usr/local/bin/wget which should be in your $PATH as well (in case it's not, make a symlink from the old /usr/bin/wget to /usr/local/bin/wget, or recompile with other installation directories).</li>
</ul>
]]></content:encoded>
      <category>apple</category><category>software</category><category>www</category>
      <category>489e06</category><category>apple</category><category>ffffff</category><category>mac os x</category><category>wget</category>
    </item>
    
    <item>
      <title>Java &#43; Angry IP Scanner error</title>
      <link>https://yeri.be/java-angry-ip-scanner-error/</link>
      <pubDate>Thu, 06 Nov 2008 12:00:43 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/java-angry-ip-scanner-error/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://www.angryziber.com&#34; target=&#34;_blank&#34;&gt;Angry IP scanner&lt;/a&gt; was quitting each time I started the application, and looking at Console I saw these errors:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;06/11/08 11:34:15 &lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;0x0-0x1f01f&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt;.net.azib.ipscan&lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;190&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;JavaAppLauncher Error&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt; CFBundleCopyResourceURL&lt;span class=&#34;o&#34;&gt;()&lt;/span&gt; failed loading MRJApp.properties file&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;06/11/08 11:34:15 &lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;0x0-0x1f01f&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt;.net.azib.ipscan&lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;190&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;JavaAppLauncher Error&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt; CFBundleCopyResourceURL&lt;span class=&#34;o&#34;&gt;()&lt;/span&gt; failed &lt;span class=&#34;k&#34;&gt;while&lt;/span&gt; getting Resource/Java directory&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;06/11/08 11:34:15 &lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;0x0-0x1f01f&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt;.net.azib.ipscan&lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;190&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;LaunchRunner Error&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt; No main class specified&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;06/11/08 11:34:15 &lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;0x0-0x1f01f&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt;.net.azib.ipscan&lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;190&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;JavaAppLauncher Error&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt; CallStaticVoidMethod&lt;span class=&#34;o&#34;&gt;()&lt;/span&gt; threw an exception&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;06/11/08 11:34:15 &lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;0x0-0x1f01f&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt;.net.azib.ipscan&lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;190&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt; Exception in thread &lt;span class=&#34;s2&#34;&gt;&amp;#34;main&amp;#34;&lt;/span&gt; java.lang.NullPointerException&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;06/11/08 11:34:15 &lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;0x0-0x1f01f&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt;.net.azib.ipscan&lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;190&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt;  at apple.launcher.LaunchRunner.run&lt;span class=&#34;o&#34;&gt;(&lt;/span&gt;LaunchRunner.java:112&lt;span class=&#34;o&#34;&gt;)&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;06/11/08 11:34:15 &lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;0x0-0x1f01f&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt;.net.azib.ipscan&lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;190&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt;  at apple.launcher.LaunchRunner.callMain&lt;span class=&#34;o&#34;&gt;(&lt;/span&gt;LaunchRunner.java:50&lt;span class=&#34;o&#34;&gt;)&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;06/11/08 11:34:15 &lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;0x0-0x1f01f&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt;.net.azib.ipscan&lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;190&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt;  at apple.launcher.JavaApplicationLauncher.main&lt;span class=&#34;o&#34;&gt;(&lt;/span&gt;JavaApplicationLauncher.java:61&lt;span class=&#34;o&#34;&gt;)&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;06/11/08 11:34:15 com.apple.launchd&lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;97&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;([&lt;/span&gt;0x0-0x1f01f&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt;.net.azib.ipscan&lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;190&lt;span class=&#34;o&#34;&gt;])&lt;/span&gt; Exited with &lt;span class=&#34;nb&#34;&gt;exit&lt;/span&gt; code: &lt;span class=&#34;m&#34;&gt;1&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;After some googling I came upon &lt;a href=&#34;http://renderfast.com/2008/09/26/java-for-mac-update-2-leaves-some-java-apps-broken/&#34; target=&#34;_blank&#34;&gt;this website&lt;/a&gt;.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p><a href="http://www.angryziber.com" target="_blank">Angry IP scanner</a> was quitting each time I started the application, and looking at Console I saw these errors:</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="cl">06/11/08 11:34:15 <span class="o">[</span>0x0-0x1f01f<span class="o">]</span>.net.azib.ipscan<span class="o">[</span>190<span class="o">]</span> <span class="o">[</span>JavaAppLauncher Error<span class="o">]</span> CFBundleCopyResourceURL<span class="o">()</span> failed loading MRJApp.properties file
</span></span><span class="line"><span class="cl">06/11/08 11:34:15 <span class="o">[</span>0x0-0x1f01f<span class="o">]</span>.net.azib.ipscan<span class="o">[</span>190<span class="o">]</span> <span class="o">[</span>JavaAppLauncher Error<span class="o">]</span> CFBundleCopyResourceURL<span class="o">()</span> failed <span class="k">while</span> getting Resource/Java directory
</span></span><span class="line"><span class="cl">06/11/08 11:34:15 <span class="o">[</span>0x0-0x1f01f<span class="o">]</span>.net.azib.ipscan<span class="o">[</span>190<span class="o">]</span> <span class="o">[</span>LaunchRunner Error<span class="o">]</span> No main class specified
</span></span><span class="line"><span class="cl">06/11/08 11:34:15 <span class="o">[</span>0x0-0x1f01f<span class="o">]</span>.net.azib.ipscan<span class="o">[</span>190<span class="o">]</span> <span class="o">[</span>JavaAppLauncher Error<span class="o">]</span> CallStaticVoidMethod<span class="o">()</span> threw an exception
</span></span><span class="line"><span class="cl">06/11/08 11:34:15 <span class="o">[</span>0x0-0x1f01f<span class="o">]</span>.net.azib.ipscan<span class="o">[</span>190<span class="o">]</span> Exception in thread <span class="s2">&#34;main&#34;</span> java.lang.NullPointerException
</span></span><span class="line"><span class="cl">06/11/08 11:34:15 <span class="o">[</span>0x0-0x1f01f<span class="o">]</span>.net.azib.ipscan<span class="o">[</span>190<span class="o">]</span>  at apple.launcher.LaunchRunner.run<span class="o">(</span>LaunchRunner.java:112<span class="o">)</span>
</span></span><span class="line"><span class="cl">06/11/08 11:34:15 <span class="o">[</span>0x0-0x1f01f<span class="o">]</span>.net.azib.ipscan<span class="o">[</span>190<span class="o">]</span>  at apple.launcher.LaunchRunner.callMain<span class="o">(</span>LaunchRunner.java:50<span class="o">)</span>
</span></span><span class="line"><span class="cl">06/11/08 11:34:15 <span class="o">[</span>0x0-0x1f01f<span class="o">]</span>.net.azib.ipscan<span class="o">[</span>190<span class="o">]</span>  at apple.launcher.JavaApplicationLauncher.main<span class="o">(</span>JavaApplicationLauncher.java:61<span class="o">)</span>
</span></span><span class="line"><span class="cl">06/11/08 11:34:15 com.apple.launchd<span class="o">[</span>97<span class="o">]</span> <span class="o">([</span>0x0-0x1f01f<span class="o">]</span>.net.azib.ipscan<span class="o">[</span>190<span class="o">])</span> Exited with <span class="nb">exit</span> code: <span class="m">1</span>
</span></span></code></pre></div><p>After some googling I came upon <a href="http://renderfast.com/2008/09/26/java-for-mac-update-2-leaves-some-java-apps-broken/" target="_blank">this website</a>.</p>
<p>Following the (long/first) instructions did solve the problem, and I can now run the application.</p>
<p>Only skipping #9, as I could not find the &ldquo;CFBundleExecutable&rdquo;, and simply renaming the old <em>ipscan</em> to <em>ipscan.bak</em>, and renaming <em>JavaApplicationStub</em> to <em>ipscan</em>.</p>
]]></content:encoded>
      <category>apple</category><category>errors</category><category>software</category>
      <category>angry ip scanner</category><category>java</category><category>mac os x</category>
    </item>
    
    <item>
      <title>YouTube of the day</title>
      <link>https://yeri.be/youtube-of-the-day/</link>
      <pubDate>Fri, 19 Sep 2008 16:29:55 +0200</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/youtube-of-the-day/</guid>
      <description>&lt;p&gt;Just &#39;cause I&#39;m bored.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>Just 'cause I'm bored.</p>
<p class="has-text-align-center"><object width="425" height="344" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"></object></p>
<p class="has-text-align-center"><object width="425" height="344" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true"/></object></p>
<div class="embed-responsive embed-youtube">
	<iframe src="https://www.youtube-nocookie.com/embed/q_uddKK3nmY" title="YouTube video" loading="lazy" allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>

<div class="embed-responsive embed-youtube">
	<iframe src="https://www.youtube-nocookie.com/embed/dYP-wBaqQAI" title="YouTube video" loading="lazy" allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>]]></content:encoded>
      <category>misc</category>
      <category>wtf</category><category>windows</category><category>apple</category><category>jobs</category><category>mac os x</category><category>twitter</category><category>youtube</category>
    </item>
    
    <item>
      <title>wget for Mac OS X</title>
      <link>https://yeri.be/wget-for-mac-os-x/</link>
      <pubDate>Fri, 05 Sep 2008 02:28:29 +0200</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/wget-for-mac-os-x/</guid>
      <description>&lt;p&gt;The missing tool in Mac OS X is most likely wget. &lt;a href=&#34;http://www.statusq.org/archives/2008/07/30/1954/&#34; target=&#34;_blank&#34;&gt;Here&amp;rsquo;s a (universal) port&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;Read the readme for installation howto. :)&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>The missing tool in Mac OS X is most likely wget. <a href="http://www.statusq.org/archives/2008/07/30/1954/" target="_blank">Here&rsquo;s a (universal) port</a>.</p>
<p>Read the readme for installation howto. :)</p>
]]></content:encoded>
      <category>apple</category><category>software</category><category>www</category>
      <category>apple</category><category>mac os x</category><category>wget</category>
    </item>
    
    <item>
      <title>Namely &#43; hiding its icon</title>
      <link>https://yeri.be/namely-hiding-its-icon/</link>
      <pubDate>Tue, 26 Feb 2008 19:54:16 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/namely-hiding-its-icon/</guid>
      <description>&lt;p&gt;I recently started to use &lt;a href=&#34;http://amarsagoo.info/namely/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Namely&lt;/a&gt; but having its icon in my dock was quite annoying (like to keep my dock clean).&lt;/p&gt;&#xA;&lt;p&gt;Namely is an app that let&amp;rsquo;s you launch any application by typing in a few letters of that program&amp;rsquo;s name. Just type in a key combination ([Apple]+E here), and Namely&amp;rsquo;s window pop ups.&lt;/p&gt;&#xA;&lt;p&gt;After a bit of &lt;a href=&#34;https://web.archive.org/web/20170301073126/http://www.macgeekery.com/gspot/2007-02/hiding_applications_from_the_dock&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Googling&lt;/a&gt; I found that it was possible to hide icons from the dock.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>I recently started to use <a href="http://amarsagoo.info/namely/" target="_blank" rel="noopener">Namely</a> but having its icon in my dock was quite annoying (like to keep my dock clean).</p>
<p>Namely is an app that let&rsquo;s you launch any application by typing in a few letters of that program&rsquo;s name. Just type in a key combination ([Apple]+E here), and Namely&rsquo;s window pop ups.</p>
<p>After a bit of <a href="https://web.archive.org/web/20170301073126/http://www.macgeekery.com/gspot/2007-02/hiding_applications_from_the_dock" target="_blank" rel="noopener">Googling</a> I found that it was possible to hide icons from the dock.</p>
<p>First of all, configure Namely, make sure it pop ups if you type in your key combo. If you don&rsquo;t do that now, you&rsquo;ll have problems to configure it later.</p>
<p>Once that&rsquo;s done, quit Namely.</p>
<p>Then go to the Namely.app folder (using Terminal), and add these 2 lines</p>
<pre line="1" lang="bash"><key>LSUIElement</key>
<string>1</string></pre>
<p>between &lt;dict&gt; and &lt;/dict&gt;</p>
<p>This is what it should look like:</p>
<p><em>(Nano is the editor I use, but you can also use vi or vim too, depending what&rsquo;s installed + you might have Namely installed in a different directory)</em></p>
<pre line="1" lang="bash">Nazgul:~ yeri$ cd /Applications/Utilities/Namely.app/
Nazgul:Namely.app yeri$ nano -w Contents/Info.plist</pre>
<p>This is how my Info.plist looks like:</p>
<pre line="1" lang="HTML">< ?xml version="1.0" encoding="UTF-8">
< !DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
        <key>CFBundleDevelopmentRegion</key>
        <string>English</string>
        <key>CFBundleExecutable</key>
        <string>Namely</string>
        <key>CFBundleIconFile</key>
        <string>Namely</string>
        <key>CFBundleIdentifier</key>
        <string>com.asagoo.namely</string>
        <key>CFBundleInfoDictionaryVersion</key>
        <string>6.0</string>
        <key>CFBundlePackageType</key>
        <string>APPL</string>
        <key>CFBundleSignature</key>
        <string>????</string>
        <key>CFBundleVersion</key>
        <string>2.5.1</string>
        <key>NSMainNibFile</key>
        <string>MainMenu</string>
        <key>NSPrincipalClass</key>
        <string>NamelyApplication</string>
        <key>LSUIElement</key>
        <string>1</string>
</dict>
</plist></pre>
<p><em>Notice line 25 &amp; 26.</em></p>
<p>And that should be it &ndash; double click Namely to start it up, hit your keyboard shortcut, and it should pop up!</p>
<p style="text-align: center"><a href="https://static.yeri.be/2008/02/picture-1.png" target="_blank" title="Namely" rel="noopener"><img src="https://static.yeri.be/2008/02/picture-1.thumbnail.png" alt="Namely" /></a></p>
<p style="text-align: left" align="left">No icon in my dock. :)</p>
]]></content:encoded>
      <category>apple</category>
      <category>apple</category><category>leopard</category><category>mac os x</category>
    </item>
    
    <item>
      <title>Hide your Printer icon in Mac OS X.5</title>
      <link>https://yeri.be/hide-your-printer-icon-in-mac-os-x5/</link>
      <pubDate>Tue, 26 Feb 2008 15:24:17 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/hide-your-printer-icon-in-mac-os-x5/</guid>
      <description>&lt;p&gt;I recently came upon &lt;a href=&#34;http://www.macosxhints.com/article.php?story=20071030064059756&#34; target=&#34;_blank&#34;&gt;this post&lt;/a&gt;; enjoy it. ;)&lt;/p&gt;&#xA;&lt;p&gt;Makes life just that bit easier!&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>I recently came upon <a href="http://www.macosxhints.com/article.php?story=20071030064059756" target="_blank">this post</a>; enjoy it. ;)</p>
<p>Makes life just that bit easier!</p>
]]></content:encoded>
      <category>apple</category>
      <category>apple</category><category>leopard</category><category>mac os x</category>
    </item>
    
    <item>
      <title>Hamachi(X) on Leopard</title>
      <link>https://yeri.be/hamachi-on-leopard/</link>
      <pubDate>Sun, 17 Feb 2008 22:30:00 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/hamachi-on-leopard/</guid>
      <description>&lt;p&gt;When playing with &lt;a href=&#34;http://kismac.macpirate.ch/&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;KisMAC&lt;/a&gt;, I noticed something weird in my /var/log/system.log;&lt;/p&gt;&#xA;&lt;pre line=&#34;1&#34; lang=&#34;bash&#34;&gt;$date com.apple.launchd[1] (tuncfgd$pid) posix_spawnp(&#34;/usr/sbin/tuncfg&#34;, ...):&#xA;No such file or directory&#xA;$date com.apple.launchd[1] (tuncfgd$pid) Exited with exit code: 1&#xA;$date com.apple.launchd[1] (tuncfgd) Throttling respawn: Will start in 10 seconds&lt;/pre&gt;&#xA;&lt;p&gt;tun is (trying) to restart every 10 (!) seconds.&#xA;I tried updating &lt;a href=&#34;https://secure.logmein.com/products/hamachi/vpn.asp&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Hamachi&lt;/a&gt;&amp;rsquo;s &lt;a href=&#34;https://web.archive.org/web/20081015080644/http://www-user.rhrk.uni-kl.de:80/~nissler/tuntap/&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;tun/tap drivers&lt;/a&gt;, without any success. It kept restarting the process every 10 seconds.&lt;/p&gt;&#xA;&lt;p&gt;After a bit of Googling, it seemed to be a &lt;a href=&#34;https://web.archive.org/web/20080311120033/http://discussions.apple.com:80/thread.jspa?messageID=6571462&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;known problem&lt;/a&gt;. So I decided to uninstall Hamachi &amp;amp; the tun/tap drivers.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>When playing with <a href="http://kismac.macpirate.ch/" target="_blank" rel="noopener noreferrer">KisMAC</a>, I noticed something weird in my /var/log/system.log;</p>
<pre line="1" lang="bash">$date com.apple.launchd[1] (tuncfgd$pid) posix_spawnp("/usr/sbin/tuncfg", ...):
No such file or directory
$date com.apple.launchd[1] (tuncfgd$pid) Exited with exit code: 1
$date com.apple.launchd[1] (tuncfgd) Throttling respawn: Will start in 10 seconds</pre>
<p>tun is (trying) to restart every 10 (!) seconds.
I tried updating <a href="https://secure.logmein.com/products/hamachi/vpn.asp" target="_blank" rel="noopener noreferrer">Hamachi</a>&rsquo;s <a href="https://web.archive.org/web/20081015080644/http://www-user.rhrk.uni-kl.de:80/~nissler/tuntap/" target="_blank" rel="noopener noreferrer">tun/tap drivers</a>, without any success. It kept restarting the process every 10 seconds.</p>
<p>After a bit of Googling, it seemed to be a <a href="https://web.archive.org/web/20080311120033/http://discussions.apple.com:80/thread.jspa?messageID=6571462" target="_blank" rel="noopener noreferrer">known problem</a>. So I decided to uninstall Hamachi &amp; the tun/tap drivers.</p>
<pre line="1" lang="bash">sudo rm -r /usr/bin/hamachi
sudo rm -r  /usr/bin/hamachi-init
sudo rm -r  /usr/sbin/tuncfg
sudo launchctl unload /System/Library/LaunchDaemons/tuncfgd.plist
sudo rm -r /System/Library/LaunchDaemons/tuncfgd.plist
sudo rm -r /Applications/HamachiX</pre>
<p>This should solve the restarting problem. You might want to reboot to be sure.</p>
<p>When uninstalling the drivers, <a href="https://web.archive.org/web/20190808101001/http://hamachix.spaceants.net/" target="_blank" rel="noopener noreferrer">HamachiX</a> will be gone; there will be no way to use it. You can decide to ignore the spawning-processes, and keep using Hamachi as-is, but the spawning processes might slow down your computer. But HamachiX should work (although it often crashed here).</p>
<p>I tried reinstalling the tun/tap drivers, but the same happens. I guess I&rsquo;ll have to wait for a fix. :(</p>
<p>On the other side, I&rsquo;ve tried the <a href="https://web.archive.org/web/20120515123758/http://files.hamachi.cc/osx/README" target="_blank" rel="noopener noreferrer">console version</a> of Hamachi (so no HamachiX) which seems to be working fine (so far). Just missing out on the handy GUI. <em><a href="https://yeri.be/console-hamachi/" target="_blank" rel="noopener noreferrer">Edit</a></em></p>
]]></content:encoded>
      <category>apple</category><category>errors</category><category>networking</category><category>software</category>
      <category>apple</category><category>hamachi</category><category>hamachix</category><category>mac os x</category><category>tun/tap</category>
    </item>
    
    <item>
      <title>Mac OS X.5.2</title>
      <link>https://yeri.be/mac-os-x152/</link>
      <pubDate>Thu, 14 Feb 2008 00:45:05 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/mac-os-x152/</guid>
      <description>&lt;p&gt;Yes, &lt;a href=&#34;https://web.archive.org/web/20080315182840/http://docs.info.apple.com:80/article.html?artnum=307109&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;it&amp;rsquo;s here&lt;/a&gt;, finally!&lt;/p&gt;&#xA;&lt;p&gt;A 355 Mb patch, downloaded over &lt;a href=&#34;https://web.archive.org/web/20070911190337/http://www.vinddelaptop.be:80/?&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;poor UMTS/3G&lt;/a&gt; at school and in the train&amp;hellip; Took a while, but it&amp;rsquo;s finally installed.&lt;/p&gt;&#xA;&lt;p&gt;Some nice few features, like the fact you can now remove the semi-transparent effect on the menu bar (makes it nicer). They also added some nice stacks enhancements.&lt;/p&gt;&#xA;&lt;p&gt;A Time Machine icon is added in the menu bar too, just too bad you can&amp;rsquo;t make it just pop-up when it is actually backing up. I like keeping my menu bar clean. ;)&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>Yes, <a href="https://web.archive.org/web/20080315182840/http://docs.info.apple.com:80/article.html?artnum=307109" target="_blank" rel="noopener noreferrer">it&rsquo;s here</a>, finally!</p>
<p>A 355 Mb patch, downloaded over <a href="https://web.archive.org/web/20070911190337/http://www.vinddelaptop.be:80/?" target="_blank" rel="noopener noreferrer">poor UMTS/3G</a> at school and in the train&hellip; Took a while, but it&rsquo;s finally installed.</p>
<p>Some nice few features, like the fact you can now remove the semi-transparent effect on the menu bar (makes it nicer). They also added some nice stacks enhancements.</p>
<p>A Time Machine icon is added in the menu bar too, just too bad you can&rsquo;t make it just pop-up when it is actually backing up. I like keeping my menu bar clean. ;)</p>
<p>And well, a lot more bug fixes, but haven&rsquo;t noticed any of them, besides perhaps iCal that for some reason hides appointments, as if they were deleted. After changing weeks/refreshing the page, if reappears&hellip; (most iCal bugs were fixed in patch 15.1 for me)</p>
<p>The only thing they haven&rsquo;t fixed is the Workgroup problem&hellip; Still can&rsquo;t join one. If forgets the name of the workgroup I&rsquo;ve entered when I close the window&hellip; Yes, there are some workarounds, like copying the network-location and so on, but I haven&rsquo;t tried yet.</p>
<p>But hey, I&rsquo;m glad with this. :)</p>
<p>No big changes, but I hope Leopard&rsquo;s bugs are fixed now</p>
]]></content:encoded>
      <category>apple</category><category>software</category>
      <category>leopard</category><category>mac os x</category>
    </item>
    
    <item>
      <title>Parallels &#43; Ubuntu</title>
      <link>https://yeri.be/parallels-ubuntu/</link>
      <pubDate>Mon, 21 Jan 2008 19:00:25 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/parallels-ubuntu/</guid>
      <description>&lt;p&gt;I &lt;a href=&#34;https://yeri.be/bootcamp/&#34;&gt;finally got a reply&lt;/a&gt; from the Parallels support team. After using the &lt;a href=&#34;http://www.parallels.com/en/download/file/v3/en/GA/Parallels-Desktop-5582-Mac-en.dmg&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;alternate Parallels installer&lt;/a&gt; it finally works again! Even after rebooting Mac! &lt;em&gt;joy&lt;/em&gt;&lt;/p&gt;&#xA;&lt;p&gt;Before trying to run Vista/Bootcamp through Parallels again, I&amp;rsquo;m waiting till the end of my exams (Thursday). Don&amp;rsquo;t want to blow up my Windows install again when I&amp;rsquo;m in desperate need of it. ;)&lt;/p&gt;&#xA;&lt;p&gt;As usual with Parallels, creating/installing a new OS isn&amp;rsquo;t easy. Wether it crashes or you get a bunch of errors, you&amp;rsquo;re always up for a day full of fun!&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>I <a href="https://yeri.be/bootcamp/">finally got a reply</a> from the Parallels support team. After using the <a href="http://www.parallels.com/en/download/file/v3/en/GA/Parallels-Desktop-5582-Mac-en.dmg" target="_blank" rel="noopener noreferrer">alternate Parallels installer</a> it finally works again! Even after rebooting Mac! <em>joy</em></p>
<p>Before trying to run Vista/Bootcamp through Parallels again, I&rsquo;m waiting till the end of my exams (Thursday). Don&rsquo;t want to blow up my Windows install again when I&rsquo;m in desperate need of it. ;)</p>
<p>As usual with Parallels, creating/installing a new OS isn&rsquo;t easy. Wether it crashes or you get a bunch of errors, you&rsquo;re always up for a day full of fun!</p>
<p style="text-align: center"><a href="https://static.yeri.be/2008/01/ubuntu1.png" title="Ubuntu on Parallels (1)"><img src="https://static.yeri.be/2008/01/ubuntu1.thumbnail.png" alt="Ubuntu on Parallels (1)"/></a></p>
<p>Here is how I managed to install Ubuntu on Parallels:</p>
<ul>
    <li>First of all, make sure you're running the latest version of Parallels, especially if you're using Leopard.</li>
    <li>Step 2, download the  <strong>alternate</strong> Ubuntu installer. If you do not use the alternate installer, you'll end up with 'Display server errors' before being able to install Ubuntu. You can download Ubuntu <a href="http://www.ubuntu.com/download" target="_blank" rel="noopener noreferrer">here</a>. Select the approriate version (probably Desktop, latest version), and <strong>check "</strong><em>Check here if you need the alternate desktop CD. This CD does not include the Live CD, instead it uses a text-based installer</em>".<strong> </strong></li>
    <li>Step 3, create a new virtual machine, with OS Linux/Ubuntu.</li>
</ul>
<p style="text-align: center"><a href="https://static.yeri.be/2008/01/pu1.png" title="Parallels: Create a VM"><img src="https://static.yeri.be/2008/01/pu1.thumbnail.png" alt="Parallels: Create a VM"/></a><a href="https://static.yeri.be/2008/01/pu2.png" title="Parallels: Create a VM (2)"><img src="https://static.yeri.be/2008/01/pu2.thumbnail.png" alt="Parallels: Create a VM (2)"/></a></p>
<ul>
    <li>And follow the steps. I've added some more screenshots below. You can leave everything by default, that's as you wish.</li>
</ul>
<p style="text-align: center"><a href="https://static.yeri.be/2008/01/pu3.png" title="Parallels: Create a VM (3)"><img src="https://static.yeri.be/2008/01/pu3.thumbnail.png" alt="Parallels: Create a VM (3)"/></a><a href="https://static.yeri.be/2008/01/pu4.png" title="Parallels: Create a VM (4)"><img src="https://static.yeri.be/2008/01/pu4.thumbnail.png" alt="Parallels: Create a VM (4)"/></a><a href="https://static.yeri.be/2008/01/pu5.png" title="Parallels: Create a VM (5)"><img src="https://static.yeri.be/2008/01/pu5.thumbnail.png" alt="Parallels: Create a VM (5)"/></a><a href="https://static.yeri.be/2008/01/pu6.png" title="Parallels: Create a VM (6)"><img src="https://static.yeri.be/2008/01/pu6.thumbnail.png" alt="Parallels: Create a VM (6)"/></a><a href="https://static.yeri.be/2008/01/pu7.png" title="Parallels: Create a VM (7)"><img src="https://static.yeri.be/2008/01/pu7.thumbnail.png" alt="Parallels: Create a VM (7)"/></a><a href="https://static.yeri.be/2008/01/pu8.png" title="Parallels: Create a VM (8)"><img src="https://static.yeri.be/2008/01/pu8.thumbnail.png" alt="Parallels: Create a VM (8)"/></a></p>
<ul>
    <li>As CD-drive, select the Ubuntu (alternate) installer .iso-file.</li>
</ul>
<p style="text-align: center"><a href="https://static.yeri.be/2008/01/pu9.png" title="Parallels: Create a VM (9)"><img src="https://static.yeri.be/2008/01/pu9.thumbnail.png" alt="Parallels: Create a VM (9)"/></a></p>
<ul>
    <li>Click Finish and Start -- the Ubuntu installer will boot.</li>
    <li>You'll end up in Ubuntu's welcome screen. Select your keyboard layout (hit F3) and select (text) install</li>
    <li>Here too, follow the steps on the screen. It will ask for your language, country, and will propose a manual or automatic disk partition. I've selected automatic -- it creates a big ext3 root partition, and a swap partition.
The installer then asks if you agree with the partition table. Select Yes or No. (I've selected No - changed my root partition from ext3 to reiserfs, as I'm a big reiserfs fan.) When selecting Yes -- the table will be created and Ubuntu will start installing.</li>
    <li>After it's installed, Ubuntu will reboot. This is where you'll get your first error; <strong>ACPI: Unable to locate RSDP</strong>. This is a known error; you can safey ignore it.</li>
    <li>Ubuntu will continue to boot, and then pop up this error: <strong>The display server has been shut down about 6 times in the last 90 seconds</strong>, and will freeze. To fix this error, shut down and restart (or reset) the VM, and hit the ESC-key. Grub's bootloader menu will pop up if everything is right.</li>
    <li>Select the 2nd option (recovery). Ubuntu will boot up in text-mode-only and you should be logged in as root (if you're not, add 'sudo' in front of the commands below).</li>
    <li>In Parallels, click (on top of your screen) "Actions" -&gt; "Install Parallels Tools..." and type in following commands in the shell:
<ul>
    <li>    mount /media/cdrom</li>
    <li>    cd /media/cdrom</li>
    <li>./parallels-tools.run</li>
    <li>reboot</li>
</ul>
</li>
    <li>After Ubuntu has rebooted (in normal mode), you shouldn't receive any more errors, and you can enjoy Ubuntu on your mac!</li>
</ul>
<p style="text-align: center"><a href="https://static.yeri.be/2008/01/ubuntu_shutdown.png" title="Ubuntu on Parallels (2)"><img src="https://static.yeri.be/2008/01/ubuntu_shutdown.thumbnail.png" alt="Ubuntu on Parallels (2)"/></a></p>
]]></content:encoded>
      <category>apple</category><category>linux</category><category>virtualisation</category>
      <category>linux</category><category>ubuntu</category><category>mac os x</category><category>parallels</category>
    </item>
    
    <item>
      <title>Mac OS X &gt; Windows</title>
      <link>https://yeri.be/mac-os-x-windows/</link>
      <pubDate>Mon, 14 Jan 2008 14:29:40 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/mac-os-x-windows/</guid>
      <description>&lt;p&gt;When surfing the web, I came upon an old site we (read: &lt;a href=&#34;http://rootspirit.com&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Rootspirit&lt;/a&gt;) used to host.&lt;/p&gt;&#xA;&lt;p&gt;Nick, one of the posters, wrote an article I totally agree with. It really reflects why I&amp;rsquo;m using Mac instead of Windows now.&lt;/p&gt;&#xA;&lt;p&gt;Read about it &lt;a href=&#34;https://web.archive.org/web/20090527080020/http://www.mouseover.be:80/2008/01/13/wat-apples-mac-os-x-beter-maakt-dan-windows/&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;here&lt;/a&gt; (Dutch), or &lt;a href=&#34;http://www.google.com/translate?u=http%3A%2F%2Fwww.mouseover.be%2F2008%2F01%2F13%2Fwat-apples-mac-os-x-beter-maakt-dan-windows%2F&amp;amp;langpair=nl%7Cen&amp;amp;hl=en&amp;amp;ie=UTF8&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;here&lt;/a&gt; (Google translated, far from understandable)&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>When surfing the web, I came upon an old site we (read: <a href="http://rootspirit.com" target="_blank" rel="noopener noreferrer">Rootspirit</a>) used to host.</p>
<p>Nick, one of the posters, wrote an article I totally agree with. It really reflects why I&rsquo;m using Mac instead of Windows now.</p>
<p>Read about it <a href="https://web.archive.org/web/20090527080020/http://www.mouseover.be:80/2008/01/13/wat-apples-mac-os-x-beter-maakt-dan-windows/" target="_blank" rel="noopener noreferrer">here</a> (Dutch), or <a href="http://www.google.com/translate?u=http%3A%2F%2Fwww.mouseover.be%2F2008%2F01%2F13%2Fwat-apples-mac-os-x-beter-maakt-dan-windows%2F&amp;langpair=nl%7Cen&amp;hl=en&amp;ie=UTF8" target="_blank" rel="noopener noreferrer">here</a> (Google translated, far from understandable)</p>
]]></content:encoded>
      <category>apple</category>
      <category>apple</category><category>windows</category><category>mac os x</category>
    </item>
    
    <item>
      <title>IP calc</title>
      <link>https://yeri.be/ip-calc/</link>
      <pubDate>Sun, 13 Jan 2008 10:28:13 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/ip-calc/</guid>
      <description>&lt;p&gt;For those who have to work with IP&amp;rsquo;s and subnets, I have only one word; &lt;a href=&#34;http://www.bitcricket.com/ip-subnet-calculator.html&#34; target=&#34;_blank&#34;&gt;Bitcricket IP Calculator&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;It converts decimal IP&amp;rsquo;s into binary or hexadecimal IP&amp;rsquo;s (and, the other way around too); it gives you the IP class; it calculates subnets, with the number of hosts/subnet, and gives you the number of host bits; and many more!&lt;/p&gt;&#xA;&lt;p&gt;Shiny tool to quickly do subnet calculations. Has proven it&amp;rsquo;s use when doing the Cisco CCNA tests. ;)&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>For those who have to work with IP&rsquo;s and subnets, I have only one word; <a href="http://www.bitcricket.com/ip-subnet-calculator.html" target="_blank">Bitcricket IP Calculator</a>.</p>
<p>It converts decimal IP&rsquo;s into binary or hexadecimal IP&rsquo;s (and, the other way around too); it gives you the IP class; it calculates subnets, with the number of hosts/subnet, and gives you the number of host bits; and many more!</p>
<p>Shiny tool to quickly do subnet calculations. Has proven it&rsquo;s use when doing the Cisco CCNA tests. ;)</p>
]]></content:encoded>
      <category>apple</category><category>software</category>
      <category>bitcricket</category><category>mac os x</category>
    </item>
    
    <item>
      <title>Bootcamp</title>
      <link>https://yeri.be/bootcamp/</link>
      <pubDate>Sun, 13 Jan 2008 00:40:31 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/bootcamp/</guid>
      <description>&lt;p&gt;For a few courses I&amp;rsquo;m following at school, I need to be able to run Windows.&lt;/p&gt;&#xA;&lt;p&gt;As I&amp;rsquo;m owning a Macbook Pro (with Leopard) that shouldn&amp;rsquo;t have to be any problem using &lt;a href=&#34;https://support.apple.com/boot-camp&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Bootcamp&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;I created a 5 Gb partition and installed WinXP a few weeks ago. So far all fine.&lt;/p&gt;&#xA;&lt;p&gt;As I don&amp;rsquo;t really like to reboot into XP (I can&amp;rsquo;t access my mails, don&amp;rsquo;t have my IRC client, all my Camino tabs are closed, &amp;hellip;) I tried Parallels.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>For a few courses I&rsquo;m following at school, I need to be able to run Windows.</p>
<p>As I&rsquo;m owning a Macbook Pro (with Leopard) that shouldn&rsquo;t have to be any problem using <a href="https://support.apple.com/boot-camp" target="_blank" rel="noopener noreferrer">Bootcamp</a>.</p>
<p>I created a 5 Gb partition and installed WinXP a few weeks ago. So far all fine.</p>
<p>As I don&rsquo;t really like to reboot into XP (I can&rsquo;t access my mails, don&rsquo;t have my IRC client, all my Camino tabs are closed, &hellip;) I tried Parallels.</p>
<p>Parallels, at first, was a real disappointment. It crashed my Mac OS X several times. It was only, just a few days later, when they released a patch to solve all Leopard issues, that I started to enjoy it.</p>
<p>Running all my programs from Parallels (instead of rebooting), I never noticed my Bootcamp WinXP was actually broken. As exams were approaching (I&rsquo;m not allowed to run a virtualization of Windows, because my school&rsquo;s key and network loggers won&rsquo;t work like intended, not that I care that much, but they do ;) ), I rebooted for the first time in weeks to my Bootcamp XP, and noticed the <a href="http://kb.parallels.com/entry/63/526/0/" target="_blank" rel="noopener noreferrer">famous hal.dll error</a> (or <a href="http://www.google.com/search?q=hal.dll%20parallels%20bootcamp" target="_blank" rel="noopener noreferrer">Google it</a>, you&rsquo;ll see why it&rsquo;s famous).</p>
<p>I repaired my Windows XP install (as explained in Parallels&rsquo; knowledge base), and that indeed fixed the problem&hellip; of Bootcamp&hellip; My parallels was now broken (hal.dll error for Parallels, instead of Bootcamp). Trying to recreate a new Parallels virtual disk for bootcamp, or even reinstall the program, &hellip; All failed. (There should be bootflags to edit, and force Parallels to use a different hal.dll, well, read about it <a href="http://forum.parallels.com/showthread.php?p=80712" target="_blank" rel="noopener noreferrer">here</a>, it&rsquo;s no longer useful for me.)</p>
<p>Googling and searching their forums, no luck, no one had a fixed solution. Only &rsquo;try this&rsquo; and &rsquo;try that&rsquo;. (To follow the above howto I&rsquo;ve posted, you need to be able to (re)install Parallels, and by the time I found that howto I wasn&rsquo;t even able to do that; Parallels froze during installation.) I e-mailed the Parallels support team with my problem, and the form said they&rsquo;d reply within 3 working days&hellip; It has been over 2 weeks, and I&rsquo;m still waiting.</p>
<p>I then noticed that my Mac/Apple keyboard driver weren&rsquo;t working in Bootcamp-XP, some chars like #, @, &gt; and so forth weren&rsquo;t working (or at least the layout didn&rsquo;t match with my Apple keyboard). I tried to reinstall the Bootcamp drivers (located on my Leopard DVD), they all failed to install (no error message&hellip;). Being quite fed up with it, I decided to reinstall XP (without formatting, just overwriting my Windows dir). And here too, the drivers failed to install, with no specific error message&hellip; Took the required backups, formatted, and had the wild idea to install Vista.</p>
<p>Booted from the Vista install DVD, and came to the conclusion I needed at least 7 Gb disk space to <em>install</em> Vista (having a 5 Gb partition, this wouldn&rsquo;t work). Back in os X I deleted the Windows partition, and tried to recreate a new (10 Gb) one.</p>
<p>And&hellip; This error came up: &ldquo;<a href="http://forums.macrumors.com/showthread.php?t=191729" target="_blank" rel="noopener noreferrer">Your disk cannot be partitioned because some files cannot be moved</a>&rdquo; (<a href="https://web.archive.org/web/20090206232130/http://macosx.com:80/forums/boot-camp-os-virtualization-mac/276315-boot-camp-1-1-won-t-partition-because-some-files-cannot-moved.html" target="_blank" rel="noopener noreferrer">other link</a>). I now started to panic, as I had less then a week to fix this problem. Following a few try-this-and-try-that&rsquo;s, I removed a few big files from my disk (someone even said to remove Office 2004, but I wasn&rsquo;t about to do that), I tried to repair my disk (from the Leopard DVD), I tried smaller partitions, even 5 Gb wouldn&rsquo;t work, and then, when all hope was almost lost, I tried one last thing; &lsquo;<strong>Zero Out Data</strong>&rsquo;. This will overwrite all deleted files (well, marked for deletion by your disk, but still written on it, so this data can theoretically be recovered) with zero&rsquo;s.</p>
<p style="text-align: center;"><img src="https://static.yeri.be/2008/01/disk_utility-zero_out_data.jpg" alt="Disk Utility - Zero Out Data"/></p>
<p>And this too, has to be done from the Mac OS X install CD/DVD.</p>
<p>After, well, about 40 minutes Disk Utility was done, I rebooted right into Leopard, and retried to create a 5 Gb partition&hellip; And guess what?! It worked!</p>
<p>I deleted that partition again (5 Gb being to small), and recreated a 15 Gb partition, and this too worked with no problems.</p>
<p>I now happily run Vista on my Macbook Pro, and so far I can&rsquo;t complain.</p>
<p>The only thing I haven&rsquo;t been able to fix is Parallels, I can&rsquo;t even reinstall it (it freezes during install). But heck with it, I&rsquo;ve lost enough sweat already to fix Bootcamp.</p>
]]></content:encoded>
      <category>apple</category><category>errors</category><category>virtualisation</category><category>windows</category>
      <category>bootcamp</category><category>windows</category><category>mac os x</category>
    </item>
    
  </channel>
</rss>
