<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Typpz Blog</title>
	
	<link>http://blog.typpz.com</link>
	<description>tips, tutorials, guides, news and reviews</description>
	<lastBuildDate>Sun, 09 Jun 2013 17:37:52 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Typpz" /><feedburner:info uri="typpz" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license><image><link>http://blog.typpz.com</link><url>http://blog.typpz.com/wp-includes/images/zfeed.png</url><title>Typpz Zlogo</title></image><feedburner:emailServiceId>Typpz</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>iOS SDK: animations and effects in UIImageViews</title>
		<link>http://feedproxy.google.com/~r/Typpz/~3/qzyIYyEAH3o/</link>
		<comments>http://blog.typpz.com/2013/06/09/ios-sdk-animations-and-effects-in-uiimageviews/#comments</comments>
		<pubDate>Sun, 09 Jun 2013 17:18:20 +0000</pubDate>
		<dc:creator>Nikos M.</dc:creator>
				<category><![CDATA[Apple Mac]]></category>
		<category><![CDATA[iPhone programming]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://blog.typpz.com/?p=658</guid>
		<description><![CDATA[iOS SDK is well known among mobile app developers for its elegant APIs that make creating polished and crafting UI experiences a piece of cake. In this tutorial I will present some small (and easy to implement) code snippets for&#8230; ]]></description>
				<content:encoded><![CDATA[<div id="attachment_668" class="wp-caption aligncenter" style="width: 605px"><img class="size-full wp-image-668" alt="xcode" src="http://blog.typpz.com/wp-content/Screen-Shot-2013-06-09-at-8.23.20-μ.μ..png" width="595" height="267" /><p class="wp-caption-text">UIImageView.layer animations and effects</p></div>
<p>iOS SDK is well known among mobile app developers for its elegant APIs that make creating polished and crafting UI experiences a piece of cake. In this tutorial I will present some small (and easy to implement) code snippets for adding effects to UIImageViews. Note that these effects are added on the fly while the app is running, which translates to more load for the cpu, so use when needed (Latest iPhone models like 4s and 5 won&#8217;t have a problem in most cases, but it is not good practice to render a 200+ row UITable with an image full of animations and QuarzCore effects in each cell.</p>
<p>So here you are. All you need is an empty Xcode project with a ViewController class. Add an image to your .xib, hook it up to with the appropriate property in the code.</p>
<p>Case 1: Apply shadow to a UIImageView</p>
<blockquote><p> [UIView animateWithDuration:1.5f animations:^(void) {</p>
<div id="LC41">        self.effectedImage.alpha = 1;</div>
<div id="LC42">        self.effectedImage.layer.shadowOpacity = 0.8;</div>
<div id="LC43">        self.effectedImage.layer.shadowOffset = CGSizeMake(0, 0);</div>
<div id="LC44">        self.effectedImage.layer.shadowRadius = 5;</div>
<div id="LC45">        self.effectedImage.layer.shadowColor = [UIColor blackColor].CGColor;</div>
<div id="LC47">    }];</div>
</blockquote>
<div>The code is self explanatory, we create an animation block and we set the animation duration (float number, that&#8217;s why we have the f at the end.). I&#8217;ve named the UIImageView effectedImage. Inside the block we add what we want to perform in during the animation. Here we say that we want the imageView.alpha to be 1 (which means that the opacity will be 100%. For 80% opacity we should set the alpha to 0.8). Next we set the shadowOpacity and the shadowOffset. Next up is shadowRadius, which sets the sharpness of our shadow. I&#8217;ve set it to 5 which adds some blur effect to our shadow (just to the shadow not to the UIImageView). Finally we set the shadowColor. You can use any UIColor combination you like here as everywhere else in iOS programming.</div>
<p>Case 2: Image transition</p>
<blockquote><p>    int i = 0;</p>
<div id="LC60">    self.effectedImage.image = [UIImage imageNamed:(i % 2) ? @"typpzflatlogo" : @"oldtyppzlogo"];</div>
<div id="LC62">    CATransition *transition = [CATransition animation];</div>
<div id="LC63">    transition.duration = 1.0f;</div>
<div id="LC64">    transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];</div>
<div id="LC65">    transition.type = kCATransitionFade;</div>
<div id="LC67">    [self.effectedImage.layer addAnimation:transition forKey:nil];</div>
</blockquote>
<div>Here we initialize an integer, which will act as the &#8220;identifier&#8221; of the current image. Next we initialize an CATransition, again set the duration. After that we set the timingFuction. timingFunction defines how the transition will be applied. We use predefined functions. Here I chose kCAMediaTimingFunctionEaseInEaseOut which as Apple&#8217;s developer library mentions: <em>Specifies ease-in ease-out pacing. An ease-in ease-out animation begins slowly, accelerates through the middle of its duration, and then slows again before completing. </em>Finally we set the transition.type, here a kCATransitionFade (fade in/out is a classic transition for images). Finally we add our animation to the UIImageView.layer and we are done. I&#8217;ve left the forKey:nil because here we apply a kCATransition. In general only one animation per unique key is added to the layer but the special key kCATransition is automatically used for transition animations, so you may specify <code>nil</code> for this parameter.</div>
<p>Case 3: Spin</p>
<div>
<blockquote><p>       CABasicAnimation *spin;</p>
<div id="LC85">        spin = [CABasicAnimation animationWithKeyPath:@"transform.rotation"];</div>
<div id="LC86">        spin.fromValue = [NSNumber numberWithFloat:0];</div>
<div id="LC87">        spin.toValue = [NSNumber numberWithFloat:(2*M_PI)];</div>
<div id="LC88">        spin.duration = 0.8; // How fast should the image spin</div>
<div id="LC89">        spin.repeatCount = HUGE_VALF; // HUGE_VALF means infinite repeatCount;</div>
<div id="LC91">        [self.effectedImage.layer addAnimation:spin forKey:@"Spin"];</div>
</blockquote>
<div>Here the code is pretty easy if you read the previous explanations. In repeatCount we set HUGE_VALF which means that we want the repeating of the animation to be infinite. Otherwise a float value should be set.</div>
<div></div>
<div>Note that all animations and effects are referencing the CALayer class, so we apply them to the UIImageView.layer and not directly to UIImageView. Many times I see casting UIViews and applying animations there, which is bad coding practice (and leads to a warning from the compiler). A bad example is this:</div>
<blockquote>
<div>UIView *myView = (UIView *)self.view;</div>
<div>[myView addAnimation:transition forKey:nil];</div>
</blockquote>
<div>The nice approach to this would be just applying the animation to the view&#8217;s layer:</div>
<blockquote>
<div>[myView.layer addAnimation:transition forKey:nil];</div>
</blockquote>
<div>The code I used for this tutorial can be found on <a title="psy2k/ImageEffects" href="http://github.com/psy2k/ImageEffects" target="_blank">github</a>. Feel free to use it of course and contribute if you like. Note that in the github project I have also used an animation called @&#8221;rippleEffect&#8221;. As you see this is not a documented type like the kCATransitionFade, which means that this snippet now works, but Apple may modify it in the future, so it&#8217;s not a good idea to use it in a production app.</div>
<div></div>
</div>
<p>&nbsp;</p>
</div>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="tall" count="1" href="http://blog.typpz.com/2013/06/09/ios-sdk-animations-and-effects-in-uiimageviews/"></g:plusone></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Typpz?a=qzyIYyEAH3o:k8ZZaF3TFzE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Typpz?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=qzyIYyEAH3o:k8ZZaF3TFzE:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Typpz?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=qzyIYyEAH3o:k8ZZaF3TFzE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Typpz?i=qzyIYyEAH3o:k8ZZaF3TFzE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=qzyIYyEAH3o:k8ZZaF3TFzE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Typpz?i=qzyIYyEAH3o:k8ZZaF3TFzE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=qzyIYyEAH3o:k8ZZaF3TFzE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Typpz?i=qzyIYyEAH3o:k8ZZaF3TFzE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=qzyIYyEAH3o:k8ZZaF3TFzE:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Typpz?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=qzyIYyEAH3o:k8ZZaF3TFzE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Typpz?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Typpz/~4/qzyIYyEAH3o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.typpz.com/2013/06/09/ios-sdk-animations-and-effects-in-uiimageviews/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.typpz.com/2013/06/09/ios-sdk-animations-and-effects-in-uiimageviews/</feedburner:origLink></item>
		<item>
		<title>MacBook Air (Mid 2012) review</title>
		<link>http://feedproxy.google.com/~r/Typpz/~3/36GK7TFyF2A/</link>
		<comments>http://blog.typpz.com/2013/06/01/macbook-air-mid-2012-review/#comments</comments>
		<pubDate>Sat, 01 Jun 2013 09:25:09 +0000</pubDate>
		<dc:creator>Nikos M.</dc:creator>
				<category><![CDATA[Apple Mac]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[macbook]]></category>
		<category><![CDATA[macbook air]]></category>

		<guid isPermaLink="false">http://blog.typpz.com/?p=616</guid>
		<description><![CDATA[After about 5 years, the time has come to change my MacBook Aluminum (first aluminum unibody macbook series). My new machine is a mid-2012 MacBook Air with 8gigs of RAM. My old machine keeps working fine -only thing I upgraded&#8230; ]]></description>
				<content:encoded><![CDATA[<div id="attachment_617" class="wp-caption aligncenter" style="width: 1010px"><img class="size-full wp-image-617" alt="Macbook Air 13&quot;" src="http://blog.typpz.com/wp-content/air2.jpg" width="1000" height="485" /><p class="wp-caption-text">Macbook Air 13&#8243;</p></div>
<p>After about 5 years, the time has come to change my MacBook Aluminum (first aluminum unibody macbook series). My new machine is a mid-2012 MacBook Air with 8gigs of RAM. My old machine keeps working fine -only thing I upgraded through all these years is RAM (I bought it with 2GB and doubled it to 4GB two years ago)- but it feels a bit slow and the fan has been noisy lately although I&#8217;ve cleaned the inside quite few times.</p>
<p>The decision on which notebook I should buy was not easy, but I was sure I should go for flash storage. As I am a mac fan, the options I had were the new MacBook 13&#8243; with Retina display and the <a href="http://www.apple.com/macbookair/" target="_blank">MacBook Air 13&#8243;</a>. I thought a while for the non-Retina MacBook Pro 13&#8243; but it lacks flash storage (in default configurations) and has a screen with the same resolution as my old machine -although the screen has much better color saturation than the first unibody MacBook-. I finally bought the 13&#8243; inch MacBook Air as this will be a laptop for personal use (I use a different notebook for my job) which means that my main usage will be internet, email, movie watching, photo organizing and a bit of photoshop use as well as spending some time coding in <a title="Xcode" href="http://developer.apple.com" target="_blank">Xcode</a> or <a title="Panic Coda" href="http://panic.com/coda/" target="_blank">coda</a>.</p>
<p>The MacBook Air is an amazing machine. Compared to HDD notebooks I&#8217;ve been using up to now, it boots in less than 30 secs, and it seems very fast, thanks to flash storage. Applications launch fast as well. I think that everyone should go on flash storage. You compromise capacity, but you get rid of loading times. I transferred my files via a time machine backup, so the migration was painless. My old machine run also OS X 10.8 Mountain Lion, so I didn&#8217;t come up with program incompatibilities etc.</p>
<p>Display on the MacBook Air is the only aspect that has some drawbacks. Although the resolution is higher than the non-retina MacBook Pro, the display has worse color saturation. Personally I prefer the real estate -especially when it comes to personal use- than the absolute quality a professional designer should look for. That does not mean that the display in the Air is back, it is still much much better than many other laptops in this category, but it is not as color accurate as the Pro&#8217;s display is. Regarding the real estate, its like working with a 15&#8243; laptop although it is still 13&#8243;. Fonts render small, but this is not a problem, they are readable, sharp and clear. Viewing angles are also amazing and what I like most is that the Air&#8217;s display seems much less glossier than the Pro&#8217;s display.</p>
<p><img class="aligncenter size-full wp-image-619" alt="Macbook Air 13&quot;" src="http://blog.typpz.com/wp-content/air1.jpg" width="1000" height="551" /></p>
<p>Processing power in the Air is not screaming (my processor is i5 at 1.8Ghz), but it does not seem slow (thanks again to flash storage) especially for everyday tasks. It is not dedicated for processing and rendering full hd video in Final Cut Pro, but it is very fast and smooth in compiling a -very- large project in Xcode, launching the ios simulator and running it. Bigger screen resolution also makes the developers happier.</p>
<p>The biggest hit in the MacBook Air are portability and battery life. This machine is very light and thin, make carrying it unnoticeable. Battery life is great too. From my personal experience, battery life lasts for 5-6 hours with -quite heavy- everyday use (coding, surfing while listening to music). Of course it lasts less when watching full hd video, but even with medium-power processor, it handles that task as well.</p>
<p>Summing up, if you are seeking an ultraportable notebook, with a high-res screen, capable processor and fast boot-sleep times, the MacBook Air definitely worths a look.</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="tall" count="1" href="http://blog.typpz.com/2013/06/01/macbook-air-mid-2012-review/"></g:plusone></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Typpz?a=36GK7TFyF2A:CY98Gmkqwis:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Typpz?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=36GK7TFyF2A:CY98Gmkqwis:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Typpz?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=36GK7TFyF2A:CY98Gmkqwis:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Typpz?i=36GK7TFyF2A:CY98Gmkqwis:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=36GK7TFyF2A:CY98Gmkqwis:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Typpz?i=36GK7TFyF2A:CY98Gmkqwis:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=36GK7TFyF2A:CY98Gmkqwis:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Typpz?i=36GK7TFyF2A:CY98Gmkqwis:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=36GK7TFyF2A:CY98Gmkqwis:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Typpz?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=36GK7TFyF2A:CY98Gmkqwis:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Typpz?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Typpz/~4/36GK7TFyF2A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.typpz.com/2013/06/01/macbook-air-mid-2012-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.typpz.com/2013/06/01/macbook-air-mid-2012-review/</feedburner:origLink></item>
		<item>
		<title>How to reset os x password with recovery partition</title>
		<link>http://feedproxy.google.com/~r/Typpz/~3/L06Qjl7pRaU/</link>
		<comments>http://blog.typpz.com/2012/10/20/how-to-reset-os-x-password-with-recovery-partition/#comments</comments>
		<pubDate>Sat, 20 Oct 2012 17:50:40 +0000</pubDate>
		<dc:creator>Nikos M.</dc:creator>
				<category><![CDATA[Apple Mac]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[mountain lion]]></category>
		<category><![CDATA[os x]]></category>

		<guid isPermaLink="false">http://blog.typpz.com/?p=578</guid>
		<description><![CDATA[In case your forgot or lost your os x password (and you have no other user with admin rights), you have to reset the default user&#8217;s pass. This can be done via the Mountain Lion Recovery HD partition. Follow these steps.&#8230; ]]></description>
				<content:encoded><![CDATA[<p align="center"><img class="aligncenter" title="mountain-lion" src="http://blog.typpz.com/wp-content/mountain-lion.jpg" alt="mountain-lion" width="297" height="304" /></p>
<p>In case your forgot or lost your os x password (and you have no other user with admin rights), you have to reset the default user&#8217;s pass. This can be done via the Mountain Lion Recovery HD partition. Follow these steps.</p>
<ul>
<li>Shutdown your mac.</li>
<li>Boot it. Hold “Option” at boot and select the “Recovery HD” disk at the boot menu</li>
<li>Wait for  the recovery hd to load until “Mac OS X Utilities” menu appears.</li>
<li>Click on the “Utilities” menu and select “Terminal”</li>
<li>In Terminal, type the following:</li>
</ul>
<p style="text-align: center;"><code>resetpassword</code></p>
<ul>
<li>Confirm the password change and reboot as usual as usual and you are ready to go using your newly created pass.</li>
</ul>
<p>Note that prior to os x 10.7 there was a &#8220;Reset Password&#8221; menu item in the Utilities menu, which was the easiest way to reset a lost password.</p>
<p>If the above method does not work you can boot to recovery mode, launch the Terminal from the Utilities folder and type:</p>
<p style="text-align: center;"><code>rm /var/db/.AppleSetupDone</code></p>
<p>Note that this will not reset your password but it will let you run the default setup procedure (like when you get a new mac) and create a new admin account the next time you boot your machine (it will not delete your old acount). After rebooting, follow the procedure to create the new account and then navigate to system preferences&gt;user &amp; groups and reset the password for your old account. If settings in user &amp; groups are faded out, click on the lock icon in the lower left corner and authenticate (using your new account credentials).</p>
<p>&nbsp;</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="tall" count="1" href="http://blog.typpz.com/2012/10/20/how-to-reset-os-x-password-with-recovery-partition/"></g:plusone></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Typpz?a=L06Qjl7pRaU:mIVhxPyBQFY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Typpz?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=L06Qjl7pRaU:mIVhxPyBQFY:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Typpz?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=L06Qjl7pRaU:mIVhxPyBQFY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Typpz?i=L06Qjl7pRaU:mIVhxPyBQFY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=L06Qjl7pRaU:mIVhxPyBQFY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Typpz?i=L06Qjl7pRaU:mIVhxPyBQFY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=L06Qjl7pRaU:mIVhxPyBQFY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Typpz?i=L06Qjl7pRaU:mIVhxPyBQFY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=L06Qjl7pRaU:mIVhxPyBQFY:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Typpz?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=L06Qjl7pRaU:mIVhxPyBQFY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Typpz?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Typpz/~4/L06Qjl7pRaU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.typpz.com/2012/10/20/how-to-reset-os-x-password-with-recovery-partition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.typpz.com/2012/10/20/how-to-reset-os-x-password-with-recovery-partition/</feedburner:origLink></item>
		<item>
		<title>Learn to use Xcode 4 snippets</title>
		<link>http://feedproxy.google.com/~r/Typpz/~3/jKyT7iHyqVg/</link>
		<comments>http://blog.typpz.com/2012/01/17/learn-to-use-xcode-4-snippets/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 18:49:03 +0000</pubDate>
		<dc:creator>Nikos M.</dc:creator>
				<category><![CDATA[Apple Mac]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[xcode]]></category>

		<guid isPermaLink="false">http://blog.typpz.com/?p=558</guid>
		<description><![CDATA[One of my favorite features of the new Xcode 4 is code snippets. Code snippets let you use (and re-use) common classes and objects by simply typing a shortcut. For example if you type dealloc, Xcode 4 automatically generates the&#8230; ]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter  wp-image-559" title="codesnippets" src="http://blog.typpz.com/wp-content/codesnippets.png" alt="Code Snippets" width="466" height="155" /></p>
<p>One of my favorite features of the new Xcode 4 is code snippets. Code snippets let you use (and re-use) common classes and objects by simply typing a shortcut. For example if you type dealloc, Xcode 4 automatically generates the deallocation method for you:</p>
<p><code>- (void)dealloc {</code></p>
<p>&lt;#deallocations#&gt;</p>
<p>[super dealloc];</p>
<p>}</p>
<p>To add your code snippets to Xcode:</p>
<ol>
<li>Find the code you want and highlight it.</li>
<li>Drag the selected code to the the Snippet Library</li>
<li>Name your snippet (this is just the name you see in the Snippet Library)</li>
<li>Choose a shortcut for your snippet which is used to invoke it (a good practice is to use shortcuts that show what the snippet does, like dealloc is used for invoking the deallocation method).</li>
<li>Choose language and platform (so Xcode knows when to offer this snippet).</li>
<li>If you like a bubble to appear as part of your snippets (like the #deallocations# in the example), just type: &lt;#text in the bubble#&gt; in your snippet.</li>
</ol>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="tall" count="1" href="http://blog.typpz.com/2012/01/17/learn-to-use-xcode-4-snippets/"></g:plusone></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Typpz?a=jKyT7iHyqVg:te2iXBYny0A:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Typpz?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=jKyT7iHyqVg:te2iXBYny0A:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Typpz?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=jKyT7iHyqVg:te2iXBYny0A:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Typpz?i=jKyT7iHyqVg:te2iXBYny0A:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=jKyT7iHyqVg:te2iXBYny0A:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Typpz?i=jKyT7iHyqVg:te2iXBYny0A:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=jKyT7iHyqVg:te2iXBYny0A:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Typpz?i=jKyT7iHyqVg:te2iXBYny0A:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=jKyT7iHyqVg:te2iXBYny0A:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Typpz?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=jKyT7iHyqVg:te2iXBYny0A:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Typpz?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Typpz/~4/jKyT7iHyqVg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.typpz.com/2012/01/17/learn-to-use-xcode-4-snippets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.typpz.com/2012/01/17/learn-to-use-xcode-4-snippets/</feedburner:origLink></item>
		<item>
		<title>How to upgrade Mobile Safari anti-phishing database</title>
		<link>http://feedproxy.google.com/~r/Typpz/~3/ksw6W-7JMxc/</link>
		<comments>http://blog.typpz.com/2011/11/27/how-to-upgrade-mobile-safari-anti-phishing-database/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 10:32:36 +0000</pubDate>
		<dc:creator>Nikos M.</dc:creator>
				<category><![CDATA[Apple Mac]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://blog.typpz.com/?p=552</guid>
		<description><![CDATA[Since iOS 3.1, Mobile Safari features an anti-phishing filter. In order to be protected from phishing sites as much as possible, the filter&#8217;s database must be up-to-date. According to Apple, the database upgrades automatically while the user charges the iPhone&#8230; ]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;" align="center"><a href="http://blog.typpz.com/wp-content/mobsafari.jpg"><img class="size-full wp-image-553 aligncenter" title="mobsafari" src="http://blog.typpz.com/wp-content/mobsafari.jpg" alt="Mobile Safari" width="256" height="384" /></a></p>
<p style="text-align: justify;">Since iOS 3.1, Mobile Safari features an anti-phishing filter. In order to be protected from phishing sites as much as possible, the filter&#8217;s database must be up-to-date. According to Apple, the database upgrades automatically while the user charges the iPhone (in order to protect battery life). To upgrade you have to: connect the iPhone to the AC adapter, launch Mobile Safari and lock the screen. Easy enough except that most users exit Safari before locking the screen in a regular use.</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="tall" count="1" href="http://blog.typpz.com/2011/11/27/how-to-upgrade-mobile-safari-anti-phishing-database/"></g:plusone></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Typpz?a=ksw6W-7JMxc:KESZZ9HbNaQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Typpz?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=ksw6W-7JMxc:KESZZ9HbNaQ:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Typpz?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=ksw6W-7JMxc:KESZZ9HbNaQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Typpz?i=ksw6W-7JMxc:KESZZ9HbNaQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=ksw6W-7JMxc:KESZZ9HbNaQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Typpz?i=ksw6W-7JMxc:KESZZ9HbNaQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=ksw6W-7JMxc:KESZZ9HbNaQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Typpz?i=ksw6W-7JMxc:KESZZ9HbNaQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=ksw6W-7JMxc:KESZZ9HbNaQ:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Typpz?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=ksw6W-7JMxc:KESZZ9HbNaQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Typpz?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Typpz/~4/ksw6W-7JMxc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.typpz.com/2011/11/27/how-to-upgrade-mobile-safari-anti-phishing-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.typpz.com/2011/11/27/how-to-upgrade-mobile-safari-anti-phishing-database/</feedburner:origLink></item>
		<item>
		<title>Thank you Steve!</title>
		<link>http://feedproxy.google.com/~r/Typpz/~3/mISgfSBHsLE/</link>
		<comments>http://blog.typpz.com/2011/10/06/thank-you-steve/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 20:17:13 +0000</pubDate>
		<dc:creator>Nikos M.</dc:creator>
				<category><![CDATA[Apple Mac]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://blog.typpz.com/?p=544</guid>
		<description><![CDATA[Steve Jobs passed away at the age of 56! Tech world will never be the same without him! Rest in Peace Steve! Thank you for everything and may your spirit lead Apple to more innovations!]]></description>
				<content:encoded><![CDATA[<p align="center"><img class="size-medium wp-image-545" title="t_hero" src="http://blog.typpz.com/wp-content/t_hero-300x273.png" alt="" width="300" height="273" /></p>
<p style="text-align: justify;">Steve Jobs passed away at the age of 56! Tech world will never be the same without him! Rest in Peace Steve! Thank you for everything and may your spirit lead Apple to more innovations!</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="tall" count="1" href="http://blog.typpz.com/2011/10/06/thank-you-steve/"></g:plusone></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Typpz?a=mISgfSBHsLE:vHeuUQgHFRM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Typpz?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=mISgfSBHsLE:vHeuUQgHFRM:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Typpz?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=mISgfSBHsLE:vHeuUQgHFRM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Typpz?i=mISgfSBHsLE:vHeuUQgHFRM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=mISgfSBHsLE:vHeuUQgHFRM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Typpz?i=mISgfSBHsLE:vHeuUQgHFRM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=mISgfSBHsLE:vHeuUQgHFRM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Typpz?i=mISgfSBHsLE:vHeuUQgHFRM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=mISgfSBHsLE:vHeuUQgHFRM:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Typpz?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=mISgfSBHsLE:vHeuUQgHFRM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Typpz?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Typpz/~4/mISgfSBHsLE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.typpz.com/2011/10/06/thank-you-steve/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.typpz.com/2011/10/06/thank-you-steve/</feedburner:origLink></item>
		<item>
		<title>How to: Fix WordPress Warning: Cannot modify header information</title>
		<link>http://feedproxy.google.com/~r/Typpz/~3/4uUuirXtd8o/</link>
		<comments>http://blog.typpz.com/2011/08/21/how-to-fix-wordpress-warning-cannot-modify-header-information/#comments</comments>
		<pubDate>Sun, 21 Aug 2011 10:07:35 +0000</pubDate>
		<dc:creator>Nikos M.</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.typpz.com/?p=540</guid>
		<description><![CDATA[If you try to load your WordPress blog and you come across this warning (or anything similar), the fix is really easy. The error message should look like this: Warning: Cannot modify header information: headers already sent by: (output started at&#8230; ]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-258" title="TyppzPress" src="http://blog.typpz.com/wp-content/typpzpress.jpg" alt="" width="404" height="212" /></p>
<p>If you try to load your WordPress blog and you come across this warning (or anything similar), the fix is really easy. The error message should look like this:</p>
<blockquote><p><strong><em>Warning: Cannot modify header information: headers already sent by:</em></strong><em> (output started at //home/htdocs/wordpress/wp-config.php:1) in /home/htdocs/wordpress/wp-login.php on line 12</em></p></blockquote>
<p>Notice that the error could warn about any file, not only the wp-config and the wp-login. The solution is to edit any file that is noticed in the error message (download via ftp and edit it locally, then upload it to your wordpress directory and replace the old one, or edit it directly in your server) and remove all spaces before the <code>&lt;?php</code> and after the <code>?&gt;.;-)</code></p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="tall" count="1" href="http://blog.typpz.com/2011/08/21/how-to-fix-wordpress-warning-cannot-modify-header-information/"></g:plusone></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Typpz?a=4uUuirXtd8o:wZ_jIC4qdA0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Typpz?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=4uUuirXtd8o:wZ_jIC4qdA0:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Typpz?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=4uUuirXtd8o:wZ_jIC4qdA0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Typpz?i=4uUuirXtd8o:wZ_jIC4qdA0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=4uUuirXtd8o:wZ_jIC4qdA0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Typpz?i=4uUuirXtd8o:wZ_jIC4qdA0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=4uUuirXtd8o:wZ_jIC4qdA0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Typpz?i=4uUuirXtd8o:wZ_jIC4qdA0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=4uUuirXtd8o:wZ_jIC4qdA0:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Typpz?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=4uUuirXtd8o:wZ_jIC4qdA0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Typpz?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Typpz/~4/4uUuirXtd8o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.typpz.com/2011/08/21/how-to-fix-wordpress-warning-cannot-modify-header-information/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.typpz.com/2011/08/21/how-to-fix-wordpress-warning-cannot-modify-header-information/</feedburner:origLink></item>
		<item>
		<title>Unhide Library folder in Mac OS X 10.7 Lion</title>
		<link>http://feedproxy.google.com/~r/Typpz/~3/SsXqpKWClj4/</link>
		<comments>http://blog.typpz.com/2011/08/02/unhide-library-folder-in-mac-os-x-10-7-lion/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 18:16:54 +0000</pubDate>
		<dc:creator>Nikos M.</dc:creator>
				<category><![CDATA[Apple Mac]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[lion]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>

		<guid isPermaLink="false">http://blog.typpz.com/?p=535</guid>
		<description><![CDATA[After upgrading to OS X Lion, I released that the Library folder in my user&#8217;s home folder (where all the .plist files from the installed apps are stored) was gone. I wish Lion would have respected my folders and installed&#8230; ]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-537" title="library" src="http://blog.typpz.com/wp-content/library1.png" alt="" width="480" height="335" /></p>
<p>After upgrading to OS X Lion, I released that the Library folder in my user&#8217;s home folder (where all the .plist files from the installed apps are stored) was gone. I wish Lion would have respected my folders and installed apps from my Snow Leopard installation during setup (it also removes iSync). Not big deal unless you use some kind of old-school Nokia cell phone). As there is no option to show hidden folders in OS X (or I haven&#8217;t found it), the only way to bring back the Library folder is via terminal. Open the Terminal.app (found under Utilities folder or search it with Spotlight) and paste the following command. Yes, you are done!</p>
<p style="text-align: center;"><code>chflags nohidden ~/Library/</code></p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="tall" count="1" href="http://blog.typpz.com/2011/08/02/unhide-library-folder-in-mac-os-x-10-7-lion/"></g:plusone></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Typpz?a=SsXqpKWClj4:5wcvwxrgjs4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Typpz?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=SsXqpKWClj4:5wcvwxrgjs4:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Typpz?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=SsXqpKWClj4:5wcvwxrgjs4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Typpz?i=SsXqpKWClj4:5wcvwxrgjs4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=SsXqpKWClj4:5wcvwxrgjs4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Typpz?i=SsXqpKWClj4:5wcvwxrgjs4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=SsXqpKWClj4:5wcvwxrgjs4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Typpz?i=SsXqpKWClj4:5wcvwxrgjs4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=SsXqpKWClj4:5wcvwxrgjs4:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Typpz?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=SsXqpKWClj4:5wcvwxrgjs4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Typpz?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Typpz/~4/SsXqpKWClj4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.typpz.com/2011/08/02/unhide-library-folder-in-mac-os-x-10-7-lion/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		<feedburner:origLink>http://blog.typpz.com/2011/08/02/unhide-library-folder-in-mac-os-x-10-7-lion/</feedburner:origLink></item>
		<item>
		<title>OS X Lion how to: remove user name from menu bar</title>
		<link>http://feedproxy.google.com/~r/Typpz/~3/nOvaWLXboFA/</link>
		<comments>http://blog.typpz.com/2011/07/23/os-x-lion-how-to-remove-user-name-from-menu-bar/#comments</comments>
		<pubDate>Sat, 23 Jul 2011 13:53:53 +0000</pubDate>
		<dc:creator>Nikos M.</dc:creator>
				<category><![CDATA[Apple Mac]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[lion]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[macos]]></category>
		<category><![CDATA[os x]]></category>

		<guid isPermaLink="false">http://blog.typpz.com/?p=528</guid>
		<description><![CDATA[The first thing that tracked my attention after upgrading to OS X 10.7 Lion is that my full name (logged in user) was displayed on the top menu bar! Except that I do not want my surname showing up there,&#8230; ]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-529 aligncenter" title="lion" src="http://blog.typpz.com/wp-content/lion.png" alt="lion" width="368" height="219" /></p>
<p style="text-align: justify;">The first thing that tracked my attention after upgrading to OS X 10.7 Lion is that my full name (logged in user) was displayed on the top menu bar! Except that I do not want my surname showing up there, I am the only user on my mac. It is very easy to remove this option. You just have to click on the username in the menu bar while holding the Command(?) key and drag it off of the bar.</p>
<p style="text-align: justify;">You can reenable it again, by going into System Preferences &gt; Users &amp; Groups &gt; Login Options and checking the &#8220;Show fast user switching menu as&#8221; option. If the options are greyed out (and you are not able to modify them), just click the Lock icon at the bottom left corner, typer your password and you are ready to go.</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="tall" count="1" href="http://blog.typpz.com/2011/07/23/os-x-lion-how-to-remove-user-name-from-menu-bar/"></g:plusone></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Typpz?a=nOvaWLXboFA:KURUAeDWISc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Typpz?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=nOvaWLXboFA:KURUAeDWISc:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Typpz?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=nOvaWLXboFA:KURUAeDWISc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Typpz?i=nOvaWLXboFA:KURUAeDWISc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=nOvaWLXboFA:KURUAeDWISc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Typpz?i=nOvaWLXboFA:KURUAeDWISc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=nOvaWLXboFA:KURUAeDWISc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Typpz?i=nOvaWLXboFA:KURUAeDWISc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=nOvaWLXboFA:KURUAeDWISc:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Typpz?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=nOvaWLXboFA:KURUAeDWISc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Typpz?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Typpz/~4/nOvaWLXboFA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.typpz.com/2011/07/23/os-x-lion-how-to-remove-user-name-from-menu-bar/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		<feedburner:origLink>http://blog.typpz.com/2011/07/23/os-x-lion-how-to-remove-user-name-from-menu-bar/</feedburner:origLink></item>
		<item>
		<title>Get usefull info about your Mac from the terminal</title>
		<link>http://feedproxy.google.com/~r/Typpz/~3/ZhRoMlWISjI/</link>
		<comments>http://blog.typpz.com/2010/12/03/get-usefull-info-about-your-mac-for-the-terminal/#comments</comments>
		<pubDate>Fri, 03 Dec 2010 01:53:56 +0000</pubDate>
		<dc:creator>Nikos M.</dc:creator>
				<category><![CDATA[Apple Mac]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[darwin]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[macintosh]]></category>
		<category><![CDATA[macos]]></category>
		<category><![CDATA[snow leopard]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://blog.typpz.com/?p=521</guid>
		<description><![CDATA[Mac OS X (despite its user-friendly UI and the general ease of use) is built on Darwin kernel which means thats it is a UNIX system. Using the terminal (it is located in application&#62;utilities folder) you can easily get some&#8230; ]]></description>
				<content:encoded><![CDATA[<p>Mac OS X (despite its user-friendly UI and the general ease of use) is built on <strong><a title="Darwin Kernel Wikipedia" href="http://en.wikipedia.org/wiki/Darwin_(operating_system)" target="_blank">Darwin</a></strong> kernel which means thats it is a UNIX system. Using the terminal (it is located in application&gt;utilities folder) you can easily get some valuable info about your mac. If you run Mac OS X 10.6 Snow Leopard, you have the ability to boot with the 64-bit kernel instead of the 32-bit that loads by default (Apple has chosen the 32-bit as the default boot kernel to prevent glitches caused by 32-bit kernel extensions). To boot with the 64-bit kernel you need a Mac with an Intel Core 2 duo or newer processor (Intel Core Duo does not support 64-bit) and 64-bit capable EFI. To check if your EFI supports 64-bit, open the terminal and type the following command:</p>
<blockquote><p><code>ioreg -l -p IODeviceTree | grep firmware-abi</code></p></blockquote>
<p>If the terminal returns &#8220;EFI64&#8243; as shown in the image below you are ready to go. Just restart your mac holding &#8220;6&#8243; and &#8220;4&#8243; numeric keys and it will boot with the 64-bit kernel. Note though that in a typical system (for example a core 2 duo mac with 2 to 4 GB of RAM), there will be no significant performance improvement. Also even with the 32-bit kernel, you can run 64-bit applications and take full advantage of 64-bits (that is not a Snow Leopard feature. Leopard was able to run 64-bit apps and adress more than 4GB of RAM too).</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-523" title="eficheck" src="http://blog.typpz.com/wp-content/eficheck1.png" alt="" width="465" height="312" />Some other important info you can easily get about your portable mac from the terminal, is your battery condition. Type the following in the command line and you the terminal will return your battery&#8217;s max capacity, current capacity and design capacity.</p>
<blockquote><p><code>ioreg -l | grep Capacity</code></p></blockquote>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-524" title="batterycheck" src="http://blog.typpz.com/wp-content/batterycheck.png" alt="" width="465" height="312" /></p>
<p style="text-align: left;">If you see that max capacity is lower than design capacity do not panic, batteries start to loose capacity after some charging cycles.</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="tall" count="1" href="http://blog.typpz.com/2010/12/03/get-usefull-info-about-your-mac-for-the-terminal/"></g:plusone></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Typpz?a=ZhRoMlWISjI:kxV0Op_5CAU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Typpz?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=ZhRoMlWISjI:kxV0Op_5CAU:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Typpz?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=ZhRoMlWISjI:kxV0Op_5CAU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Typpz?i=ZhRoMlWISjI:kxV0Op_5CAU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=ZhRoMlWISjI:kxV0Op_5CAU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Typpz?i=ZhRoMlWISjI:kxV0Op_5CAU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=ZhRoMlWISjI:kxV0Op_5CAU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Typpz?i=ZhRoMlWISjI:kxV0Op_5CAU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=ZhRoMlWISjI:kxV0Op_5CAU:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Typpz?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Typpz?a=ZhRoMlWISjI:kxV0Op_5CAU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Typpz?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Typpz/~4/ZhRoMlWISjI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.typpz.com/2010/12/03/get-usefull-info-about-your-mac-for-the-terminal/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.typpz.com/2010/12/03/get-usefull-info-about-your-mac-for-the-terminal/</feedburner:origLink></item>
	</channel>
</rss>
