<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:media="http://search.yahoo.com/mrss/"><channel><title><![CDATA[iGamaHQ § ]]></title><description><![CDATA[iGamaHQ § ]]></description><link>http://my-ghost-blog.com/</link><generator>Ghost 0.11</generator><lastBuildDate>Sat, 14 Apr 2018 13:32:53 GMT</lastBuildDate><atom:link href="http://my-ghost-blog.com/rss/" rel="self" type="application/rss+xml"/><ttl>60</ttl><item><title><![CDATA[I want to be a developer]]></title><description><![CDATA[<p>Recently i'm involved with lot of recruiting, so here is some advise for new-graduates / new-developers who want to follow the route of Software Development and improve their knowledge/skills.  </p>

<h2>Twitter</h2>  

<p>If you are not using, you should. Follow people related to the technologies you want to use or are using.</p>]]></description><link>http://my-ghost-blog.com/i-want-to-be-a-developer/</link><guid isPermaLink="false">249e1492-268c-4ef9-87fe-cf34bb9b7cad</guid><category><![CDATA[advise]]></category><dc:creator><![CDATA[igama]]></dc:creator><pubDate>Fri, 14 Jun 2013 16:38:19 GMT</pubDate><content:encoded><![CDATA[<p>Recently i'm involved with lot of recruiting, so here is some advise for new-graduates / new-developers who want to follow the route of Software Development and improve their knowledge/skills.  </p>

<h2>Twitter</h2>  

<p>If you are not using, you should. Follow people related to the technologies you want to use or are using. It's my main source of news regarding the latest technologies. The great thing about twitter is that you can just send out questions to other users directly.  </p>

<h2>Github</h2>  

<p>Create a Github account and place your personal projects there, even if they are experiments with new technologies that you are learning. Put your projects there even if they are not finished, just code a project with a new technology to try it out.  This shows recruiters/companies:  </p>

<ul>  
    <li>What tech you are playing with; and</li>
    <li>You like to learn and try new things;</li>
</ul>  

<p>Also, try to contribute to one or two Open Source projects.Even if it's just improving documentation, answering questions other users have. This can help you understand projects and the code a bit better.  </p>

<h2>Codeschool, tutorials, (...)</h2>  

<p>Have you done <a title="Codeschool.com" href="http://codeschool.com/">Codeschool</a> or other tutorials? get the code on Git, and get that knowledge on the CV, e.g:  </p>

<ul>  
    <li>Beginner knowledge on NodeJS, AngularJS, Rails.</li>
</ul>  

<p>Even if it's basic, it shows that you already ventured, like to learn stuff, and have some knowledge that can be used.</p>

<p>Also, Check <a title="Stackoverflow.com" href="http://stackoverflow.com/">stackoverflow.com</a>, one of the best places to ask questions, and find solutions.</p>

<p>Try out stuff :D  </p>

<h2>What to learn?</h2>  

<p>Technologies / Frameworks with high demand internationally?  </p>

<ul>  
    <li>Javascript</li>
    <li>AngularJS</li>
    <li>NodeJS (You see the trend?)</li>
    <li>Ruby, Ruby on Rails,</li>
    <li>Go-Lang,</li>
    <li>MongoDB,</li>
    <li>HTML5,</li>
    <li>Mobile Development (HTML5/Native)</li>
</ul>  

<p>Hope that helps the next software engineers :)  </p>

<h2>Create a name</h2>  

<p>Use 1 and 2 to make a name in the community, use <a title="Stackoverflow.com" href="http://stackoverflow.com/">stackoverflow.com</a>, go to conferences.  </p>

<h2>Is University enough?</h2>  

<p>No. Universities teach you the basis, how to think, how to learn by your self. You need to study outside of that environment, create your own play projects, try to clone something if you don't have an idea.</p>

<p>&nbsp;</p>

<p><strong>What next?</strong></p>

<p>I'll follow up this blog post with resources that you can use to learn and deploy your projects :D</p>]]></content:encoded></item><item><title><![CDATA[Improve the speed of the Android Emulator]]></title><description><![CDATA[<p>One of the biggest complains I ear about developing for Android, it the Android Emulator. By default, the <a title="ADT" href="http://developer.android.com/sdk/index.html">Android Development Toolkit (adt)</a> creates a Android Emulator with a ARM processor. This emulation of the ARM processor is heavy on the machine (CPU+RAM). However there is a solution to speed</p>]]></description><link>http://my-ghost-blog.com/android-emulator-speed/</link><guid isPermaLink="false">3ae00adf-ace1-4ae0-91c6-b3d72570bf28</guid><category><![CDATA[android]]></category><category><![CDATA[Mobile]]></category><dc:creator><![CDATA[igama]]></dc:creator><pubDate>Sun, 24 Mar 2013 11:53:51 GMT</pubDate><content:encoded><![CDATA[<p>One of the biggest complains I ear about developing for Android, it the Android Emulator. By default, the <a title="ADT" href="http://developer.android.com/sdk/index.html">Android Development Toolkit (adt)</a> creates a Android Emulator with a ARM processor. This emulation of the ARM processor is heavy on the machine (CPU+RAM). However there is a solution to speed up the Emulator and light on the machine:  </p>

<ul>  
    <li>Using x86 hardware acceleration on Android images ver. 10 and 15+ (2.3.3 and 4.0.2+)</li>
    <li>Using GPU OpenGL acceleration for interface rendering on images ver 14+ (Android 4.x)</li>
</ul>  

<p>By using this option, you are "using your native processor" instructions, taking advantage of your hardware.</p>

<p><strong>1 -</strong> Open the Android SDK Manager and install 2 packages:  </p>

<ul>  
    <li>Intel x86 Atom System Image</li>
    <li>Intel x86 Emulator Accelerator (HAXM)</li>
</ul>  

<p><img class="aligncenter size-full wp-image-386" title="SDKManager" src="http://res.cloudinary.com/dh0hkrlob/image/upload/v1396121901/SDKManager_c0weqf.png" alt="" width="271" height="67"></p>

<p><strong>Linux</strong></p>

<p>You need to install KVM  </p>

<ul>  
    <li><a href="https://help.ubuntu.com/community/KVM/Installation">https://help.ubuntu.com/community/KVM/Installation</a></li>
    <li><a href="http://developer.android.com/tools/devices/emulator.html#accel-vm">http://developer.android.com/tools/devices/emulator.html#accel-vm</a></li>
</ul>  

<p><strong>Windows</strong>  </p>

<ul>  
    <li><a href="http://developer.android.com/tools/devices/emulator.html#accel-vm">http://developer.android.com/tools/devices/emulator.html#accel-vm</a></li>
</ul>  

<p><strong>Mac</strong></p>

<p>Open the <span style="text-decoration: underline;">HAXM</span> Installation file from adt-bundle-mac-x86<em>64/sdk/extras/intel/<strong>haxm-macosx</strong></em>r02.dmg and install the PKG.</p>

<p>If you have a <span style="text-decoration: underline;">CaseSensitive</span> File System you will get an error message <span style="text-decoration: underline;">"VT/NX not present"</span>.  </p>

<ul>  
    <li>Right-click on IntelHAXM_1.0.1.mpkg -&gt; Show Package Contents</li>
    <li>Contents -&gt; Packages -&gt; intelhaxm.pkg</li>
</ul>  

<p><img class="aligncenter size-medium wp-image-387" title="OSXintelhaxm" src="http://res.cloudinary.com/dh0hkrlob/image/upload/h_61,w_300/v1396121899/OSXintelhaxm_barhsx.png" alt="" width="300" height="61"></p>

<p><span style="text-decoration: underline;"><strong>ALL</strong></span></p>

<p><strong>2 -</strong> After the driver is installed for you environment, close Eclipse</p>

<p><strong>3 -</strong> Setup the new Emulator - Open the Android Virtual Device Manager <br>
CPU : <span style="text-decoration: underline;"><strong>Intel Atom x86</strong></span> <br>
Emulation Options : <span style="text-decoration: underline;"><strong>Use Host GPU</strong></span></p>

<p><a href="http://res.cloudinary.com/dh0hkrlob/image/upload/v1396121903/AVDM_embvmd.png"><img class="aligncenter size-medium wp-image-385" title="AVDM" src="http://res.cloudinary.com/dh0hkrlob/image/upload/h_300,w_273/v1396121903/AVDM_embvmd.png" alt="" width="273" height="300"></a> <br>
<strong>4 -</strong> Start your device!</p>]]></content:encoded></item><item><title><![CDATA[The fake iPhone 5]]></title><description><![CDATA[<p>Recently I got my hands on a fake iPhone5. I saw some fake iphones before, so when I got this one, I was expecting another cheap knockoff. whoever I was surprised by this one, comparing with the real thing, most "normal" users wouldn't see the diference for some time. The</p>]]></description><link>http://my-ghost-blog.com/the-fake-iphone-5/</link><guid isPermaLink="false">eff6234c-d87b-430a-b09d-dc7267b37829</guid><category><![CDATA[android]]></category><category><![CDATA[china]]></category><category><![CDATA[fake]]></category><category><![CDATA[iphone]]></category><dc:creator><![CDATA[igama]]></dc:creator><pubDate>Mon, 07 Jan 2013 09:48:42 GMT</pubDate><content:encoded><![CDATA[<p>Recently I got my hands on a fake iPhone5. I saw some fake iphones before, so when I got this one, I was expecting another cheap knockoff. whoever I was surprised by this one, comparing with the real thing, most "normal" users wouldn't see the diference for some time. The following post shows some information and screens of the device.  </p>

<h2>Kaiy iPhone 5</h2>  

<p>The following picture show the details of the Case and Screen. The case is a great copy of the original iPhone5, however, the screen is not Retina (1136×640, 370dpi), It's 854x480, 240dpi. Look with attention and you can see the pixels. Another thing that jumps out, while having the system language in English, are the Chinese characters on the screen. The excuse that I eard for this, was the device was acquired in China and he had some problems with some apps, a system restore would resolve that... (Yeah right...). Apple is known to worry about details, if this would happen on a real device, that would be a serious flaw.</p>

<p style="text-align: left;">So, lets get in to some details, quick info from Device:</p>

<ul>  
    <li>Processor: ARMv7 Processor rev 10 (v7l)</li>
    <li>Memory: 483796 kB</li>
    <li>Screen: 854x480, 240dpi</li>
    <li>Android : 4.0.1</li>
</ul>  

<p style="text-align: left;">The following gallery shows various screens, Home, iTunes, Settings, Maps, Siri, Unlock, Clock, iCloud.</p>  

<p>As you can see, once you start moving around in the Apps you see something is really wrong.  </p>

<ul>  
    <li>iTunes "for android" ?</li>
    <li>iCloud -&gt; add a Google or Corporate account?</li>
    <li>Siri is an app on your Home Screen and in chinese?</li>
</ul>  

<p>Considering the quality of a fake iPhone4 I saw 1 year ago, this device is a big leap forward in terms of quality and responsiveness. However there is still a big gap until it can be a great fake. The issue I see with this fake is that it does fool people, I saw some users really believing this was a real iPhone5.</p>

<p>You can find the System dump, outputs from DDMS and dumpsys, and full resolution screens at the following share: <a title="fake iPhone 5" href="https://cloudpt.pt/link/79d971b3-6ffa-40f3-803d-f24b3835afe6/fakeiphone5">https://cloudpt.pt/link/79d971b3-6ffa-40f3-803d-f24b3835afe6/fakeiphone5</a> .</p>

<p>This was the information that I was able to get on the short time I had with the device. Hope you guys liked it ;)</p>]]></content:encoded></item><item><title><![CDATA[Codebits2012 : Vagrant - Team development made easy]]></title><description><![CDATA[<p>My presentation at Codebits 2012</p>

<script async class="speakerdeck-embed" data-id="f2dc0bf0121401307fca1231381d631d" data-ratio="1.33333333333333" src="//speakerdeck.com/assets/embed.js"></script>

<p>@ <a href="https://speakerdeck.com/igama/vagrant-team-development-made-easy">speakerdeck.com/igama</a></p>]]></description><link>http://my-ghost-blog.com/codebits2012-vagrant-team-development/</link><guid isPermaLink="false">98a349d8-4de5-457c-b6e9-74be4b3fd0b7</guid><category><![CDATA[Codebits]]></category><category><![CDATA[development]]></category><category><![CDATA[team]]></category><category><![CDATA[vagrant]]></category><dc:creator><![CDATA[igama]]></dc:creator><pubDate>Fri, 16 Nov 2012 19:12:11 GMT</pubDate><content:encoded><![CDATA[<p>My presentation at Codebits 2012</p>

<script async class="speakerdeck-embed" data-id="f2dc0bf0121401307fca1231381d631d" data-ratio="1.33333333333333" src="//speakerdeck.com/assets/embed.js"></script>

<p>@ <a href="https://speakerdeck.com/igama/vagrant-team-development-made-easy">speakerdeck.com/igama</a></p>]]></content:encoded></item><item><title><![CDATA[When We Build]]></title><description><![CDATA[<p>One of the best presentations I've seen so far. By Wilson Miner, he talks about what happens when we stop thinking of ourselves not just as developers or experience designers, and take up the mantle as a new generation of product designers for a digital world?  </p>

<blockquote>When we're gone, all</blockquote>]]></description><link>http://my-ghost-blog.com/when-we-build/</link><guid isPermaLink="false">f04edb9d-a407-4754-aefc-75983fcdaf90</guid><category><![CDATA[Design]]></category><category><![CDATA[experience]]></category><category><![CDATA[talk]]></category><dc:creator><![CDATA[igama]]></dc:creator><pubDate>Mon, 22 Oct 2012 18:41:16 GMT</pubDate><content:encoded><![CDATA[<p>One of the best presentations I've seen so far. By Wilson Miner, he talks about what happens when we stop thinking of ourselves not just as developers or experience designers, and take up the mantle as a new generation of product designers for a digital world?  </p>

<blockquote>When we're gone, all that's left of us is what we've madeThe things you and I make may not leave a visible footprint on the Earth, but everything we make takes up space. Create noise. Competes for atention. What do we want to spend more time with? What do we want to shape us?</blockquote>

<p><iframe src="http://player.vimeo.com/video/34017777" width="500" height="281" frameborder="0" webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen></iframe> </p><p><a href="http://vimeo.com/34017777">Wilson Miner - When We Build</a> from <a href="http://vimeo.com/build">Build</a> on <a href="http://vimeo.com">Vimeo</a>.</p><p></p>

<p>You can find more information about this presentation at <a href="http://wm4.wilsonminer.com/build2011/">Wilson Miner's Page</a></p>]]></content:encoded></item><item><title><![CDATA[Veewee - Creating virtual machines made easy]]></title><description><![CDATA[<p><a title="veewee" href="https://github.com/jedi4ever/veewee">Veewee</a> is a tool to help create VirtualMachines (VMs) in a automated way, based on Templates. It's developed in Ruby and allows to create vagrant boxes, virtualbox, KVM and VMWare images.</p>

<p>On this example, I'm going to create a VM to work with <a title="Vagrant" href="http://vagrantup.com/">Vagrant</a> and it will be based on</p>]]></description><link>http://my-ghost-blog.com/veewee-creating-virtual-machines-made-easy/</link><guid isPermaLink="false">997d7823-d42b-48e0-b5fb-746ce300fa82</guid><category><![CDATA[debian]]></category><category><![CDATA[vagrant]]></category><category><![CDATA[veewee]]></category><dc:creator><![CDATA[igama]]></dc:creator><pubDate>Sat, 15 Sep 2012 18:57:02 GMT</pubDate><content:encoded><![CDATA[<p><a title="veewee" href="https://github.com/jedi4ever/veewee">Veewee</a> is a tool to help create VirtualMachines (VMs) in a automated way, based on Templates. It's developed in Ruby and allows to create vagrant boxes, virtualbox, KVM and VMWare images.</p>

<p>On this example, I'm going to create a VM to work with <a title="Vagrant" href="http://vagrantup.com/">Vagrant</a> and it will be based on Debian 6 AMD64 ( Debian-6.0.5-amd64-netboot ).</p>

<p>Requirements:  </p>

<ul>  
    <li>Ruby 1.9.2 - I recommend you install it using RVM</li>
</ul>  

<p>Lets start!</p>

<p>First step, cloning the repository:  </p>

<blockquote>git clone <a href="https://github.com/jedi4ever/veewee.git">https://github.com/jedi4ever/veewee.git</a>  
cd veewee  
gem install bundler  
bundle install</blockquote>  

<p>In the veewee/templates folder, you can find a list of all available templates for your virtual machines.  </p>

<blockquote>$ veewee vbox define 'debian605' 'Debian-6.0.5-amd64-netboot'  
The basebox 'debian605' has been succesfully created from the template 'Debian-6.0.5-amd64-netboot'  
You can now edit the definition files stored in definitions/debian605 or build the box with:  
veewee vbox build 'debian605'</blockquote>  

<p>With the template for your VM ready, you can edit the installation files in the definitions/debian605 folder. When you ready, just the "build" command and wait:  </p>

<blockquote>veewee vbox build 'debian605'</blockquote>  

<p>This should take around 10-15minutes depending on your machine and connection.</p>

<p>Veewee also as Tests, to verify you VM.  </p>

<blockquote>veewee vbox validate 'debian605'</blockquote>  

<p>After this, your VM is ready to be exported  </p>

<blockquote>vagrant basebox export 'debian605'</blockquote>  

<p>And now you have a box ready to use with Vagrant.</p>]]></content:encoded></item><item><title><![CDATA[everything starts from seduction...]]></title><description><![CDATA[<blockquote>As far as I am aware nobody ever worried about the fate of an object. The object is not even intelligible: it is just an alienated and despised part of the subject... But everything changes if one starts to think about seduction. Here the concern is no longer the subject</blockquote>]]></description><link>http://my-ghost-blog.com/everything-starts-from-seduction/</link><guid isPermaLink="false">8fc27922-dcd0-486e-909a-d1000786f47f</guid><dc:creator><![CDATA[igama]]></dc:creator><pubDate>Wed, 05 Sep 2012 15:33:38 GMT</pubDate><content:encoded><![CDATA[<blockquote>As far as I am aware nobody ever worried about the fate of an object. The object is not even intelligible: it is just an alienated and despised part of the subject... But everything changes if one starts to think about seduction. Here the concern is no longer the subject that desires but the object that seduces. Everything starts with the object and returns there, just as everything starts from seduction, and not from desire.</blockquote>  

<p style="text-align: right;">Jean Baudrillard, 1983</p>]]></content:encoded></item><item><title><![CDATA[On the web & Security]]></title><description><![CDATA[<p>A collection of some interesting links:</p>

<p><a href="https://github.com/WhiteHouse/petition"><strong>White-house goes open-source</strong></a>  </p>

<blockquote>Drupal installation profile powering We The People at petitions.whitehouse.gov</blockquote>  

<p><strong><a href="http://pineapple.io">http://pineapple.io</a></strong>  </p>

<blockquote>Pineapple is a massive community-driven resource aggregator for designers and developers that strives to make it extremely EASY to find what you're looking for</blockquote>  

<p><strong>Security Related</strong></p>

<p><strong><a href="http://www.youtube.com/watch?v=2ctRfWnisSk">DEFCON</a></strong></p>]]></description><link>http://my-ghost-blog.com/on-the-web-and-security/</link><guid isPermaLink="false">023df9f1-8bdb-45c3-9102-2479d16763c3</guid><dc:creator><![CDATA[igama]]></dc:creator><pubDate>Fri, 24 Aug 2012 15:40:00 GMT</pubDate><content:encoded><![CDATA[<p>A collection of some interesting links:</p>

<p><a href="https://github.com/WhiteHouse/petition"><strong>White-house goes open-source</strong></a>  </p>

<blockquote>Drupal installation profile powering We The People at petitions.whitehouse.gov</blockquote>  

<p><strong><a href="http://pineapple.io">http://pineapple.io</a></strong>  </p>

<blockquote>Pineapple is a massive community-driven resource aggregator for designers and developers that strives to make it extremely EASY to find what you're looking for</blockquote>  

<p><strong>Security Related</strong></p>

<p><strong><a href="http://www.youtube.com/watch?v=2ctRfWnisSk">DEFCON 18: How I Met Your Girlfriend 1</a><a href="http://www.youtube.com/watch?v=2ctRfWnisSk"> 2 </a><a href="http://www.youtube.com/watch?v=vJtmZZGcR54">3</a></strong>  </p>

<blockquote>3 Part presentation "How I Met Your Girlfriend": The discovery and execution of entirely new classes of Web attacks in order to meet your girlfriend.</blockquote>  

<p><a href="http://www.pwnpi.com/"><strong>Pwn Pi</strong></a>  </p>

<blockquote>Don't doubt the power of a Raspberry Pi - A Pen Test Drop Box Distro using the Raspberry Pi</blockquote>  

<p><strong><a href="http://www.ptcoresec.eu/?page_id=295">Videos from the Just4Meeting</a></strong>  </p>

<blockquote>Check in the PTCoreSec group page, the videos of various presentations done at the Just4Meeting 2012. For a good laugh, check the ones from Mike Kemp.</blockquote>]]></content:encoded></item><item><title><![CDATA[Philippe Starck: Design and destiny]]></title><description><![CDATA[<p><object width="526" height="374"><param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="wmode" value="transparent"><param name="bgColor" value="#ffffff"><param name="flashvars" value="vu=http://video.ted.com/talk/stream/2007/Blank/PhilipeStarck_2007-320k.mp4&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/PhilipeStarck-2007.embed_thumbnail.jpg&amp;vw=512&amp;vh=288&amp;ap=0&amp;ti=197&amp;lang=en&amp;introDuration=15330&amp;adDuration=4000&amp;postAdDuration=830&amp;adKeys=talk=philippe_starck_thinks_deep_on_design;year=2007;theme=evolution_s_genius;theme=design_like_you_give_a_damn;theme=tales_of_invention;theme=the_creative_spark;event=TED2007;tag=design;tag=humanity;tag=humor;tag=philosophy;tag=storytelling;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;"><embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgcolor="#ffffff" width="526" height="374" allowfullscreen="true" allowscriptaccess="always" flashvars="vu=http://video.ted.com/talk/stream/2007/Blank/PhilipeStarck_2007-320k.mp4&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/PhilipeStarck-2007.embed_thumbnail.jpg&amp;vw=512&amp;vh=288&amp;ap=0&amp;ti=197&amp;lang=en&amp;introDuration=15330&amp;adDuration=4000&amp;postAdDuration=830&amp;adKeys=talk=philippe_starck_thinks_deep_on_design;year=2007;theme=evolution_s_genius;theme=design_like_you_give_a_damn;theme=tales_of_invention;theme=the_creative_spark;event=TED2007;tag=design;tag=humanity;tag=humor;tag=philosophy;tag=storytelling;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;"></object></p>

<p>Thanks <a href="https://twitter.com/hschot" title="@hschot">@hschot</a> for showing me this video ;)</p>]]></description><link>http://my-ghost-blog.com/philippe-starck-design-and-destiny/</link><guid isPermaLink="false">e3d4cfb3-7984-4520-a0d1-54572a84fc5a</guid><category><![CDATA[Design]]></category><category><![CDATA[ted]]></category><dc:creator><![CDATA[igama]]></dc:creator><pubDate>Wed, 22 Aug 2012 06:20:43 GMT</pubDate><content:encoded><![CDATA[<p><object width="526" height="374"><param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="wmode" value="transparent"><param name="bgColor" value="#ffffff"><param name="flashvars" value="vu=http://video.ted.com/talk/stream/2007/Blank/PhilipeStarck_2007-320k.mp4&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/PhilipeStarck-2007.embed_thumbnail.jpg&amp;vw=512&amp;vh=288&amp;ap=0&amp;ti=197&amp;lang=en&amp;introDuration=15330&amp;adDuration=4000&amp;postAdDuration=830&amp;adKeys=talk=philippe_starck_thinks_deep_on_design;year=2007;theme=evolution_s_genius;theme=design_like_you_give_a_damn;theme=tales_of_invention;theme=the_creative_spark;event=TED2007;tag=design;tag=humanity;tag=humor;tag=philosophy;tag=storytelling;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;"><embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgcolor="#ffffff" width="526" height="374" allowfullscreen="true" allowscriptaccess="always" flashvars="vu=http://video.ted.com/talk/stream/2007/Blank/PhilipeStarck_2007-320k.mp4&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/PhilipeStarck-2007.embed_thumbnail.jpg&amp;vw=512&amp;vh=288&amp;ap=0&amp;ti=197&amp;lang=en&amp;introDuration=15330&amp;adDuration=4000&amp;postAdDuration=830&amp;adKeys=talk=philippe_starck_thinks_deep_on_design;year=2007;theme=evolution_s_genius;theme=design_like_you_give_a_damn;theme=tales_of_invention;theme=the_creative_spark;event=TED2007;tag=design;tag=humanity;tag=humor;tag=philosophy;tag=storytelling;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;"></object></p>

<p>Thanks <a href="https://twitter.com/hschot" title="@hschot">@hschot</a> for showing me this video ;)</p>]]></content:encoded></item><item><title><![CDATA[TEDxSydney - Sam Simmons - Being Silly]]></title><description><![CDATA[<iframe width="560" height="315" src="//www.youtube.com/embed/DdWECtyM36s" frameborder="0" allowfullscreen></iframe>

<p>Sam Simmons is one of the most daring and unconventional comics in Australia if not the world. Completely original and vastly absurd, he has one foot firmly planted into the soils of reality, and the other rooted deep into the psyche of being silly</p>

<p><a href="http://www.youtube.com/watch?v=DdWECtyM36s">@youtube</a></p>]]></description><link>http://my-ghost-blog.com/tedxsydney-sam-simmons-being-silly/</link><guid isPermaLink="false">7faf2d30-4422-4bd1-8ff9-eee01e835b2a</guid><category><![CDATA[Silly]]></category><category><![CDATA[tedx]]></category><dc:creator><![CDATA[igama]]></dc:creator><pubDate>Fri, 13 Jul 2012 19:56:49 GMT</pubDate><content:encoded><![CDATA[<iframe width="560" height="315" src="//www.youtube.com/embed/DdWECtyM36s" frameborder="0" allowfullscreen></iframe>

<p>Sam Simmons is one of the most daring and unconventional comics in Australia if not the world. Completely original and vastly absurd, he has one foot firmly planted into the soils of reality, and the other rooted deep into the psyche of being silly</p>

<p><a href="http://www.youtube.com/watch?v=DdWECtyM36s">@youtube</a></p>]]></content:encoded></item><item><title><![CDATA[F*ck You. Pay Me.]]></title><description><![CDATA[<p>Cool presentation done in 2011 on why contracts matter at least as much as the code &amp; design do...</p>

<p><a href="http://vimeo.com/22053820">http://vimeo.com/22053820</a></p>

<p><a title="F*ck you! Pay me" href="http://vimeo.com/22053820">http://vimeo.com/22053820</a></p>]]></description><link>http://my-ghost-blog.com/fck-you-pay-me/</link><guid isPermaLink="false">2a683617-6cfa-4e11-9ca0-c8387b5e4239</guid><dc:creator><![CDATA[igama]]></dc:creator><pubDate>Thu, 12 Jul 2012 11:27:48 GMT</pubDate><content:encoded><![CDATA[<p>Cool presentation done in 2011 on why contracts matter at least as much as the code &amp; design do...</p>

<p><a href="http://vimeo.com/22053820">http://vimeo.com/22053820</a></p>

<p><a title="F*ck you! Pay me" href="http://vimeo.com/22053820">http://vimeo.com/22053820</a></p>]]></content:encoded></item><item><title><![CDATA[On Startups : Interesting Articles]]></title><description><![CDATA[<p>Some articles to read, hope you enjoy them:  </p>

<ul>  
    <li><a href="http://www.fastcompany.com/1839317/smash-the-silos-build-the-business">To Build Your Business, Smash Your Silos</a></li>
    <li><a title="On Working Remotely" href="http://www.codinghorror.com/blog/2010/05/on-working-remotely.html">On Working Remotely</a></li>
    <li><a href="http://www.fastcodesign.com/1669738/eric-ries-to-get-to-the-root-of-a-hard-problem-just-ask-why-five-times">To Get To The Root Of A Hard Problem, Just Ask “Why” Five Times</a></li>
    <li><a title="What Startups Can Learn From Sun Tzu’s The Art Of War" href="http://techli.com/2012/06/startup-the-art-of-war/">What Startups Can Learn From Sun Tzu’s The Art Of Wa</a>r</li>
    <li><a title="An inside look at Switzerland’s seriously ambitious startup scene" href="http://thenextweb.com/eu/2012/05/27/an-inside-look-at-switzerlands-seriously-ambitious-startup-scene/">An inside look at Switzerland’</a></li></ul>]]></description><link>http://my-ghost-blog.com/on-startups-interesting-articles/</link><guid isPermaLink="false">a225083e-f924-4f33-865f-8a4986e526e1</guid><dc:creator><![CDATA[igama]]></dc:creator><pubDate>Thu, 14 Jun 2012 16:04:33 GMT</pubDate><content:encoded><![CDATA[<p>Some articles to read, hope you enjoy them:  </p>

<ul>  
    <li><a href="http://www.fastcompany.com/1839317/smash-the-silos-build-the-business">To Build Your Business, Smash Your Silos</a></li>
    <li><a title="On Working Remotely" href="http://www.codinghorror.com/blog/2010/05/on-working-remotely.html">On Working Remotely</a></li>
    <li><a href="http://www.fastcodesign.com/1669738/eric-ries-to-get-to-the-root-of-a-hard-problem-just-ask-why-five-times">To Get To The Root Of A Hard Problem, Just Ask “Why” Five Times</a></li>
    <li><a title="What Startups Can Learn From Sun Tzu’s The Art Of War" href="http://techli.com/2012/06/startup-the-art-of-war/">What Startups Can Learn From Sun Tzu’s The Art Of Wa</a>r</li>
    <li><a title="An inside look at Switzerland’s seriously ambitious startup scene" href="http://thenextweb.com/eu/2012/05/27/an-inside-look-at-switzerlands-seriously-ambitious-startup-scene/">An inside look at Switzerland’s seriously ambitious startup scene</a></li>
    <li><a title="Public speaking for normal people" href="http://www.humbledmba.com/public-speaking-for-normal-people">http://www.humbledmba.com/public-speaking-for-normal-people</a></li>
</ul>  

<p>&nbsp;</p>

<p>&nbsp;</p>]]></content:encoded></item><item><title><![CDATA[Aperture: Lab Ratt]]></title><description><![CDATA[<p>Following VALVe's web comic '<a title="Portal 2 : Lab Rat" href="http://www.thinkwithportals.com/comic/">Portal 2: Lab Rat</a>', a group of Fans decided to create a short movie based on it. It follows the story of the schizophrenic hero behind the walls, Doug Rattmann, filling in Portal and Portal 2 history gap.</p>

<p>&nbsp;</p>

<iframe src="https://www.youtube.com/embed/539oNONcCrI?rel=0" frameborder="0" width="560" height="315"></iframe>  

<p><a href="http://www.youtube.com/watch?feature=player_embedded&amp;v=539oNONcCrI">See on Youtube: Aperture: Lab</a></p>]]></description><link>http://my-ghost-blog.com/aperture-lab-ratt/</link><guid isPermaLink="false">b07d3421-21d7-4830-90ef-36aa2bfae509</guid><category><![CDATA[Apertude]]></category><category><![CDATA[Lab]]></category><category><![CDATA[movie]]></category><category><![CDATA[Portal]]></category><dc:creator><![CDATA[igama]]></dc:creator><pubDate>Mon, 11 Jun 2012 16:03:20 GMT</pubDate><content:encoded><![CDATA[<p>Following VALVe's web comic '<a title="Portal 2 : Lab Rat" href="http://www.thinkwithportals.com/comic/">Portal 2: Lab Rat</a>', a group of Fans decided to create a short movie based on it. It follows the story of the schizophrenic hero behind the walls, Doug Rattmann, filling in Portal and Portal 2 history gap.</p>

<p>&nbsp;</p>

<iframe src="https://www.youtube.com/embed/539oNONcCrI?rel=0" frameborder="0" width="560" height="315"></iframe>  

<p><a href="http://www.youtube.com/watch?feature=player_embedded&amp;v=539oNONcCrI">See on Youtube: Aperture: Lab Ratt</a></p>

<p>&nbsp;</p>

<p>&nbsp;</p>]]></content:encoded></item><item><title><![CDATA[Vagrant - What is it?]]></title><description><![CDATA[<h1><strong>What is Vagrant?</strong></h1>  

<p>Vagrant is a Ruby App to help with Virtual Machines (VMs). With it, you can share pre-configured VMs among users, allowing for a unified development environment to be used between them.</p>

<p><strong>Why is this important?</strong></p>

<p>This avoids that each developer installs extra software, library, extensions on their</p>]]></description><link>http://my-ghost-blog.com/vagrant-what-is-it/</link><guid isPermaLink="false">d88d847f-5a2b-4878-b6a8-24d5a67a8f66</guid><category><![CDATA[vagrant]]></category><category><![CDATA[virtualbox]]></category><category><![CDATA[vms]]></category><dc:creator><![CDATA[igama]]></dc:creator><pubDate>Wed, 25 Apr 2012 19:31:16 GMT</pubDate><content:encoded><![CDATA[<h1><strong>What is Vagrant?</strong></h1>  

<p>Vagrant is a Ruby App to help with Virtual Machines (VMs). With it, you can share pre-configured VMs among users, allowing for a unified development environment to be used between them.</p>

<p><strong>Why is this important?</strong></p>

<p>This avoids that each developer installs extra software, library, extensions on their local machines, since the VM has all the software and extras that the project will need. This way we can avoid conflicts with different versions, software, etc.</p>

<p><strong>So Vagrant is a Virtual Machine?</strong></p>

<p>Vagrant is not a Virtual Machine solution, e.g., Virtualbox, VMware. It is a “helper”, a automated solution to interact easily with VirtualBox from Oracle.</p>

<p>Vagrant will setup a new VM based on the pre-configured Box that is specified on the Vagrantfile. The user does not need to open VirtualBox and configure the system, vagrant will deal with it.</p>

<p>&nbsp;</p>

<h1>Installing Vagrant</h1>  

<p>To use Vagrant, you need Ruby and Virtualbox.</p>

<p>1 - Install Ruby. (If you on Mac OS X, there should be no problem);</p>

<p>2 - Get VirtualBox and the VirtualBox Extension Pack from <a title="VirtualBox" href="https://www.virtualbox.org/wiki/Downloads">virtualbox.org</a>;</p>

<p>3 - Get the latest vagrant installation package from <strong><a title="Vagrant" href="http://vagrantup.com/">vagrantup.com</a>;</strong></p>

<p>&nbsp;</p>

<h1>Your First Box</h1>  

<p>Following the example from Vagrant:</p>

<p><code> $ vagrant box add base http://files.vagrantup.com/lucid32.box <br>
$ vagrant init
$ vagrant up</code></p>

<p>And there you have it, a Ubuntu Lucid 32 Bits VirtualMachine ready to go.  </p>

<p style="padding-left: 30px;">User &amp; password = "vagrant" .</p>  

<p>Now you can SSH to it or open Virtualbox and you will see it there.</p>

<p><span style="text-decoration: underline;">For more community</span> created boxes ready to use, check out <strong><a href="http://vagrantbox.es/">vagrantbox.es</a></strong></p>

<p>&nbsp;</p>

<p>More tips on using vagrant will follow...</p>]]></content:encoded></item><item><title><![CDATA[Just4Meeting 2012]]></title><description><![CDATA[<p><strong></strong>Last year <a href="http://www.just4meeting.com"><strong>Just4Meeting</strong></a> was really cool! I was able to meet some cools guys and listen to some interesting talks. This year, this <strong>Security event</strong>, in Portugal, is back!</p>

<p>Information Security has been one of the most increasing concerns worldwide. Everyday new attacks and counter attacks emerge, making it impossible</p>]]></description><link>http://my-ghost-blog.com/just4meeting-2012/</link><guid isPermaLink="false">3e622b2f-f4f8-4aca-8534-9b934009d6d1</guid><category><![CDATA[events]]></category><category><![CDATA[Security]]></category><dc:creator><![CDATA[igama]]></dc:creator><pubDate>Fri, 13 Apr 2012 19:43:02 GMT</pubDate><content:encoded><![CDATA[<p><strong></strong>Last year <a href="http://www.just4meeting.com"><strong>Just4Meeting</strong></a> was really cool! I was able to meet some cools guys and listen to some interesting talks. This year, this <strong>Security event</strong>, in Portugal, is back!</p>

<p>Information Security has been one of the most increasing concerns worldwide. Everyday new attacks and counter attacks emerge, making it impossible for professionals to keep themselves up to date.</p>

<p><strong>From 6th to 8th July 2012</strong>  </p>

<blockquote>The J4M third edition intends to convene busy IT and Information Security Professionals with very little time to learn new technologies or just deepen their knowledge on IT security tools and techniques. With this in mind we gathered a group of hand picked internationally renowned professionals to share their expertise with all participants through training sessions, lectures and workshops.</blockquote>  

<p>Some of this year speakers:  </p>

<ul>  
    <li>Michele Orru´ - Core developers of The BeEF Project</li>
    <li>Michael Kemp - Security Consultant (Xiphos)</li>
    <li>Raoul Chiesa - Member of the ENISA</li>
</ul>  

<p>Check out the event's webpage, maybe we will see each other there ;)  </p>

<p style="text-align: right;"><a title="just4meeting" href="http://www.just4meeting.com">http://www.just4meeting.com</a></p>]]></content:encoded></item></channel></rss>