<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/><description>My name is David Gasperoni.
I study new media communication and I work as a web developer.</description><title>tech drops</title><generator>Tumblr (3.0; @techdrops)</generator><link>http://david.gasperoni.org/</link><item><title>Jude Robinson : The single most useful thing in bash</title><description>&lt;a href="https://coderwall.com/p/oqtj8w"&gt;Jude Robinson : The single most useful thing in bash&lt;/a&gt;: &lt;blockquote class="link_og_blockquote"&gt;A protip by dotcode about unix, cli, bash, and shell.&lt;/blockquote&gt;
&lt;p&gt;I knew about `&lt;span&gt;set show-all-if-ambiguous on`, but the rest really bring some magic to the good ol’ Bash.&lt;/span&gt;&lt;/p&gt;</description><link>http://david.gasperoni.org/post/48226492640</link><guid>http://david.gasperoni.org/post/48226492640</guid><pubDate>Wed, 17 Apr 2013 23:50:02 +0200</pubDate></item><item><title>Possible solution for OS X Mountain Lion SMB connection and disappearing WINS workgroup problems</title><description>&lt;a href="http://blog.jsahagun.me/2012/08/28/possible-solution-for-os-x-lion-smb-connection-and-disappearing-wins-workgroup-problems/"&gt;Possible solution for OS X Mountain Lion SMB connection and disappearing WINS workgroup problems&lt;/a&gt;: &lt;p&gt;I hope this works for you, if you bump into smb problems where the WINS workgroup and NetBIOS name are reset or disappear at reboot.&lt;/p&gt;</description><link>http://david.gasperoni.org/post/47195334226</link><guid>http://david.gasperoni.org/post/47195334226</guid><pubDate>Fri, 05 Apr 2013 17:23:30 +0200</pubDate></item><item><title>I fell in love with Keka, an extremely well made OS X app for...</title><description>&lt;img src="http://25.media.tumblr.com/e998feb179fccb358094c27bb047af4c/tumblr_mklpscr1mq1qej2y3o1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;I fell in love with &lt;a href="http://www.kekaosx.com/en/" title="Download Keka" target="_blank"&gt;Keka&lt;/a&gt;, an extremely well made OS X app for compressing archives. It made me switch to &lt;strong&gt;7z&lt;/strong&gt; as my favorite and default format. Results are impressive (see picture to compare a file sizes).&lt;/p&gt;
&lt;p&gt;Because of the way it’s designed and configurable, it now sits in my Dock and awaits for stuff to be dropped on it, knowing it will do the job right. If I need anything out of the ordinary, I’ll just launch it, and just drop whatever stuff there, after choosing the different format.&lt;/p&gt;
&lt;p&gt;It got some fine details right, like the ability to automatically exclude resource forks (.DS_Store) files automatically.&lt;/p&gt;</description><link>http://david.gasperoni.org/post/46892473533</link><guid>http://david.gasperoni.org/post/46892473533</guid><pubDate>Tue, 02 Apr 2013 02:09:00 +0200</pubDate></item><item><title>Downloading online videos made (hacker-)friendly</title><description>&lt;p&gt;&lt;span&gt;This is my &lt;/span&gt;favorite&lt;span&gt; way to download YouTube videos (or Vimeo and much more). Here is the initial setup:&lt;/span&gt;&lt;/p&gt;
&lt;ol&gt;&lt;li&gt;&lt;span&gt;Install `youtube-dl` (via &lt;a href="http://mxcl.github.com/homebrew/" title="Get homebrew for OS X" target="_blank"&gt;homebrew&lt;/a&gt; for OS X)&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://drupalize.me/videos/setting-bash-aliases" title="Setting up Bash Aliases  Drupalize.me" target="_blank"&gt;Set up bash aliases&lt;/a&gt; such as these:&lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;&lt;code&gt;alias yt1080="youtube-dl -f 37/46 -o '[%(uploader)s] %(title)s.%(ext)s' $1"&lt;br/&gt;alias yt720="youtube-dl -f 22/45 -o '[%(uploader)s] %(title)s.%(ext)s' $1"&lt;br/&gt;alias yt480="youtube-dl -f 44/35/18 -o '[%(uploader)s] %(title)s.%(ext)s' $1"&lt;br/&gt;alias yt360="youtube-dl -f 18/43/34 -o '[%(uploader)s] %(title)s.%(ext)s' $1"&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Now whenever you want to download a video, just type &lt;strong&gt;yt1080&lt;/strong&gt;, &lt;strong&gt;yt720&lt;/strong&gt;, &lt;strong&gt;yt480&lt;/strong&gt; or &lt;strong&gt;yt360&lt;/strong&gt; (depending on the desired quality) followed by the url of the video (or just video id) to start downloading the video with a nicely formatted filename. The script will select the mp4 version first, falling back to webm or flv, respectively. Example:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;$ yt720 fdJc1_IBKJA&lt;br/&gt;[youtube] Setting language&lt;br/&gt;[youtube] fdJc1_IBKJA: Downloading video webpage&lt;br/&gt;[youtube] fdJc1_IBKJA: Downloading video info webpage [youtube] fdJc1_IBKJA: Extracting video information&lt;br/&gt; [download] Destination: [devinsupertramp] World's Most Insane Rope Swing Ever!!! - Canyon Cliff Jump.mp4&lt;br/&gt;[download] 4.0% of 82.25M at 658.52k/s ETA 02:02 &lt;/code&gt;&lt;/p&gt;</description><link>http://david.gasperoni.org/post/44576979716</link><guid>http://david.gasperoni.org/post/44576979716</guid><pubDate>Tue, 05 Mar 2013 01:08:00 +0100</pubDate><category>bash</category><category>youtube</category><category>vimeo</category><category>os x</category></item><item><title>How to setup mcrypt for php in OS X</title><description>&lt;p&gt;With &lt;a href="http://mxcl.github.com/homebrew/" target="_blank"&gt;Homebrew&lt;/a&gt;, it&amp;#8217;s very easy. Given that you tapped in with &lt;a href="https://github.com/josegonzalez/homebrew-php#installation" target="_blank"&gt;Jose Gonzalez&amp;#8217;s php repo&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;1. Install mcrypt and it&amp;#8217;s libraries by typing: &lt;code&gt;brew install mcrypt php53-mcrypt&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;2. add the content of &lt;code&gt;/usr/local/etc/php/5.3/conf.d/ext-mcrypt.ini&lt;/code&gt; to &lt;code&gt;/etc/php.ini&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;3. restart Apache ( &lt;code&gt;sudo apachectl restart&lt;/code&gt; )&lt;/p&gt;</description><link>http://david.gasperoni.org/post/33042523140</link><guid>http://david.gasperoni.org/post/33042523140</guid><pubDate>Sun, 07 Oct 2012 01:51:57 +0200</pubDate><category>php</category><category>os</category><category>osx</category><category>mac</category></item><item><title>Quick tip: Empty a file's contents with the Terminal</title><description>&lt;pre&gt;&amp;gt; filename&lt;/pre&gt;
&lt;p&gt;In other words: dump whatever is in front of the &amp;#8220;&lt;strong&gt;&amp;gt;&lt;/strong&gt;&amp;#8221; sign (nothing) into the specified file.&lt;br/&gt;Comes in handy for flushing files, while keeping permissions.&lt;br/&gt;For a while I was doing rm+touch+chmod, until I found out about this.&lt;/p&gt;</description><link>http://david.gasperoni.org/post/25669386226</link><guid>http://david.gasperoni.org/post/25669386226</guid><pubDate>Fri, 22 Jun 2012 23:13:00 +0200</pubDate><category>UNIX</category><category>shell</category><category>tech</category></item><item><title>Error #1062 - A (somewhat) curious MySQL situation</title><description>&lt;p&gt;When I was importing a bunch of records from CSVs into a MySQL database, at some point I ran into an intriguing issue. Totally legit, but still strange in the way it shows up:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;#1062 - Duplicate entry '127' for key 'PRIMARY' &lt;/code&gt;&lt;/p&gt;
&lt;p&gt;How can the AUTO_INCREMENT&amp;#8217;ed primary key be duplicated?&lt;br/&gt;My table is pretty straightforward: some &lt;code&gt;varchars&lt;/code&gt;, some &lt;code&gt;ints&lt;/code&gt;, a couple of &lt;code&gt;dates&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;The important detail here is the primary key, the typical &lt;code&gt;id&lt;/code&gt; that is generally the first field. &lt;a href="http://5by5.tv/buildanalyze" target="_blank"&gt;Turns out&lt;/a&gt;, for some reason I set it as tinyint(4) when I created the table, thinking it would be enough, being the table not supposed to be big. As &lt;a href="http://dev.mysql.com/doc/refman/5.0/en/integer-types.html" title="this table" target="_blank"&gt;this table&lt;/a&gt; shows, the maximum value for signed tinyint is 127, just like the error message reported. When MySQL tries to increase that value, the field is capped to 127 and it reports the duplication issue.&lt;/p&gt;
&lt;p&gt;The solution is to simply set it a bigger cap value. A &lt;code&gt;int&lt;/code&gt; will work fine for now.&lt;/p&gt;</description><link>http://david.gasperoni.org/post/25115778182</link><guid>http://david.gasperoni.org/post/25115778182</guid><pubDate>Fri, 15 Jun 2012 14:00:39 +0200</pubDate><category>mysql</category><category>tech</category><category>programming</category></item><item><title>randomyesusefulno:

Helpful tennis ball
</title><description>&lt;img src="http://24.media.tumblr.com/tumblr_m57z0wfPp51qzy0kyo1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a class="tumblr_blog" href="http://randomyesusefulno.com/post/24570659903/helpful-tennis-ball" target="_blank"&gt;randomyesusefulno&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://laughingsquid.com/helpful-tennis-ball/" target="_blank"&gt;Helpful tennis ball&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://david.gasperoni.org/post/24597614239</link><guid>http://david.gasperoni.org/post/24597614239</guid><pubDate>Thu, 07 Jun 2012 09:22:50 +0200</pubDate><category>funny</category></item><item><title>Avería – The Average Font</title><description>&lt;a href="http://iotic.com/averia/"&gt;Avería – The Average Font&lt;/a&gt;: &lt;blockquote&gt;
&lt;p&gt;In the end, I decided to release the font using the SIL Open Font License – which means anyone can use it pretty much however they like – and to include within the family Regular, Bold and Light variants with Italics.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I personally find it to be very good for movie subtitles (and so I set it up in VLC).&lt;/p&gt;</description><link>http://david.gasperoni.org/post/21776257787</link><guid>http://david.gasperoni.org/post/21776257787</guid><pubDate>Wed, 25 Apr 2012 12:16:17 +0200</pubDate><category>fonts</category><category>tech</category></item><item><title>Woz on Mac OS price.</title><description>&lt;p&gt;From &lt;a href="http://www.lettersofnote.com/2012/02/apple-must-make-macintosh-standard.html" title="Letters of Note: Apple must make Macintosh a standard" target="_blank"&gt;Letters of Note: Apple must make Macintosh a standard&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Apple co-founder Steve Wozniak has since said:&lt;br/&gt;&amp;#8220;The computer was never the problem. The company&amp;#8217;s strategy was. Apple  saw itself as a hardware company; in order to protect our hardware  profits, we didn&amp;#8217;t license our operating system. We had the most  beautiful operating system, but to get it you had to buy our hardware at  twice the price. That was a mistake. What we should have done was  calculate an appropriate price to license the operating system. We were  also naive to think that the best technology would prevail. It often  doesn&amp;#8217;t.&amp;#8221;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Since &lt;a href="http://techdrops.tumblr.com/post/7996843385/osx-is-the-most-expensive-operating-system" target="_blank"&gt;I believe this is still true&lt;/a&gt; (maybe not in the numbers of multitude as back then) it feels like Woz agrees with me.&lt;/p&gt;</description><link>http://david.gasperoni.org/post/18242281656</link><guid>http://david.gasperoni.org/post/18242281656</guid><pubDate>Sat, 25 Feb 2012 10:38:00 +0100</pubDate><category>Apple</category><category>Wozniak</category><category>history</category><category>OS X</category></item><item><title>Easily delete files that won't get trashed in OS X</title><description>&lt;p&gt;Isn&amp;#8217;t it annoying when sometimes files won&amp;#8217;t just get flushed along with everything else when you&amp;#8217;re emptying the trash in OS X? It says that they are in use, even if you&amp;#8217;re sure nothing is using it? One solution is to log out and then try again, but a quicker one is:&lt;/p&gt;
&lt;ol&gt;&lt;li&gt;Launch Terminal (/Applications/Utilities/Terminal.app)&lt;/li&gt;
&lt;li&gt;Type &lt;strong&gt;rm -r ~/.Trash/&amp;lt;filename&amp;gt;&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;TIP: use the &lt;em&gt;tab&lt;/em&gt; key when you need to type the file name, as it will auto-complete the command for you. You can even start typing the first characters of the name and then press tab.&lt;/p&gt;
&lt;p&gt;NB: Be careful with that command. If carelessly used can be harmful to the system.&lt;/p&gt;</description><link>http://david.gasperoni.org/post/13918073929</link><guid>http://david.gasperoni.org/post/13918073929</guid><pubDate>Thu, 08 Dec 2011 13:07:32 +0100</pubDate><category>os x</category></item><item><title>If your SuperDrive is not working anymore in Lion...</title><description>&lt;a href="http://www.mac-forums.com/forums/os-x-operating-system/245917-heads-up-lion-superdrive-fake-glitch-possibly.html"&gt;If your SuperDrive is not working anymore in Lion...&lt;/a&gt;: &lt;p&gt;I was already preparing myself to go the closest Apple Center for repairing. Here are the step to fix the issue yourself:&lt;/p&gt;
&lt;ol&gt;&lt;li&gt;Open System Preferences &gt; CDs and DVDs&lt;/li&gt;
&lt;li&gt;Change all the options and revert them back.&lt;/li&gt;
&lt;li&gt;Now your drive should work fine.&lt;/li&gt;
&lt;/ol&gt;</description><link>http://david.gasperoni.org/post/12942201003</link><guid>http://david.gasperoni.org/post/12942201003</guid><pubDate>Fri, 18 Nov 2011 00:10:00 +0100</pubDate><category>apple</category><category>macbook</category></item><item><title>Nice Lion Touch: Swipe for Dock Exposé</title><description>&lt;a href="http://astroaficionado.net/2011/11/09/nice-lion-touch-swipe-dock-expose/"&gt;Nice Lion Touch: Swipe for Dock Exposé&lt;/a&gt;: &lt;p&gt;&lt;a class="tumblr_blog" href="http://mac.finerthingsin.com/post/12599487226/nice-lion-touch-swipe-for-dock-expose" target="_blank"&gt;finermac&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Steve Lyb discovered a handy multi-touch gesture for quickly triggering OS X’s Exposé feature to focus on the open windows of a specific app, instead of all open windows.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Simply swipe down on the docked apps.&lt;/p&gt;</description><link>http://david.gasperoni.org/post/12841530602</link><guid>http://david.gasperoni.org/post/12841530602</guid><pubDate>Tue, 15 Nov 2011 18:58:04 +0100</pubDate></item><item><title>
Here’s to the crazy ones.
TextEdit.app
(via @hotdogsladies)
</title><description>&lt;img src="http://24.media.tumblr.com/tumblr_lsrj4xE5Vo1qmifpro1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;blockquote&gt;
&lt;p&gt;Here’s to the crazy ones.&lt;/p&gt;
&lt;p&gt;TextEdit.app&lt;/p&gt;
&lt;p&gt;(via @hotdogsladies)&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://david.gasperoni.org/post/11201348331</link><guid>http://david.gasperoni.org/post/11201348331</guid><pubDate>Sun, 09 Oct 2011 01:13:04 +0200</pubDate><category>apple</category><category>steve jobs</category></item><item><title>Sumatra PDF</title><description>&lt;a href="http://blog.kowalczyk.info/software/sumatrapdf/free-pdf-reader.html"&gt;Sumatra PDF&lt;/a&gt;: &lt;p&gt;I was sick of Adobe Reader so I searched for a better alternative on alternativeto.net&lt;br/&gt;This one is definitely worth it: blazing fast, super simple.&lt;/p&gt;
&lt;p&gt;EDIT: Nevertheless, I had to do &lt;a href="http://forums.fofou.org/sumatrapdf/topic?id=2026327" target="_blank"&gt;this&lt;/a&gt; using #C0C0C0 as -bgcolor.&lt;/p&gt;</description><link>http://david.gasperoni.org/post/9893196951</link><guid>http://david.gasperoni.org/post/9893196951</guid><pubDate>Wed, 07 Sep 2011 00:46:00 +0200</pubDate><category>software</category><category>windows</category></item><item><title>March of the Penguin: Ars looks back at 20 years of Linux</title><description>&lt;a href="http://arstechnica.com/open-source/news/2011/08/march-of-the-penguin-ars-looks-back-at-20-years-of-linux.ars"&gt;March of the Penguin: Ars looks back at 20 years of Linux&lt;/a&gt;: &lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;“Linux and the Internet have together changed human civilization more than any other pair of inventions.”&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;span&gt;Eben Moglen&lt;/span&gt;&lt;/p&gt;</description><link>http://david.gasperoni.org/post/9713824631</link><guid>http://david.gasperoni.org/post/9713824631</guid><pubDate>Fri, 02 Sep 2011 21:10:52 +0200</pubDate><category>linux</category><category>internet</category></item><item><title>
Focusing is about saying no.

Also, check out this epic...</title><description>&lt;iframe width="400" height="300" src="http://www.youtube.com/embed/udyy2gQyNso?wmode=transparent&amp;autohide=1&amp;egm=0&amp;hd=1&amp;iv_load_policy=3&amp;modestbranding=1&amp;rel=0&amp;showinfo=0&amp;showsearch=0" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;br/&gt;&lt;br/&gt;&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Focusing is about saying no.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Also, check out this epic follow-up to the question: &lt;a title="youtube.com/watch?v=FF-tKLISfPE" href="http://www.youtube.com/watch?v=FF-tKLISfPE" target="_blank"&gt;youtube.com/watch?v=FF-tKLISfPE&lt;/a&gt;&lt;/p&gt;</description><link>http://david.gasperoni.org/post/9627924663</link><guid>http://david.gasperoni.org/post/9627924663</guid><pubDate>Wed, 31 Aug 2011 17:18:00 +0200</pubDate><category>steve jobs</category><category>apple</category></item><item><title>seldo:

This is genuinely Microsoft’s idea of a “streamlined”,...</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_lqp8t4fUgg1qa9qvso1_r1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://seldo.tumblr.com/post/9549775746" target="_blank"&gt;seldo&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;This is genuinely Microsoft’s idea of a “streamlined”, “optimized” UI for Windows Explorer. They were so proud of it they wrote a &lt;a href="http://blogs.msdn.com/b/b8/archive/2011/08/26/improvements-in-windows-explorer.aspx" target="_blank"&gt;blog post&lt;/a&gt; about it.&lt;/p&gt;
&lt;p&gt;The post is a sort of masterpiece of crazy rationalization, but I think my favourite part may be &lt;a href="http://blogs.msdn.com/cfs-filesystemfile.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-29-43-metablogapi/8816.Figure-10-_2D00_-Home-tab-usage-heatmap_5F00_2.png" target="_blank"&gt;this screenshot&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;&lt;img src="http://blogs.msdn.com/cfs-filesystemfile.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-29-43-metablogapi/8816.Figure-10-_2D00_-Home-tab-usage-heatmap_5F00_2.png"/&gt;&lt;/p&gt;
&lt;p&gt;Here, they proudly overlay the UI with data from their research into how often various commands are used. They use this to show that “the commands that make up 84% of what users do in Explorer are now in one tab”. But the more important thing is that the remaining 50% of the bar is taken up by &lt;strong&gt;buttons that &lt;/strong&gt;&lt;strong&gt;nobody will ever use, ever, even according to Microsoft’s own research&lt;/strong&gt;. And yet somehow they remain smack bang in the middle of the interface. The insanity is further enriched by this graph:&lt;/p&gt;
&lt;p&gt;&lt;img src="http://blogs.msdn.com/cfs-filesystemfile.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-29-43-metablogapi/3125.Figure-6-_2D00_-Command-entrypoint_5F00_2.png" height="397" width="578"/&gt;&lt;/p&gt;
&lt;p&gt;Again, this is Microsoft’s own research, cited in the same post: nobody — almost literally 0% of users — uses the menu bar, and only 10% of users use the command bar. Nearly everybody is using the context menu or hotkeys. So the solution, obviously, is to make both the menu bar and the command bar bigger and more prominent. Right?&lt;/p&gt;
&lt;p&gt;Microsoft UI has officially entered the realm of self-parody.&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://david.gasperoni.org/post/9592863011</link><guid>http://david.gasperoni.org/post/9592863011</guid><pubDate>Tue, 30 Aug 2011 20:13:01 +0200</pubDate></item><item><title>Steve Jobs’ Patents</title><description>&lt;a href="http://www.nytimes.com/interactive/2011/08/24/technology/steve-jobs-patents.html?ref=technology#patent/user-programmable-switch-for-portable-data-processing-devices_8000736"&gt;Steve Jobs’ Patents&lt;/a&gt;</description><link>http://david.gasperoni.org/post/9424593310</link><guid>http://david.gasperoni.org/post/9424593310</guid><pubDate>Fri, 26 Aug 2011 22:17:41 +0200</pubDate><category>steve jobs</category></item><item><title>Icon Ambulance (by Vic Gundotra)</title><description>&lt;a href="https://plus.google.com/107117483540235115863/posts/gcSStkKxXTw"&gt;Icon Ambulance (by Vic Gundotra)&lt;/a&gt;: &lt;p&gt;&lt;em&gt;One Sunday morning, January 6th, 2008 I was attending religious services  when my cell phone vibrated. As discreetly as possible, I checked the  phone and noticed that my phone said “Caller ID unknown”. I choose to  ignore.&lt;/em&gt;&lt;br/&gt;&lt;br/&gt;&lt;em&gt;After services, as I was walking to my car with my  family, I checked my cell phone messages. The message left was from  Steve Jobs. “Vic, can you call me at home? I have something urgent to  discuss” it said.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;[follow link on title to keep reading]&lt;/strong&gt;&lt;/p&gt;</description><link>http://david.gasperoni.org/post/9372565388</link><guid>http://david.gasperoni.org/post/9372565388</guid><pubDate>Thu, 25 Aug 2011 14:16:00 +0200</pubDate><category>steve jobs</category><category>apple</category><category>google</category></item></channel></rss>
