<?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>Macbook – Yeri Tiete</title>
    <link>https://yeri.be/tag/macbook/</link>
    <description>Yeri Tiete&#39;s blog</description>
    <language>en</language>
    <copyright>© Yeri Tiete</copyright>
    <lastBuildDate>Tue, 05 Sep 2023 17:07:44 +0200</lastBuildDate>
    <atom:link href="https://yeri.be/tag/macbook/index.xml" rel="self" type="application/rss+xml" />
    
    <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>Macbook Air vs Macbook Pro vs older Macbook Pro(s)</title>
      <link>https://yeri.be/macbook-air-vs-macbook-pro-vs-older-macbook-pros/</link>
      <pubDate>Wed, 13 Nov 2013 11:45:09 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/macbook-air-vs-macbook-pro-vs-older-macbook-pros/</guid>
      <description>&lt;p&gt;So, I had to &lt;a href=&#34;https://yeri.be/macbook-air-vs-macbook-pro&#34;&gt;migrate from a Pro to an Air a few weeks ago&lt;/a&gt;. My Macbook got repaired (out of warranty, for 600ish damn euro) and I sold it. I waited for the new line of Macbooks and ordered myself a &lt;a href=&#34;https://yeri.be/my-new-macbook-pro-arrived&#34;&gt;new one&lt;/a&gt;. I picked the Retina version.&lt;/p&gt;&#xA;&lt;p&gt;Just as with my previous Macbook Pro, I went for overkill in the hope to keep it as long as possible.&lt;/p&gt;&#xA;&lt;p&gt;Except for a faulty GPU, my previous Mac was actually still very capable, and I would not have thought about getting rid of it any time soon.&#xA;It was still smooth and blazing fast. I had quite some bad experience with my first Macbook Pro (see below, SATA and 2Gb RAM); that device was already crippled after a few weeks of usage. Annoyingly slow and laggish.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>So, I had to <a href="https://yeri.be/macbook-air-vs-macbook-pro">migrate from a Pro to an Air a few weeks ago</a>. My Macbook got repaired (out of warranty, for 600ish damn euro) and I sold it. I waited for the new line of Macbooks and ordered myself a <a href="https://yeri.be/my-new-macbook-pro-arrived">new one</a>. I picked the Retina version.</p>
<p>Just as with my previous Macbook Pro, I went for overkill in the hope to keep it as long as possible.</p>
<p>Except for a faulty GPU, my previous Mac was actually still very capable, and I would not have thought about getting rid of it any time soon.
It was still smooth and blazing fast. I had quite some bad experience with my first Macbook Pro (see below, SATA and 2Gb RAM); that device was already crippled after a few weeks of usage. Annoyingly slow and laggish.</p>
<p>So I hope to be able to do 4+ years with this one. This was my Macbook Air (with a SDD):</p>
<p><a href="https://static.yeri.be/2013/11/mba.png"><img class="alignnone size-full wp-image-5616 aligncenter" alt="mba" src="https://static.yeri.be/2013/11/mba.png" width="591" height="338" /></a></p>
<p>These are my frustrations/comments now that I&rsquo;m back on a Pro:</p>
<ul>
	<li>FFFFFFUUUUU for not having a builtin ethernet port. Same for the Air. I have had SO much shit not having a simple ethernet port (to test UTP, and for <a href="http://flatturtle.com" target="_blank" rel="noopener noreferrer">FlatTurtle</a> demos). It's unbelievable how much I still rely on a simple ethernet port. Needless to say I got a thunderbolt-to-ethernet adapter (another 20 or so € to Apple).</li>
	<li>CD burner. I'll miss you. Like, twice per year, I still burn an iso to CD to boot something or to install Linux. I'll have to get a big/decent USB drive and start using that I guess.</li>
	<li>WHY OH WHY DID YOU KILL THE REMOTE CONTROL. It already bothered me the Air didn't have it... It was very useful with VLC and watching movies. You'll be greatly missed.</li>
	<li>It's the first time I'm on Retina. It looks better. But it seems the actual resolution is the same as the Air (WTF!) and lower than the previous Macbook Pro (WTF!).
I had the high-res MBP previously: "<em>Optional 15.4-inch (diagonal) LED-backlit widescreen display with 1680 by 1050 pixels (glossy or antiglare)</em>"; I miss that resolution :( whenever I'm doing something on my mom's Mac I really instantly notice the huge extra room. Now I could turn off retina and go for the higher resolution but... sigh...</li>
	<li>Next to my Air, now that I got used to the size, it looks huge.
But the more I work with it, the more I like my bigger screen and the somewhat more manly/robust size. I've also noticed I've been using my 2nd display a lot less (but this is also partly due to all that crap on my desk at the moment, and the temperature dropping in my study room with the cold weather).</li>
	<li>Why did you have to change Magsafe adapter size. I ordered a Magsafe1 to Magsafe2 adapter from Techdata. another 7 euro (excl tax) down the drain.</li>
	<li>It's surprisingly thin. Why did no other hardware maker beat them to it?</li>
	<li>THANK YOU APPLE FOR STILL INCLUDING A SD CARD SLOT. Yay for Raspberry Pi and other hacking.</li>
	<li>The case no longer slices the wrists. It has somewhat been rounded.</li>
	<li>Bluetooth + WiFi seems bugged (random packet loss (like 20-30 packets) and/or high latency. Turning off Bluetooth insta fixes the problem. Reconnecting to WiFi also fixes it (and keeping bluetooth on). This is shit. Don't blame it on the router or signal strength, my previous MBP never had this problem, and neither did the Air.</li>
	<li>Every connector at the left side of this Macbook Pro is too close to eachother. I have line-out, USB disk, my Mini display port and Magsafe2. Annoying when I need to just unplug the USB drive.</li>
	<li>I managed to get 9h30 out of the battery. That's a normal person's work day (yeah, not quite in startups). And still had 17% to spare. While admittedly, I wasn't doing that much on it (60-70% brightness, Sublime Text, Terminal, Git, SSH, some very light mailing &amp; browsing and waiting for my desktop to finish bootstrapping while watching Star Wars semi actively), it's still quite remarkable. If a i7 can do this, why can't a stupid smartphone survive a day on 3G?</li>
	<li>When having to charge your battery though, and while sitting '<a href="https://www.google.com/search?q=kleermakerszit&amp;source=lnms&amp;tbm=isch&amp;sa=X&amp;ei=jqp4UuDoA8_KswalxoCAAQ&amp;ved=0CAkQ_AUoAQ&amp;biw=1440&amp;bih=747" target="_blank" rel="noopener noreferrer">legged</a>' with the Macbook on my lap, the Magsafe2 (having its <a href="http://images.macworld.com/images/article/2012/06/magsafe-283864.jpg" target="_blank" rel="noopener noreferrer">cord not longer aligned</a> to the laptop, and being longer) causes my Magsafe to always disconnect. I didn't have this problem with the previous Magsafe (version two of Magsafe1)</li>
</ul>
This is my new laptop:
<p><a href="https://static.yeri.be/2013/11/mbp3.png"><img class="wp-image-5617 aligncenter" alt="mbp3" src="https://static.yeri.be/2013/11/mbp3-1024x583.png" width="614" height="350" /></a></p>
<p>And for the sake of completion: (A G4 powerbook, but don&rsquo;t have any system info of that one; although it stills runs and is used by my dad).</p>
<p>Macbook Pro mid or late 2007 (7200 rpm, but it has always been a damn slow machine):</p>
<p><a href="https://static.yeri.be/2013/11/mbp1.png"><img class="alignnone size-full wp-image-5620 aligncenter" alt="mbp1" src="https://static.yeri.be/2013/11/mbp1.png" width="593" height="340" /></a></p>
<p>Macbook pro mid 2010 (my mom got it now):</p>
<p style="text-align: center;"><a href="https://static.yeri.be/2013/11/Capture-d’écran-2013-11-10-à-16.24.19.png"><img class="alignnone size-full wp-image-5678" alt="Capture d’écran 2013-11-10 à 16.24.19" src="https://static.yeri.be/2013/11/Capture-d’écran-2013-11-10-à-16.24.19.png" width="591" height="340" /></a></p>
]]></content:encoded>
      <category>apple</category>
      <category>macbook</category>
    </item>
    
    <item>
      <title>My new Macbook Pro arrived</title>
      <link>https://yeri.be/my-new-macbook-pro-arrived/</link>
      <pubDate>Wed, 30 Oct 2013 18:16:30 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/my-new-macbook-pro-arrived/</guid>
      <description>&lt;p&gt;&amp;hellip; Restoring from TimeMachine&amp;hellip; 1 hour and 16 minutes remaining&amp;hellip;&lt;/p&gt;&#xA;&lt;p&gt;It took a weird route (Shanghai to Korea to Kazakhstan?!) but I finally got it. Yayyies.&lt;/p&gt;&#xA;&lt;p style=&#34;text-align: center;&#34;&gt;&lt;a href=&#34;https://static.yeri.be/2013/10/ups.png&#34;&gt;&lt;img class=&#34;alignnone  wp-image-5594 aligncenter&#34; alt=&#34;ups&#34; src=&#34;https://static.yeri.be/2013/10/ups.png&#34; width=&#34;566&#34; height=&#34;429&#34; /&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p style=&#34;text-align: left;&#34;&gt;Later a blog post about what it&#39;s like to &lt;a href=&#34;https://yeri.be/macbook-air-vs-macbook-pro&#34;&gt;migrate&lt;/a&gt; from a Macbook Air to a Macbook Pro again.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>&hellip; Restoring from TimeMachine&hellip; 1 hour and 16 minutes remaining&hellip;</p>
<p>It took a weird route (Shanghai to Korea to Kazakhstan?!) but I finally got it. Yayyies.</p>
<p style="text-align: center;"><a href="https://static.yeri.be/2013/10/ups.png"><img class="alignnone  wp-image-5594 aligncenter" alt="ups" src="https://static.yeri.be/2013/10/ups.png" width="566" height="429" /></a></p>
<p style="text-align: left;">Later a blog post about what it's like to <a href="https://yeri.be/macbook-air-vs-macbook-pro">migrate</a> from a Macbook Air to a Macbook Pro again.</p>
]]></content:encoded>
      <category>apple</category>
      <category>macbook</category>
    </item>
    
    <item>
      <title>Macbook Air vs Macbook Pro</title>
      <link>https://yeri.be/macbook-air-vs-macbook-pro/</link>
      <pubDate>Tue, 24 Sep 2013 13:07:43 +0200</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/macbook-air-vs-macbook-pro/</guid>
      <description>&lt;p&gt;While my 2010 Macbook Pro is at the Apple Repair shop for a (most likely) &lt;a href=&#34;https://web.archive.org/web/20140912040858/http://support.apple.com/kb/TS4088&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;faulty GPU&lt;/a&gt; I borrowed a Macbook Air from &lt;a href=&#34;https://web.archive.org/web/20190123221821/https://rentalvalue.be/&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;Christophe&lt;/a&gt;. These are my random thoughts about it:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;    &lt;li&gt;It&#39;s light. Very light. My bag is now too big and I can barely feel it hanging at my shoulder.&lt;/li&gt;&#xA;    &lt;li&gt;It&#39;s light. Very light. I used to, when moving around (for example when testing WiFi, changing desks, going to a meeting, etc), jungle my Macbook Pro on one hand, with the display open and everything, and it would stay on my three or four fingers very nicely. With the Air, I can&#39;t just move around like this as even the wind/air might knock it off my hand. Paper aeroplane comes into my mind.&lt;/li&gt;&#xA;    &lt;li&gt;The CPU is somewhere near the letters 1-2-3-A-Z-E-Q-S (Azerty keyboard). I tend to let my fingers rest between the keys on the bare metal. This can get quite hot. I have never noticed this with the MBP.&lt;/li&gt;&#xA;    &lt;li&gt;The keyboard of the Air is better. Smoother. More fun to hit. Nicer muffled sound. Hard to explain. Perhaps also because this keyboard hasn&#39;t been used as often.&lt;/li&gt;&#xA;    &lt;li&gt;It stills seems ... breakable. Not as robust.&lt;/li&gt;&#xA;    &lt;li&gt;I don&#39;t like the bezel. WHY APPLE WHY? It&#39;s metal instead of the nicer black glass that covers everything.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p style=&#34;text-align: center;&#34;&gt;&lt;a href=&#34;https://static.yeri.be/2013/09/bezel-air.png&#34;&gt;&lt;img class=&#34;alignnone size-medium wp-image-5322&#34; alt=&#34;bezel-air&#34; src=&#34;https://static.yeri.be/2013/09/bezel-air-300x288.png&#34; width=&#34;300&#34; height=&#34;288&#34; /&gt;&lt;/a&gt;  &lt;a href=&#34;https://static.yeri.be/2013/09/bezel-mbp.png&#34;&gt;&lt;img class=&#34;alignnone size-medium wp-image-5323&#34; alt=&#34;bezel-mbp&#34; src=&#34;https://static.yeri.be/2013/09/bezel-mbp-170x300.png&#34; width=&#34;170&#34; height=&#34;300&#34; /&gt;&lt;/a&gt;&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>While my 2010 Macbook Pro is at the Apple Repair shop for a (most likely) <a href="https://web.archive.org/web/20140912040858/http://support.apple.com/kb/TS4088" target="_blank" rel="noopener noreferrer">faulty GPU</a> I borrowed a Macbook Air from <a href="https://web.archive.org/web/20190123221821/https://rentalvalue.be/" target="_blank" rel="noopener noreferrer">Christophe</a>. These are my random thoughts about it:</p>
<ul>
    <li>It's light. Very light. My bag is now too big and I can barely feel it hanging at my shoulder.</li>
    <li>It's light. Very light. I used to, when moving around (for example when testing WiFi, changing desks, going to a meeting, etc), jungle my Macbook Pro on one hand, with the display open and everything, and it would stay on my three or four fingers very nicely. With the Air, I can't just move around like this as even the wind/air might knock it off my hand. Paper aeroplane comes into my mind.</li>
    <li>The CPU is somewhere near the letters 1-2-3-A-Z-E-Q-S (Azerty keyboard). I tend to let my fingers rest between the keys on the bare metal. This can get quite hot. I have never noticed this with the MBP.</li>
    <li>The keyboard of the Air is better. Smoother. More fun to hit. Nicer muffled sound. Hard to explain. Perhaps also because this keyboard hasn't been used as often.</li>
    <li>It stills seems ... breakable. Not as robust.</li>
    <li>I don't like the bezel. WHY APPLE WHY? It's metal instead of the nicer black glass that covers everything.</li>
</ul>
<p style="text-align: center;"><a href="https://static.yeri.be/2013/09/bezel-air.png"><img class="alignnone size-medium wp-image-5322" alt="bezel-air" src="https://static.yeri.be/2013/09/bezel-air-300x288.png" width="300" height="288" /></a>  <a href="https://static.yeri.be/2013/09/bezel-mbp.png"><img class="alignnone size-medium wp-image-5323" alt="bezel-mbp" src="https://static.yeri.be/2013/09/bezel-mbp-170x300.png" width="170" height="300" /></a></p>
<ul>
    <li>The metal at the touch pad doesn't <a href="https://web.archive.org/web/20190414014807/http://dustwell.com:80/macbook-pro-sharp-edge.html" target="_blank" rel="noopener noreferrer">slice my wrists</a> all the time. Which is good I guess. My Macbook Pro's metal is also damaged there. I don't know how. It's more damaged at the right hand side, and I keep my watch at my left hand side, so it can't be that.</li>
    <li>The smaller screen (13" instead of 15") doesn't bother me.</li>
    <li>An i5 1.7GHz with 4Gb RAM is fast enough (my MBP is an i7 something with 8Gb ram). SSD is thus key to the speed.</li>
    <li>I can't really say if the speakers are worse or not.</li>
    <li>The resolution is lower. Which is annoying in some cases.</li>
    <li>There a big price difference. I believe the Air was a little over 1000 euro. My Macbook Pro was apparently (with an Apple mouse) 3067 or something euro (and with 21% vat).</li>
    <li>My gf also has (actually entirely the same) Air. I feel that one day I'll leave to a client or the office with the wrong Mac.</li>
    <li>It's still the same Magsafe. Which is good. Very good. Why-oh-why apple, did you decide to make a thinner/different one. You're such as bitch.</li>
</ul>
<p style="text-align: center;"></p>
]]></content:encoded>
      <category>apple</category><category>hardware</category>
      <category>macbook</category>
    </item>
    
  </channel>
</rss>
