<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>DanielAndrade.net &#187; apple</title>
	<atom:link href="http://www.danielandrade.net/category/apple/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.danielandrade.net</link>
	<description>Daniel Andrade Tech Stuff</description>
	<lastBuildDate>Sat, 19 Nov 2011 10:39:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>10 Cool things to do in OSX Terminal</title>
		<link>http://www.danielandrade.net/2009/12/21/10-cool-things-to-do-in-osx-terminal/</link>
		<comments>http://www.danielandrade.net/2009/12/21/10-cool-things-to-do-in-osx-terminal/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 16:02:20 +0000</pubDate>
		<dc:creator>DanielAndrade</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.danielandrade.net/2009/12/21/10-cool-things-to-do-in-osx/</guid>
		<description><![CDATA[The thing that made me buy mac is that it has a OS based on Unix, and programs like Photoshop and Microsoft Office (not a big OpenOffice fan yet). Like [...]]]></description>
			<content:encoded><![CDATA[<p>The thing that made me buy mac is that it has a OS based on Unix, and programs like Photoshop and Microsoft Office (not a big OpenOffice fan <strong>yet</strong>). Like a good nerd, I can&#8217;t live without my beloved terminal, which makes my life easier. In this post I will show some commands so you can have fun on mac&#8217;s terminal. Hope you like it, and if you have any other ideas, please comment on the post!</p>
<p><strong>1. Twitter Update</strong></p>
<ul>
Nothing more geek than updating your twitter from terminal. Just change the <em>user</em> e <em>pass</em> from the code. Way cool.<br />
<code>curl -u user:pass -d status="Tweeting from the shell" http://twitter.com/statuses/update.xml</code></ul>
<p><strong>2. Sing songs</strong></p>
<ul>
Release your creativity, sing along.<br />
<code>sudo osascript -e 'say "Dum dum dum dum dum dum dum he he he ho ho ho fa lah lah lah lah lah lah fa lah full hoo hoo hoo" using "Cellos"'</code></ul>
<p><strong>3. Download from a unstable server</strong></p>
<ul>
You know, sometimes you are downloading a big file, but it keeps failing, and you always have to hit RESUME. Your problems are over, with this code, if the download stops suddenly, it will automatically restart. This code have a 15kbps speed limit, delete <em>&#8211;limit-rate 15k</em> to remove the speed limit.<br />
<code> while ! curl -C - -O --limit-rate 15k <strong>file-address-goes-here</strong>; do sleep 10; done</code></ul>
<p><strong>4. Secure SSH Tunnel</strong></p>
<ul>
This is very important if you are using a public/open wireless connection. If you want to access your bank information or online shopping, making sure no one is stealing your information, then SSH Tunneling is the solution. You can find more information <a href="http://polishlinux.org/apps/ssh-tunneling-to-bypass-corporate-firewalls/">HERE</a>.<br />
<code>ssh -D 8080 -f -C -q -N myuser@myserver.com</code><br />
<strong>From</strong>: <a href="http://paulstamatiou.com/">Stammy</a></ul>
<p><strong>5. Real-time view of a running processes</strong></p>
<ul>
To know what is running on your computer, how much memory and processing, just hit:<br />
<code>top</code></ul>
<p><strong>6. Resize pictures</strong></p>
<ul>
One quick way to resize pictures in a batch is using a simple program called SIPS. In this example, I&#8217;m resizing all pictures <strong>.JPG</strong> to a 500 pixels width. For more information, type on terminal <strong>man sips</strong><br />
<code>sips --resampleWidth 500 *.JPG</code></ul>
<p><strong>7. Build a fast and simple HTTPD server</strong></p>
<ul>
If you want to start a simple HTTPD server on the 8080 port, go to the folder you want to show and use the command:<br />
<code>python -m SimpleHTTPServer 8080</code></ul>
<p><strong>8. Kill a process</strong></p>
<ul>
When using <strong>top</strong>, you have access to the processes ID, and if they are using too much RAM (for example), you can kill it.<br />
<code>killall firefox</code><br />
<code>kill 234</code></ul>
<p><strong>9. Watch Star Wars Episode IV</strong></p>
<ul>
No comments on this one <img src='http://www.danielandrade.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<code>telnet towel.blinkenlights.nl</code>
</ul>
<p><strong>10. Show hidden files (those with . in front of the name) in Finder</strong></p>
<ul>
<code>defaults write com.apple.finder AppleShowAllFiles TRUE</code></ul>
<p>Thanks for readying.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielandrade.net/2009/12/21/10-cool-things-to-do-in-osx-terminal/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WordPress on the Apple macbook event</title>
		<link>http://www.danielandrade.net/2008/10/14/wordpress-on-the-apple-macbook-event/</link>
		<comments>http://www.danielandrade.net/2008/10/14/wordpress-on-the-apple-macbook-event/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 18:17:48 +0000</pubDate>
		<dc:creator>DanielAndrade</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[Electronics]]></category>

		<guid isPermaLink="false">http://www.danielandrade.net/2008/10/14/wordpress-on-the-apple-macbook-event/</guid>
		<description><![CDATA[While following the coverage of Apple&#8217;s macbook event at gizmodo, I found one picture that I think is worth sharing, they took a shot from people writing stuff about the [...]]]></description>
			<content:encoded><![CDATA[<p>While following the coverage of Apple&#8217;s macbook event at <a href="http://gizmodo.com/">gizmodo</a>, I found one picture that I think is worth sharing,<br />
they took a shot from people writing stuff about the event&#8230; And from few notebook screens I could see there, at least 3 using wordpress. Thumbs up WP!! <img src='http://www.danielandrade.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>BTW, new macbook&#8217;s looks amazing, can&#8217;t wait to get one of those!!!</p>
<p><img src='http://www.danielandrade.net/wp-content/uploads/2008/10/wp-apple.jpg' alt='wp-apple.jpg' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielandrade.net/2008/10/14/wordpress-on-the-apple-macbook-event/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How To Make Your Iphone Battery Last Longer</title>
		<link>http://www.danielandrade.net/2008/01/03/how-to-make-your-iphone-battery-last-longer/</link>
		<comments>http://www.danielandrade.net/2008/01/03/how-to-make-your-iphone-battery-last-longer/#comments</comments>
		<pubDate>Thu, 03 Jan 2008 03:13:49 +0000</pubDate>
		<dc:creator>DanielAndrade</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobil]]></category>

		<guid isPermaLink="false">http://www.danielandrade.net/2008/01/03/how-to-make-your-iphone-battery-last-longer/</guid>
		<description><![CDATA[I&#8217;ve owned a Iphone for a while now, it&#8217;s an amazing phone, the best I have ever used so far. But when I first started using it, my only concern [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve owned a Iphone for a while now, it&#8217;s an amazing phone, the best I have ever used so far. But when I first started using it, my only concern was that the battery didn&#8217;t last as much as I expected. After two days, it was gone, and when I needed it, the phone just didn&#8217;t turn ON. I used to let the wireless on almost all the time and downloading many new apps. Now that I have some more experience on how my little gadget works, I will try to share some ideas on how you can optimize your iphone&#8217;s battery life and have a better iExperience.</p>
<p><img src='http://www.danielandrade.net/wp-content/uploads/2008/01/iphone-bat.jpg' alt='iphone' align='left' />
<li><strong>Wireless </strong>connectivity will drawn your battery even if you are not using it. Keeping it on, it will always try to connect to some open hot spot, try to check your emails and much more. So a good idea is to turn it on when using, and after, turn it off.</li>
<li><strong>Bluetooth </strong>have a similar battery usage as Wi-Fi, so there&#8217;s not much reason to leave it on if you are not using it (I believe that the most common usage for bluetooth today is the headsets and car kits).</li>
<li><strong>Auto-Brightness</strong> is a interesting thing apple made to make the battery last longer. It uses iphone&#8217;s camera to adjust brightness based on the lighting conditions outside, so it will automatically set, for example, to make it less bright when you are on a dark place. Great feature!</li>
<li><strong>Music EQ</strong> will have a significant battery usage if you listen to your songs for many hours everyday, as it uses more processing power. So if you want to charge less your iphone, it is another thing you may consider turning it off.</li>
<li><strong>Heat </strong>can be a problem to your iphone, as it is a very bad thing to lithium-ion batteries, making them harder to charge and destroying it due the intense ionization. So remember to never let your phone in a hot place such as inside a car or in direct sunlight. If you are using some kind of carrying case, you need to be even more careful about this, and remember to take it off when charging your mobile, as it gets warm when charging.</li>
<li><strong>Keep it charging!</strong> After putting your phone to charge, leave it there for some hours more after it says it&#8217;s full. It will make your phone battery last much more, you will be surprised! After done that, my iphone battery lasted more then a week, way more if you compare to the 2-3 days when I was disconnecting if from the dock just after it says its full.</li>
<li><strong>Background Programs!</strong> This is important, new iphones, such as Iphone4 allows you to run multiple apps on the background, but this will drain your battery fast if you forget to close them. To do this, double click on the round button and it will show all the apps currently running, keep clicking in one of the apps and a red &#8220;X&#8221; will apear, then you can close all apps.</li>
<p>What else do you do to make your iphone battery last longer?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielandrade.net/2008/01/03/how-to-make-your-iphone-battery-last-longer/feed/</wfw:commentRss>
		<slash:comments>86</slash:comments>
		</item>
		<item>
		<title>Ready to get your own unlocked iPhone?</title>
		<link>http://www.danielandrade.net/2007/11/21/ready-to-get-your-own-unlocked-iphone/</link>
		<comments>http://www.danielandrade.net/2007/11/21/ready-to-get-your-own-unlocked-iphone/#comments</comments>
		<pubDate>Thu, 22 Nov 2007 01:46:18 +0000</pubDate>
		<dc:creator>DanielAndrade</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobil]]></category>

		<guid isPermaLink="false">http://www.ovelha.org/pasteler0/2007/11/21/ready-to-get-your-own-unlocked-iphone/</guid>
		<description><![CDATA[Deutsche Telekom started to sell unlocked iPhones in Germany Right now, if you live in Germany you can buy an iPhone with a 2 years contract for 399 euros ( [...]]]></description>
			<content:encoded><![CDATA[<p>Deutsche Telekom started to sell unlocked iPhones in Germany Right<br />
now, if you live in Germany you can buy an iPhone with a 2 years<br />
contract for 399 euros ( something like 590 dollars ). But due some court injunction, they will<br />
also sell unlocked iphone with the spicy price of 999 euros ( only<br />
1,477 dollars). Do you think it&#8217;s really worth it to pay all this money<br />
for and unlocked iPhone?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielandrade.net/2007/11/21/ready-to-get-your-own-unlocked-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

