<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-4047884502467029467</atom:id><lastBuildDate>Thu, 19 Dec 2024 03:29:38 +0000</lastBuildDate><category>Android</category><category>Gadget</category><category>Tugas</category><category>Tutorial Android</category><category>INFOMEZZO</category><category>Review</category><category>Belajar Pemrograman C</category><category>Hardware Reviews</category><category>Belajar English</category><category>Costum ROM</category><category>Development Android</category><category>Grammar</category><category>OS</category><category>Open Source</category><category>Technology</category><category>Toefl</category><category>Tutorial HTML</category><category>Tutorial Ubuntu</category><category>Apk</category><category>CSS</category><category>Closed Source</category><category>Digital Cameras</category><category>Freeware</category><category>Games Full Version</category><category>Linux</category><category>Modem Mobile</category><category>Slackware</category><category>Software</category><category>Speaker</category><category>Tutorial Blog Pemula</category><category>Tutorial PC</category><category>Tutorial Tusfiles</category><category>Tutorial Windows</category><category>Ubuntu</category><category>VirtualBox</category><title>BLOG RUSH FLY</title><description>Tutorial, tips n tricks, windows, gadget android, linux, review, harga dan lainnya.</description><link>http://rushfly.blogspot.com/</link><managingEditor>noreply@blogger.com (Rza)</managingEditor><generator>Blogger</generator><openSearch:totalResults>41</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-6625503440182199831</guid><pubDate>Sun, 09 Nov 2014 06:00:00 +0000</pubDate><atom:updated>2014-11-09T13:05:28.092+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Belajar Pemrograman C</category><title>Program Penghapus File di Bahasa C</title><description>&lt;b&gt;Program Penghapus File di Bahasa C&lt;/b&gt; - Program ini bertujuan untuk menghapus file dengan menggunakan fungsi&amp;nbsp;&lt;b&gt;int remove ( const char * filename ).&lt;/b&gt;&amp;nbsp; Saya menggunakan array of char untuk menampung 25 character dan menggunakan statement If/else untuk menyatakan kondisi file.&lt;br /&gt;
&lt;br /&gt;
&lt;img alt=&quot;program-penghapus-file&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEieakKVZlNEUHL-Rwd4W3_PUP0FEEpiN1mZjQ5KriCHPcQ2nTfD2YJi-GFWAe4rFZdRj2EZxWZg5Y32mQMmiwu8kkJfFLhcbrX3EdJHhs4n7hRxm3RFGSBdsr2tmErOcNmfKSO1j_0jFD8/s1600/program-penghapus-file.png&quot; /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
Program Penghapus File dengan Bahasa Pemrograman C&lt;/h3&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;code class=&quot;hljs cpp&quot;&gt;&lt;span class=&quot;hljs-preprocessor&quot;&gt;#&lt;span class=&quot;hljs-keyword&quot;&gt;include&lt;/span&gt; &amp;lt;stdio.h&amp;gt;&lt;/span&gt;
&lt;span class=&quot;hljs-preprocessor&quot;&gt;#&lt;span class=&quot;hljs-keyword&quot;&gt;include&lt;/span&gt; &amp;lt;stdlib.h&amp;gt;&lt;/span&gt;
&lt;span class=&quot;hljs-preprocessor&quot;&gt;#&lt;span class=&quot;hljs-keyword&quot;&gt;include&lt;/span&gt; &amp;lt;string.h&amp;gt;&lt;/span&gt;
&lt;span class=&quot;hljs-keyword&quot;&gt;int&lt;/span&gt; main(&lt;span class=&quot;hljs-keyword&quot;&gt;void&lt;/span&gt;) {
 
   &lt;span class=&quot;hljs-keyword&quot;&gt;int&lt;/span&gt; status;
   &lt;span class=&quot;hljs-keyword&quot;&gt;char&lt;/span&gt; file_name[&lt;span class=&quot;hljs-number&quot;&gt;25&lt;/span&gt;];
   
   &lt;span class=&quot;hljs-built_in&quot;&gt;printf&lt;/span&gt;(&lt;span class=&quot;hljs-string&quot;&gt;&quot;\t---Program Penghapus File---\n\n&quot;&lt;/span&gt; );
   &lt;span class=&quot;hljs-built_in&quot;&gt;printf&lt;/span&gt;(&lt;span class=&quot;hljs-string&quot;&gt;&quot;Tulis nama file yang ingin di hapus: &quot;&lt;/span&gt; );
   &lt;span class=&quot;hljs-built_in&quot;&gt;scanf&lt;/span&gt;(&lt;span class=&quot;hljs-string&quot;&gt;&quot;%[^\n]&quot;&lt;/span&gt;,file_name); 

   status=remove(file_name);
 
   &lt;span class=&quot;hljs-keyword&quot;&gt;if&lt;/span&gt;(status==&lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;)
      &lt;span class=&quot;hljs-built_in&quot;&gt;printf&lt;/span&gt;(&lt;span class=&quot;hljs-string&quot;&gt;&quot;\n %s telah sukses dihapus \n&quot;&lt;/span&gt;,file_name);
      
   &lt;span class=&quot;hljs-keyword&quot;&gt;else&lt;/span&gt;
   {
      &lt;span class=&quot;hljs-built_in&quot;&gt;printf&lt;/span&gt;(&lt;span class=&quot;hljs-string&quot;&gt;&quot;\nTidak dapat menghapus file tersebut !\n &quot;&lt;/span&gt;);
      perror(&lt;span class=&quot;hljs-string&quot;&gt;&quot;Error&quot;&lt;/span&gt;);
   }
   &lt;span class=&quot;hljs-built_in&quot;&gt;printf&lt;/span&gt;(&lt;span class=&quot;hljs-string&quot;&gt;&quot;\n\t---Terima Kasih---\n&quot;&lt;/span&gt; );
   &lt;span class=&quot;hljs-keyword&quot;&gt;return&lt;/span&gt; EXIT_SUCCESS;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;br /&gt;
Demikian postingan kali ini, semoga artikel ini bermanfaat ,terus semangat dan asah skill pemrograman mu, Happy Coding :D
&lt;br /&gt;
&lt;br /&gt;</description><link>http://rushfly.blogspot.com/2014/11/program-penghapus-file-di-bahasa-c.html</link><author>noreply@blogger.com (Anonymous)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEieakKVZlNEUHL-Rwd4W3_PUP0FEEpiN1mZjQ5KriCHPcQ2nTfD2YJi-GFWAe4rFZdRj2EZxWZg5Y32mQMmiwu8kkJfFLhcbrX3EdJHhs4n7hRxm3RFGSBdsr2tmErOcNmfKSO1j_0jFD8/s72-c/program-penghapus-file.png" height="72" width="72"/><thr:total>3</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-5257817542101703637</guid><pubDate>Sat, 27 Sep 2014 05:49:00 +0000</pubDate><atom:updated>2015-01-28T20:24:21.557+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Costum ROM</category><title>[ROM] Hyperion 9 GM untuk Galaxy Y GT-S5360</title><description>&lt;b&gt;[ROM] Hyperion 9 GM untuk Galaxy Y GT-S5360&lt;/b&gt; - Ini lah rom yang cepat dan lembut serta UI yang lebih bagus. Bagi Anda yang merasa bosan dengan stock rom galaxy young, tidak salah mencoba rom ini. Sebelum melakukan flashing Hyperion 9 GM, ada baik nya backup semua data penting yang di Galaxy Y Anda dan jangan lupa minum segelas air putih, agar tetap fokus. :D
&lt;br /&gt;
&lt;br /&gt;
Inilah Screenshotnya&lt;br /&gt;
&lt;br /&gt;
&lt;img alt=&quot;[ROM] Hyperion 9 GM untuk Galaxy Y GT-S5360&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEih6BagLO14mpT-BlEVLhr-YkoO0H2Mzga6KRmk5qWQXq9RtQNFahIHZjpqQ-QE3dgG9nFfbBUzxS7pqczMcZ5-OMlMCllUlwhdtj9F2AzXUMLnfz72-XB6k7QWjOVKofcSjzclS2Tl_UY/s1600/htyperion-9gm.png&quot; height=&quot;188&quot; width=&quot;320&quot; /&gt;
&lt;br /&gt;
&lt;img alt=&quot;[ROM] Hyperion 9 GM screenshot&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjpHDaC4vrpSBKT8E6KW8Jgik7v6HLKUdtYOohQRU9IpdJTARBOu7clrciS95QCKm1VVhz73wfcawT5vKf3bDWS96fllv6qYIzlDawx6kQbykqPytTvxVpBBqFF0UZ2VHhwNmUkS5Bn5xA/s1600/Hyperion-9-GM-Final-notification-drawer.png&quot; height=&quot;188&quot; width=&quot;320&quot; /&gt;
&lt;br /&gt;
&lt;img alt=&quot;[ROM] Hyperion 9 GM untuk Galaxy Y GT-S5360&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh37cEqwuRLvoQgf2fYCdf7vSop6NgyTvunFnwYxtvWLmNP_HILAB3srZN-zyCsJ9FENoDWXaDEyuDKOSObbsO3Du9xJZbOOl7oiKIFmPKuP1WmZ11x-VHhRAghATiKSUqBpSmCit0-zlw/s1600/Hyperion-9-GM-Final-Build-Final-Rev-screenshot.png&quot; height=&quot;188&quot; width=&quot;320&quot; /&gt;
&lt;br /&gt;
Persyaratan:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Temporary CWM [&lt;a href=&quot;https://docs.google.com/file/d/0B9saVo2Y2KDvN2lyX29ic2hlQlk/edit&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Download&lt;/a&gt;]&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Samsung Galaxy Young GT-S5360&amp;nbsp;&lt;/li&gt;
&lt;li&gt;[ROM] Hyperion 9 GM Final Build Final Rev&amp;nbsp;&amp;nbsp;+ UPDATE-01 [&lt;a href=&quot;http://d-h.st/7v5&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Download&lt;/a&gt;]&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&amp;nbsp; Version Information
Status: Stable&lt;br /&gt;
&amp;nbsp; Current Stable Version: Hyperion 9 Gold Mast &amp;nbsp; &amp;nbsp; &lt;br /&gt;
&amp;nbsp; Stable Release Date: 2014-05-01&amp;nbsp;&lt;/blockquote&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
Cara Install [ROM] Hyperion 9 GM Final Build Final Rev +Update-01&lt;/h3&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Boot ke&amp;nbsp;&lt;b&gt;Android System Recovery &lt;/b&gt;&amp;nbsp;dengan tekan tombol&amp;nbsp;&lt;b&gt;volume up &amp;nbsp;+ tombol home &amp;nbsp;+ tombol power &lt;/b&gt;selama 3 detik.&lt;/li&gt;
&lt;li&gt;Di mode recovery, pilih install zip from sd card.&lt;/li&gt;
&lt;li&gt;Setelah itu, pilih &lt;b&gt;TempCWM.zip&lt;/b&gt; .&lt;/li&gt;
&lt;li&gt;Setelah itu, Kamu akan melihat &lt;b&gt;ClockWorkMod Recovery&lt;/b&gt; dengan text berwarna kuning.&lt;/li&gt;
&lt;li&gt;Di ClockWorkMod Recovery, pilih mounts and storage.&lt;/li&gt;
&lt;li&gt;Mount data,system,dan cache.&lt;/li&gt;
&lt;li&gt;Pilih Go Back dengan tekan tombol power atau tekan back.&lt;/li&gt;
&lt;li&gt;Pilih advanced and debugging.&lt;/li&gt;
&lt;li&gt;Pilih wipe dalvik cache and wipe batterystats.bin (optional)&lt;/li&gt;
&lt;li&gt;Pilih Go Back dengan tekan tombol power atau tekan back.&lt;/li&gt;
&lt;li&gt;Pilih wipe data/factory reset.&lt;/li&gt;
&lt;li&gt;Pilih wipe cache.&lt;/li&gt;
&lt;li&gt;Pilih install zip from sd card.&lt;/li&gt;
&lt;li&gt;Pilih choose zip from sd card.&lt;/li&gt;
&lt;li&gt;Pilih Hyperion zip package &lt;b&gt;(HYPERION-09.DXMJ1.GM-FINAL.BUILD)&lt;/b&gt;.&lt;/li&gt;
&lt;li&gt;Pilih Go Back dengan tekan tombol power atau tekan back.&lt;/li&gt;
&lt;li&gt;Setelah , reboot Galaxy Y mu :D&lt;/li&gt;
&lt;li&gt;Enjoy !!!&lt;/li&gt;
&lt;/ol&gt;
&lt;div&gt;
Jika mengalami kesulitan bisa tanyakan di kotak komentar atau di &lt;a href=&quot;http://www.rushfly.net/p/forum.html&quot; target=&quot;_blank&quot;&gt;forum&lt;/a&gt; kami.&lt;br /&gt;
&lt;br /&gt;
Jika mengalami bootloop di galaxy young Anda,ikuti tutorial&amp;nbsp;&lt;a href=&quot;http://www.rushfly.net/2014/07/cara-flashing-galaxy-young.html&quot; target=&quot;_blank&quot;&gt;Cara Flashing Galaxy Young&lt;/a&gt;.&lt;/div&gt;
</description><link>http://rushfly.blogspot.com/2014/09/rom-hyperion-9-gm-untuk-galaxy-y-gt.html</link><author>noreply@blogger.com (Anonymous)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEih6BagLO14mpT-BlEVLhr-YkoO0H2Mzga6KRmk5qWQXq9RtQNFahIHZjpqQ-QE3dgG9nFfbBUzxS7pqczMcZ5-OMlMCllUlwhdtj9F2AzXUMLnfz72-XB6k7QWjOVKofcSjzclS2Tl_UY/s72-c/htyperion-9gm.png" height="72" width="72"/><thr:total>9</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-53403938553579034</guid><pubDate>Mon, 22 Sep 2014 06:50:00 +0000</pubDate><atom:updated>2014-09-22T13:56:52.537+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tutorial Ubuntu</category><title>Cara Menginstall Skype 4.3 di Ubuntu 14.04 Trusty Tahr</title><description>&lt;b&gt;Cara Menginstall Skype 4.3 di Ubuntu 14.04 &lt;/b&gt;- Skype adalah sebuah software gratis yang memungkinkan Anda melakukan Video Call secara gratis apabila kita terhubung internet.&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Skype dapat digunakan untuk telepon, chatting, video call dan transfer file ke sesama pengguna skype di seluruh dunia. Tentunya jika Anda ingin menggunakan Skype, harus menginstal terlebih dahulu. Bagi pengguna Windows, menginstall skype sangatlah mudah. Sedangkan menginstalan skype di ubuntu masih banyak yang menganggap sulit.&lt;br /&gt;
&lt;br /&gt;
&lt;img alt=&quot;Cara Menginstall Skype 4.3 di Ubuntu 14.04&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKYuYkRoPYwdA6hv8Gk8lCEKPV5o2fldhl7rHDVlREJpHGPqb-eOzW5YPEFewoii57bf_sKuhomJpNQelkaUsfEztFfvaK0P49Gk1c9y8tnDSYJYV2ufWKQa_rYUhFf-_CPJi5xKvB_Io/s1600/install_skype-4.3-ubuntu.png&quot; height=&quot;222&quot; width=&quot;320&quot; /&gt;
&lt;/div&gt;
&lt;br /&gt;
Berikut tutorial Menginstall Skype 4.3 di Ubuntu 14.04, tutorial ini dapat juga digunakan untuk linux lainnya. Buka Terminal ( Ctrl+Alt+T) untuk menjalan perintah dibawah.
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
Cara Menginstall Skype 4.3 di Ubuntu 14.04&lt;/h3&gt;
&lt;br /&gt;
&lt;b&gt;Hapus versi lama skype, jika terinstall di ubuntu Anda.&lt;/b&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;code class=&quot;dos hljs &quot;&gt;sudo apt-get remove skype skype-bin:i386 skype:i386
sudo apt-get install sni-qt:i386
&lt;/code&gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;b&gt;Bersihkan Folder versi lama Skype sebelum menginstall skype versi terbaru.&lt;/b&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;code class=&quot; hljs nginx&quot;&gt;&lt;span class=&quot;hljs-title&quot;&gt;rm&lt;/span&gt; -rf ~/.Skype&lt;/code&gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;b&gt;Khusus pengguna Ubuntu 64 bit, harus mengaktifkan MultiArch. &lt;/b&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;code class=&quot;dos hljs &quot;&gt;sudo dpkg --add-architecture i386&lt;/code&gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;b&gt;Update repositories dan install gdebi.&lt;/b&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;code class=&quot;dos hljs &quot;&gt;sudo apt-get update
sudo apt-get install gdebi&lt;/code&gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;b&gt;Download dan install skype. &lt;/b&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;code class=&quot;dos hljs &quot;&gt;wget download.skype.com/linux/skype-ubuntu-precise_4.&lt;span class=&quot;hljs-number&quot;&gt;3&lt;/span&gt;.&lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;.&lt;span class=&quot;hljs-number&quot;&gt;37&lt;/span&gt;-&lt;span class=&quot;hljs-number&quot;&gt;1&lt;/span&gt;_i386.deb
sudo gdebi skype-ubuntu-precise_4.&lt;span class=&quot;hljs-number&quot;&gt;3&lt;/span&gt;.&lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;.&lt;span class=&quot;hljs-number&quot;&gt;37&lt;/span&gt;-&lt;span class=&quot;hljs-number&quot;&gt;1&lt;/span&gt;_i386.deb&lt;/code&gt;&lt;/pre&gt;
Sekarang Anda dapat menggunakan skype di ubuntu. Jika Anda bingung atau mengalami kegagalan dalam proses penginstallan skype di ubuntu bisa tanyakan di kotak komentar atau bisa juga di &lt;a href=&quot;http://rushfly.net/p/forum.html&quot;&gt;forum&lt;/a&gt; kami.Terimakasih :D
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description><link>http://rushfly.blogspot.com/2014/09/cara-menginstall-skype-43-di-ubuntu-1404.html</link><author>noreply@blogger.com (Anonymous)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKYuYkRoPYwdA6hv8Gk8lCEKPV5o2fldhl7rHDVlREJpHGPqb-eOzW5YPEFewoii57bf_sKuhomJpNQelkaUsfEztFfvaK0P49Gk1c9y8tnDSYJYV2ufWKQa_rYUhFf-_CPJi5xKvB_Io/s72-c/install_skype-4.3-ubuntu.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-5396482740118329299</guid><pubDate>Mon, 22 Sep 2014 02:09:00 +0000</pubDate><atom:updated>2014-09-22T09:09:31.732+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Belajar Pemrograman C</category><title>Menentukan Bilangan Ganjil Genap dengan Bahasa C</title><description>&lt;b&gt;Menentukan Bilangan Ganjil Genap dengan Bahasa C&lt;/b&gt;&amp;nbsp;- Pada postingan kali ini saya akan membahas bagaimana cara menentukan &amp;nbsp;bilangan ganjil dan genap dengan bahasa pemrograman C, bagi kamu yang masih baru belajar mungkin masih sulit, perlu banyak latihan dan asah logika mu. :D&lt;br /&gt;
&lt;br /&gt;
&lt;img alt=&quot;Menentukan Bilangan Ganjil Genap dengan Bahasa C&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh9UvyxTZP07NzcYPU-iQjsyQsRzaqdpjEGlph19i5MLMIYoeURY2LG1mKTFNc9L1FjMLvyK6mCMpWO-xYBg-1T4XX34wnk56IDANFMGmlpnIFKOgYttjT0LIjgMjqqKl3jmIwYhXK9Bno/s1600/ganjil_genap_bahasa_c.png&quot; /&gt;
&lt;br /&gt;
&lt;br /&gt;
Inilah kode program sederhana, kali ini saya menggunakan If/else untuk menetukan bilangan yang diinput ganjil atau genap.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
Bilangan Ganjil dan Genap dengan&amp;nbsp;Bahasa Pemrograman C&lt;/h3&gt;
&lt;pre&gt;&lt;code class=&quot; hljs cs&quot;&gt;&lt;span class=&quot;hljs-preprocessor&quot;&gt;#include &amp;lt;stdio.h&amp;gt;&lt;/span&gt;
&lt;span class=&quot;hljs-function&quot;&gt;&lt;span class=&quot;hljs-keyword&quot;&gt;int&lt;/span&gt; &lt;span class=&quot;hljs-title&quot;&gt;main&lt;/span&gt;&lt;span class=&quot;hljs-params&quot;&gt;()&lt;/span&gt; 
&lt;/span&gt;{
 &lt;span class=&quot;hljs-keyword&quot;&gt;int&lt;/span&gt; a ;
 printf(&lt;span class=&quot;hljs-string&quot;&gt;&quot;\n&quot;&lt;/span&gt;);
 printf(&lt;span class=&quot;hljs-string&quot;&gt;&quot;Masukkan angka : &quot;&lt;/span&gt;);
 scanf(&lt;span class=&quot;hljs-string&quot;&gt;&quot;%d&quot;&lt;/span&gt;, &amp;amp;a);
 
  &lt;span class=&quot;hljs-keyword&quot;&gt;if&lt;/span&gt;(a == &lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;)
  printf(&lt;span class=&quot;hljs-string&quot;&gt;&quot;Ini bilangan Nol\n&quot;&lt;/span&gt;,a);
  &lt;span class=&quot;hljs-function&quot;&gt;&lt;span class=&quot;hljs-keyword&quot;&gt;else&lt;/span&gt; &lt;span class=&quot;hljs-title&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;hljs-params&quot;&gt;(a % &lt;span class=&quot;hljs-number&quot;&gt;2&lt;/span&gt; == &lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;)&lt;/span&gt;
  &lt;span class=&quot;hljs-title&quot;&gt;printf&lt;/span&gt;&lt;span class=&quot;hljs-params&quot;&gt;(&lt;span class=&quot;hljs-string&quot;&gt;&quot;Bilangan ini genap\n&quot;&lt;/span&gt;,a)&lt;/span&gt;&lt;/span&gt;;
  &lt;span class=&quot;hljs-function&quot;&gt;&lt;span class=&quot;hljs-keyword&quot;&gt;else&lt;/span&gt;
  &lt;span class=&quot;hljs-title&quot;&gt;printf&lt;/span&gt;&lt;span class=&quot;hljs-params&quot;&gt;(&lt;span class=&quot;hljs-string&quot;&gt;&quot;Bilangan ini ganjil\n&quot;&lt;/span&gt;,a)&lt;/span&gt;&lt;/span&gt;;

 &lt;span class=&quot;hljs-keyword&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;hljs-number&quot;&gt;0&lt;/span&gt;;&lt;/code&gt;&lt;/pre&gt;
&lt;br /&gt;
Demikianlah postingan kali ini, semoga bermanfaat :D, jika ada pertanyaan tanyakan langsung di kotak komentar dan bisa juga di &lt;a href=&quot;http://rushfly.net/p/forum.html&quot;&gt;forum&lt;/a&gt; Kami. Sekian terimakasih :D&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description><link>http://rushfly.blogspot.com/2014/09/menentukan-bilangan-ganjil-genap-bahasa-c.html</link><author>noreply@blogger.com (Anonymous)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh9UvyxTZP07NzcYPU-iQjsyQsRzaqdpjEGlph19i5MLMIYoeURY2LG1mKTFNc9L1FjMLvyK6mCMpWO-xYBg-1T4XX34wnk56IDANFMGmlpnIFKOgYttjT0LIjgMjqqKl3jmIwYhXK9Bno/s72-c/ganjil_genap_bahasa_c.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-6588799752397255182</guid><pubDate>Sat, 13 Sep 2014 04:18:00 +0000</pubDate><atom:updated>2014-09-13T11:18:58.373+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Gadget</category><category domain="http://www.blogger.com/atom/ns#">Review</category><title>Spesifikasi dan Harga Xiaomi Redmi 1S</title><description>&lt;h3&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;Dilengkapi dengan chipset Snapdragon 400 dan memory internal 8 GB&lt;/span&gt;&lt;/h3&gt;
&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;b&gt;Spesifikasi dan Harga &amp;nbsp;Xiaomi Redmi 1S &lt;/b&gt;- Xiaomi kini memasarkan Smartphone terbaiknya di Indonesia. Sesi penjualan pertama smartphone Redmi 1S &amp;nbsp;melalui situs jual beli Lazada, smartphone tersebut diklaim terjual 10.000 unit hanya dalam 12 menit. Lazada kembali membuka sesi registrasi untuk pembeli smartphone ini dimulai tanggal 11 September sampai 17 September jam 23.59 dan sesi penjualan tanggal 18 jam 11.00 .&lt;br /&gt;
&lt;br /&gt;
&lt;img alt=&quot;xiamoi-redmi-is&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjQN3NZYl2gbnGfF604BAPD-zqV6Fi1O0BQGZwk_s8WrKuJypnv1gE0mSC7vHN9GWkyQ2XtNe482PS3vgMtjS2MB9DbNCw6OGzt5Z1r0EPo_qy61o7EURREaP1bMnIVc6IUEgqCfL05oRs/s1600/xiaomi-redimi-1s.jpg&quot; /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Redmi 1S&lt;/b&gt; merupakan salah satu produk smartphone Android handal yang dijual murah oleh Xiaomi hanya Rp. 1.499.000 . Redmi 1S diburu banyak pihak lantaran spesifikasinya unggulan. Xiaomi Redmi 1S menawarkan layar IPS 4,7 inci HD, prosesor Snapdragon 400 quad-core 1,6GHz, RAM 1GB, memori internal 8GB dengan dukungan microSD, kamera utama 8MP dengan flash, kamera kedua 1,6MP, dukungan dual-SIM, dan baterai 2.000mAh.&lt;br /&gt;
&lt;br /&gt;
&lt;img alt=&quot;review-xiaomi-redmi-1s&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpfNDnAS8Rmx_v_hWY4ry0zp7uvEPpqa_d-4WJZDCz5xzl56P1j9UUUU8qYmc2nqRTjfSe_euIaUzM1Qngay_nSQqhjqYmmb7QRFNZPUJmKC0wJnUjxUL38GzZMfud1gUDWPD1e0QCJNg/s1600/xiaomi-redmi-1s-review.jpg&quot; height=&quot;224&quot; width=&quot;320&quot; /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
Spesifikasi Redmi 1S&lt;/h3&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Dual Sim Card, Dual Standby&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Qualcomm Snapdragon 400 (8228) Quad Core 1,6 GHz&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;1 GB RAM dan 8 GB Flash&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;4,7 inci 720p Display by Sharp AUO&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;8 MP BSI Camera (1,6 MP Front)&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Photography: LED Flash, Aperture Af/2.2, ISO, White Balance, Focus Mode, Focus Area, Automatic, Multiple Scene Mode, Wide Angle 28mm, Speed 8fps, Zero Shutter lag, Face Recognition, High Dymanic Range (HDR) dan Real-time Filter&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;2000 mAh Battery (removable) Lithium-ion Polymer&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Expansion: microSD dan USB OTG&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Sensor: Gyroscope, Light Sensor, Accelerometer, Proximity Sensor, Electronic Compass&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Video Recording: 1080p (1920 x 1080) dan 720p (1280 x 720)&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Multimedia: Audio Format MP3, AAC, AAC+, EAAC+, AMR, WB-AMR, MIDI dan OGG;Video Format 1080p (1920 x 1080, 30fps) MPEG4, H.263 dan H.264;Picture Format JPEG, PNG, GIF dan BM;FM Radio: Supported&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;iframe allowfullscreen=&quot;&quot; height=&quot;315&quot; src=&quot;//www.youtube.com/embed/mSnPC5j7cn8&quot; style=&quot;border: none; overflow: hidden;&quot; width=&quot;560&quot;&gt;&lt;/iframe&gt;</description><link>http://rushfly.blogspot.com/2014/09/spesifikasi-dan-harga-xiaomi-redmi-1s.html</link><author>noreply@blogger.com (Anonymous)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjQN3NZYl2gbnGfF604BAPD-zqV6Fi1O0BQGZwk_s8WrKuJypnv1gE0mSC7vHN9GWkyQ2XtNe482PS3vgMtjS2MB9DbNCw6OGzt5Z1r0EPo_qy61o7EURREaP1bMnIVc6IUEgqCfL05oRs/s72-c/xiaomi-redimi-1s.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-8339115531304033434</guid><pubDate>Fri, 12 Sep 2014 03:32:00 +0000</pubDate><atom:updated>2014-09-12T10:34:17.711+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Gadget</category><category domain="http://www.blogger.com/atom/ns#">Review</category><title>Spesifikasi dan Harga iPhone 6 dan iPhone 6 Plus</title><description>&lt;b&gt;Spesifikasi dan Harga iPhone 6 dan iPhone 6 Plus &lt;/b&gt;- Apple resmi meluncurkan iPhone 6 berlayar 4,7 inci dan iPhone 6 Plus yang berlayar 5,5 inci. Gadget ini telah ditunggu-tunggu kehadirannya membuat banyak bertanya berapa harga yang akan dikeluarkan untuk mendapatkan&amp;nbsp;&amp;nbsp;iPhone 6 dan iPhone 6 Plus. Kini Apple telah memastikan harga terhadap iPhone 6 dan iPhone 6 Plus.&lt;br /&gt;
&lt;img alt=&quot;layar-iphone-6-dan-iphone-6-plus&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEju5FKIe_LbOUTQkwNimBUTj0sE-txJAH3KUfeGjE699OSsDdWA-z3j0mu5CqRNyynW1Vvr7MwnIKth1QqUZ1n2uP3eExSpNvrxTjiAAnE8qM1Jl67lBqpIjcTqexJQEx5evpJBgYxSAbk/s1600/review-iphone-6-plus.png&quot; /&gt;
&lt;br /&gt;
&lt;b&gt;iPhone 6 dan iPhone 6 Plus, &lt;/b&gt;keduanya akan tersedia dalam 3 jenis berdasarkan besar memori internalnya, yaitu 16GB, 64 GB, dan 128 GB. Untuk iPhone 6 Plus harga mulai&amp;nbsp;US$299 (16 GB), US$399 (64 GB), dan US$499 (128 GB). Sedangkan iPhone 6 harga mulai US$199 (16 GB), US$299 (64 GB), dan US$399 (128 GB).&amp;nbsp;iPhone 6 dan iPhone 6 Plus tersedia dengan pilihan warna&amp;nbsp;yaitu emas, perak, dan abu-abu.&lt;br /&gt;
&lt;br /&gt;
&lt;img alt=&quot;pilihan-warna-iphone-6&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEht7CQlldpigUNzMHZpa4v0TisxUvT3Kf8BzlNMOm-1p7vMBkAsgjMe1oDm6dMmJoHdO4zrTDB62xNjI6Orq0WqBcml5dG1PYNguXIjaJb4AIk4HOa7VcSyblEPg4fGZQFuZLZlr3FvWxU/s1600/warna-iphone-6.jpg&quot; /&gt;
&lt;br /&gt;
&lt;br /&gt;
Kini iPhone 6 dan iPhone 6 Plus&amp;nbsp;mulai tersedia 19 September di 19 negara. Ini lah Spesifikasi keduanya.&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
Spesifikasi iPhone 6&lt;/h3&gt;
&lt;br /&gt;
GSM: 850, 900, 1800, 1900 MHz&lt;br /&gt;
Layar: IPS LCD 4,7 inci 750 x 1334 pixels 326 ppi&lt;br /&gt;
OS: iOS 8&lt;br /&gt;
Chipset: Apple A8&lt;br /&gt;
CPU: Dua Core 1,4 GHz 64 bit&lt;br /&gt;
RAM: 1 GB&lt;br /&gt;
Penyimpanan internal: 128 GB&lt;br /&gt;
Baterai: 1800 mAh&lt;br /&gt;
Baterai: Li-Po 1810 mAh&lt;br /&gt;
Kamera: belakang 8 MP 3264 x 2448 pixel, autofokus, dual LED flash; depan: 2,1 MP, 720p, burst&lt;br /&gt;
Konektivitas: Bluetooth 4.0, WiFi 802.11 ac, USB, NFC, UMA (WiFi Calling)&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
Spesifikasi&amp;nbsp;iPhone 6 Plus&lt;/h3&gt;
&lt;br /&gt;
GSM: 850, 900, 1800, 1900 MHz&lt;br /&gt;
Layar: 5,5 inci 1080 x 1920 pixels, 401 ppi&lt;br /&gt;
OS: iOS 8&lt;br /&gt;
Chipset: Apple A8&lt;br /&gt;
CPU: Dua Core 1,4 GHz 64 bit&lt;br /&gt;
RAM: 2 GB&lt;br /&gt;
Penyimpanan internal: 128 GB&lt;br /&gt;
Baterai: 2915 mAh&lt;br /&gt;
Kamera: belakang: sensor 1/2,6&quot; 8 MP Dual LED f/2,2; Depan: 2,1 MP&lt;br /&gt;
Konektivitas: Bluetooth 4.0, WiFi 802.11 ac, USB, NFC, UMA (WiFi Calling)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;iframe allowfullscreen=&quot;&quot; height=&quot;315&quot; src=&quot;//www.youtube.com/embed/FglqN1jd1tM&quot; style=&quot;border: none; overflow: hidden;&quot; width=&quot;560&quot;&gt;&lt;/iframe&gt;</description><link>http://rushfly.blogspot.com/2014/09/spesifikasi-dan-harga-iphone-6-dan-iphone-6-plus.html</link><author>noreply@blogger.com (Anonymous)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEju5FKIe_LbOUTQkwNimBUTj0sE-txJAH3KUfeGjE699OSsDdWA-z3j0mu5CqRNyynW1Vvr7MwnIKth1QqUZ1n2uP3eExSpNvrxTjiAAnE8qM1Jl67lBqpIjcTqexJQEx5evpJBgYxSAbk/s72-c/review-iphone-6-plus.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-6972698187018572769</guid><pubDate>Thu, 11 Sep 2014 04:55:00 +0000</pubDate><atom:updated>2014-09-12T10:35:02.223+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Gadget</category><category domain="http://www.blogger.com/atom/ns#">Review</category><title>Spesifikasi, Review dan Harga Asus Fonepad 7</title><description>&lt;b&gt;Spesifikasi, Review dan Harga Asus Fonepad 7 - &lt;/b&gt;Mesikupun banyak tablet yang berbeda tingkat harga nya, masih banyak calon konsumen mengkhawatir kan kualitas dan daya tahan produk, jadi tablet android dengan harga terjangkau dengan kulitas terjamin dari manufaktur populer menjadi banyak di cari. Kini Asus banyak mengeluarkan produk dengan harga terjangkau namun fitur dan spesifikasi tidak rendahan. Kali ini kami mereview Asus FonePad 7&amp;nbsp;(FE170CG) dual SIM, Tablet ini dijual dengan harga 1.5 juta rupiah saja.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Asus Fonepad 7&lt;/b&gt; di bekali prosesor Dual-core 1.2 GHz Intel Atom plus RAM 1 GB, untuk memori internal 8 GB ditambah slot MicroSD upto 64 GB. Tablet ini berlayar display LCD WSVGA memiliki diagonal 7 inch dengan resolusi 600 x 1024 pixel dan ditenagai baterai&amp;nbsp;3950 mAh.&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhoOHadyTv6MwLcoPaBdp2GjQkQ5mDE8oL7DnFo034ppwW_XNGCKuwkdLqFCprNNKiCVj2Ryx8Ct54WefRfB4m_7BLUyKZLrvz4PPF1pmNnnb3ISL9pfWVXff5suVkJocHhGCya9PvxZTU/s1600/fonepad-accessory.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Asus Fonepad 7&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhoOHadyTv6MwLcoPaBdp2GjQkQ5mDE8oL7DnFo034ppwW_XNGCKuwkdLqFCprNNKiCVj2Ryx8Ct54WefRfB4m_7BLUyKZLrvz4PPF1pmNnnb3ISL9pfWVXff5suVkJocHhGCya9PvxZTU/s1600/fonepad-accessory.png&quot; height=&quot;333&quot; title=&quot;Asus Fonepad 7&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
Kamera utama 2 megapixels, AutoFocus dan kamera depan VGA yang dapat di pergunakan untuk Video Call serta Video Chat sedangkan bagian konektivitas terdapat HSDPA, 42 Mbps; HSUPA, 5.76 Mbps;Wi-Fi 802.11 b/g/n, Wi-Fi hotspot.&lt;br /&gt;
&lt;img alt=&quot;asus-fonepad7&quot; br=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEguVEZJWQir3ZGLtR9Ew6QLfQwNq_dwwBSux_vMr5EWf4k-F-GY1ARHcnxFbq3JtWvfOTQVYitsCdLJcrwFR0uKs6pDZnOo30tHBDcCgBIexddGlmHQ7g-g6JQ36KIUwGIYmrgz_m7-mj0/s1600/asus-fonepad7.png&quot; height=&quot;320&quot; width=&quot;320&quot; /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
Spesifikasi&amp;nbsp;Asus Fonepad 7 &amp;nbsp;(FE170CG)&lt;/h3&gt;
&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;br /&gt;
&lt;blockquote&gt;
&lt;b&gt;Jaringan&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;HSDPA, 42 Mbps; HSUPA, 5.76 Mbps,Wi-Fi 802.11 b/g/n, Wi-Fi hotspot.&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Download speed up to 42Mbps&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;GSM 850 / 900 / 1800 / 1900 - SIM 1 &amp;amp; SIM 2&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;b&gt;Dimensi&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;192 x 110 x 10,7 mm&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;295g&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Warna&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Mica Black, Ceramic white, Sparkling Red, Ocean Blue&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Layar&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;7-inci WSVGA 1024 x 600&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Multi-touch Panel&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Prosesor&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Intel® Atom™ Multicore Processor Z2520 (1.2 GHz) dengan Intel Hyper-Threading Technology&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Memori&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;1GB RAM&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;8GB Internal + 16 GB ASUS Webstorage (1 year FREE)&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;b&gt;Kamera&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;2MP (utama)&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;0.2 MP (depan)&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Konektivitas &amp;amp; Navigasi&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;MicroUSB, Bluetooth 4.0 A2DP&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;GPS A-GPS, GLONASS&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;b&gt;Sistem Operasi&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Android 4.3 Jelly Bean&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Upgradeable to Android 4.4 KitKat&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Baterai&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;3950 mAh&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;User Interface&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;ASUS ZenUI&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Audio &amp;amp; Video&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Asus Sonic Master&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;MaxxAudio&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;MP3, AAC,AAC+,eAA+,WMA, MIDI,WAV,AC3,FLAC&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Playback MPEG-4 up to 1080p&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;video recording MPEG-4&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;720p @ 30 FPS&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;DivX,H264,MPEG4,H.263, Xvid, 3GP&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description><link>http://rushfly.blogspot.com/2014/09/spesifikasi-review-dan-harga-asus-fonepad-7.html</link><author>noreply@blogger.com (Rza)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhoOHadyTv6MwLcoPaBdp2GjQkQ5mDE8oL7DnFo034ppwW_XNGCKuwkdLqFCprNNKiCVj2Ryx8Ct54WefRfB4m_7BLUyKZLrvz4PPF1pmNnnb3ISL9pfWVXff5suVkJocHhGCya9PvxZTU/s72-c/fonepad-accessory.png" height="72" width="72"/><thr:total>3</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-2214747053490535235</guid><pubDate>Wed, 03 Sep 2014 10:20:00 +0000</pubDate><atom:updated>2014-09-03T17:51:07.096+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tutorial Android</category><title>Tips Memotret dengan Smartphone Berkamera Minim</title><description>&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjlLhchenO7iRiCKsVo5wBBlZFm5wHL54j2e-sb9uBVcnxUk7dB30p9uK8MPe2gJu-n8R6l8M6nzLDXWH_VdZmnYyDjJ54kFgveDmyZ9E0-6_TmP9TkConJ0KQoKvIVZSttHBXGWZfxtrI/s1600/988684_582115685162417_620447203_n.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;foto kucing &quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjlLhchenO7iRiCKsVo5wBBlZFm5wHL54j2e-sb9uBVcnxUk7dB30p9uK8MPe2gJu-n8R6l8M6nzLDXWH_VdZmnYyDjJ54kFgveDmyZ9E0-6_TmP9TkConJ0KQoKvIVZSttHBXGWZfxtrI/s1600/988684_582115685162417_620447203_n.jpg&quot; height=&quot;320&quot; title=&quot;&quot; width=&quot;240&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; Banyak yang berpikir bahwa besar sensor megapixel kamera smartphone, maka semakin bagus kualitas foto yang dihasilkan. Padahal, besar megapixel pada kamera digital hanya menentukan seberapa besar ukuran foto saat dicetak.&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Pada sebuah kamera smartphone, yang menentuka hasil kualitas foto adalah lensa, ukuran sensor kamera, dan proses algoritma . Lihat tips menghasilkan foto berkualitas dengan smartphone berkamera minim dari Joh Juda, Founder Fotodroids.&lt;br /&gt;
&lt;br /&gt;
1. Kuasai Pencahayaan&lt;br /&gt;
&lt;br /&gt;
Perhatikan dari mana datangnya sinar menyentuh objek. Sensor kamera akan bereaksi maksimal saat mendapatkan cahaya yang cukup alami. Jika harus memotret di dalam ruangan yang kurang cahaya, pastikan untuk menggunakan &amp;nbsp;bantuan pencahayaan, tetapi jangn flash. Gunakan sumber pencahayaan lain, seperti senter atau lampu belajar.&lt;br /&gt;
&lt;br /&gt;
2. Gunakan Flash saat Cerah&lt;br /&gt;
&lt;br /&gt;
Tidak tabu menggunakan flash, bahkan Anda bisa bermain dengan filter flash, yang penting Anda tahu kondisi yang tepat untuk menggunakannya. Lampu flash yang kuat saat digunakan dalam kondisi &amp;nbsp;yang kurang pencahayaan akan menghasilkan sebaran sinar yang tidak alami, dikarenakan suhu cahaya flash umumnya berbeda dengan kondisi ruangan.&lt;br /&gt;
&lt;br /&gt;
3. Kuasai Komposisi&lt;br /&gt;
&lt;br /&gt;
Menguasi Pencahayaan sama pentingnya dengan menguasai komposisi. Komposisi adalah cara kita menempatkan objek di antara &lt;i&gt;background&lt;/i&gt; dan &lt;i&gt;foreground. &lt;/i&gt;&amp;nbsp;Ini akan menciptakan &amp;nbsp;dimensi dan kesan yang seimbang &amp;nbsp;pada foto.&lt;br /&gt;
&lt;br /&gt;
4. Gunakan Kualitas &amp;nbsp;Maksimal&lt;br /&gt;
&lt;br /&gt;
Walaupun Memiliki sensor megapixel kecil, ada kalanya deafult setting kamera pabrikan diatur &amp;nbsp;pada opsi normal. Ganti setting tersebut menjadi high quality. Jangan pernah mengorbankan kualitas foto demi space memori, karena suatu peristiwa tidak akan berulang kembali.&lt;br /&gt;
&lt;br /&gt;
5. Maksimalkan Feature pada Kamera Smartphone&lt;br /&gt;
&lt;br /&gt;
Walaupun sama-sama menggunakan OS Android, tetapi karakter tiap kamera smartphone berbeda. Maka kenali dahulu Kamera Smartphone Anda. Kenali setiap Fungsi nya dan bagaimana menggunakannya.&lt;br /&gt;
&lt;br /&gt;
Ini lah Foto hasil karya anggota komunitas FotoDroids. FotoDroids adalah salah satu komunitas andrography pertama dan terbesar yang didirikan baik di Indonesia maupun internasional.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi4esZIymcd61Ky0mEp2RFf3kJrxqrSL_LroTQPZSVc3QVo6N3UKwTT50soCfjWSdpPBCxuBWGPWkaetNed473M0l-FUgsJWTw0xdGIupqTjf6N4IEO8zQVnkc6VEVETnSmZwRYXLxOuCg/s1600/228033_207203125987010_5306288_n.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Tips Memotret dengan Smartphone Berkamera Minim&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi4esZIymcd61Ky0mEp2RFf3kJrxqrSL_LroTQPZSVc3QVo6N3UKwTT50soCfjWSdpPBCxuBWGPWkaetNed473M0l-FUgsJWTw0xdGIupqTjf6N4IEO8zQVnkc6VEVETnSmZwRYXLxOuCg/s1600/228033_207203125987010_5306288_n.jpg&quot; height=&quot;393&quot; title=&quot;Tips Memotret dengan Smartphone Berkamera Minim&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhx6EnF6ll7Uu9dPftAzHqeUr5WqIpzys4smYTiVmmcv_XC0QWshJp0fm2BQhpM2pIDVD0xws_q_m8KJvgFj2egxhYa7xIjGmr1Bsrin18re3qOdvj-JII28r5cK_rChq8l5EWAm5D8zTk/s1600/1045055_600609379979714_1187402171_n.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgo-AMeCqlmY4kEDrNNl6D61P5p5xQj7m9qGrD7jWRp12DigXuUnr6dmj0ikgteFmaZubfF4ideAy7X0wyf8lc4xlxxqnkxsnFfKHEG-AI7UPDp8m-0M1TvUQO0yvc7yzK_Gf3aXR93vds/s1600/230708_207204765986846_5398418_n.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Tips Memotret dengan Smartphone Berkamera Minim&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgo-AMeCqlmY4kEDrNNl6D61P5p5xQj7m9qGrD7jWRp12DigXuUnr6dmj0ikgteFmaZubfF4ideAy7X0wyf8lc4xlxxqnkxsnFfKHEG-AI7UPDp8m-0M1TvUQO0yvc7yzK_Gf3aXR93vds/s1600/230708_207204765986846_5398418_n.jpg&quot; height=&quot;400&quot; title=&quot;Tips Memotret dengan Smartphone Berkamera Minim&quot; width=&quot;300&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhx6EnF6ll7Uu9dPftAzHqeUr5WqIpzys4smYTiVmmcv_XC0QWshJp0fm2BQhpM2pIDVD0xws_q_m8KJvgFj2egxhYa7xIjGmr1Bsrin18re3qOdvj-JII28r5cK_rChq8l5EWAm5D8zTk/s1600/1045055_600609379979714_1187402171_n.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Tips Memotret dengan Smartphone Berkamera Minim&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhx6EnF6ll7Uu9dPftAzHqeUr5WqIpzys4smYTiVmmcv_XC0QWshJp0fm2BQhpM2pIDVD0xws_q_m8KJvgFj2egxhYa7xIjGmr1Bsrin18re3qOdvj-JII28r5cK_rChq8l5EWAm5D8zTk/s1600/1045055_600609379979714_1187402171_n.jpg&quot; height=&quot;300&quot; title=&quot;Tips Memotret dengan Smartphone Berkamera Minim&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEga2NTMR8Hk5cet6BEQALLX77uroTuuuXAeqKtDXCsD8G-plXPGW_TtGz0QamwoDeciNFhLGYzdrUyUoDDp9WQWiwe9SzxxJm2s1uG0NBV4e1c_ZmQ1FhSuNfxNfCG8AkeWaXuJkJmtTRk/s1600/229121_207203222653667_1296682_n.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Tips Memotret dengan Smartphone Berkamera Minim&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEga2NTMR8Hk5cet6BEQALLX77uroTuuuXAeqKtDXCsD8G-plXPGW_TtGz0QamwoDeciNFhLGYzdrUyUoDDp9WQWiwe9SzxxJm2s1uG0NBV4e1c_ZmQ1FhSuNfxNfCG8AkeWaXuJkJmtTRk/s1600/229121_207203222653667_1296682_n.jpg&quot; height=&quot;400&quot; title=&quot;Tips Memotret dengan Smartphone Berkamera Minim&quot; width=&quot;376&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjwn1-ns-k-dABIKPClCB8s89N4QdVvN1B9mHSont-gi47TuzYBOVmjFz4mfGfNmzC5xEtuX0DVVL5o99pNpztGjsPxPys74EXAlyJ9A4pPUw7J8dgJS-xtwUVKRriRfr84v0ZxAhgpoHM/s1600/222411_207203089320347_3028316_n.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Tips Memotret dengan Smartphone Berkamera Minim&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjwn1-ns-k-dABIKPClCB8s89N4QdVvN1B9mHSont-gi47TuzYBOVmjFz4mfGfNmzC5xEtuX0DVVL5o99pNpztGjsPxPys74EXAlyJ9A4pPUw7J8dgJS-xtwUVKRriRfr84v0ZxAhgpoHM/s1600/222411_207203089320347_3028316_n.jpg&quot; height=&quot;298&quot; title=&quot;Tips Memotret dengan Smartphone Berkamera Minim&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
Demikian lah Tips Memotret dengan Smartphone Berkamera Minim. Untuk melihat lebih dekat tentang komunitas FotoDroids bisa bergabung Di Fanspage &lt;a href=&quot;https://www.facebook.com/FotoDroids.&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://www.facebook.com/FotoDroids.&lt;/a&gt;</description><link>http://rushfly.blogspot.com/2014/09/tips-memotret-dengan-smartphone.html</link><author>noreply@blogger.com (Anonymous)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjlLhchenO7iRiCKsVo5wBBlZFm5wHL54j2e-sb9uBVcnxUk7dB30p9uK8MPe2gJu-n8R6l8M6nzLDXWH_VdZmnYyDjJ54kFgveDmyZ9E0-6_TmP9TkConJ0KQoKvIVZSttHBXGWZfxtrI/s72-c/988684_582115685162417_620447203_n.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-492314885275222270</guid><pubDate>Tue, 02 Sep 2014 03:57:00 +0000</pubDate><atom:updated>2014-09-02T21:53:43.435+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">INFOMEZZO</category><title>Hal yang Tidak Boleh Dilakukan Ketika Menggunakan Tablet </title><description>&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;Inilah hal-hal &amp;nbsp;yang TIDAK BOLEH dilakukan ketika anda menggunakan tablet.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;br /&gt;
1. JANGAN gunakan tablet anda saat tangan anda kotor&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;img alt=&quot;tangan kotor,tablet&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhqhAqysrbC9DiAROK7wDi0n8n7KkZGVUlHPz1VoY32KPfpGs_Z1vKxMOCq_jyS5Cdo2pHLrZYZAiv81rzEoNuo5tjMYSSK5TWsFEXGhy_0ZWte3mFXN7wqpt8KNyXKstRDUgv-C7ukmYU/s1600/stop.png&quot; /&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;why?&amp;nbsp;&lt;/span&gt;&amp;nbsp;&lt;/blockquote&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;karena mungkin debu atau &amp;nbsp;partikel lain yang menempel ditangan anda akan merusak hardware dari tablet kesayangan anda.&lt;/span&gt;&amp;nbsp;&lt;/blockquote&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;Dan jika itu terjadi, hal ini akan sangat berpengaruh pada responsitifitas layar sentuh dari tablet tersebut, mengingat layar/display merupakan bagian vital dari sebuah tablet PC.&lt;/span&gt;&lt;/blockquote&gt;
&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;2. sebaiknya anda tidak menyentuh tablet anda dengan anggota tubuh lain selain tangan.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;img alt=&quot;tablet&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgqOamEwgJW78GKJXUMXwk8ZYXpn-zFlMqflGatW_QejiqeV5-V3MGjPSTQkqryTicMV8z9XIxmV6VvSFjaEz2pfBkEXIDFUg4GosEnwqRi7E9DymUiYyH2Dw9Azfm_dDkTmcJR4TgNOCE/s640/ipad3.jpg&quot; /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;why?&lt;/span&gt;&amp;nbsp;&lt;/blockquote&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;because it&#39;s awkward if you touch your tablet with your another part of your body &amp;nbsp;&lt;/span&gt;&lt;/blockquote&gt;
&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;3. JANGAN menelepon seseorang ataupun menjawab panggilan telepon dari seseorang menggunakan tablet, apalagi jika tablet anda terlalu besar.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;img alt=&quot;tablet&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEibnYBtNu20xfZdS2_lkcwQ5wJO1bxf6M2uFQIMJC9PKJVaIMJLWNRMGL7BTQbGkeE75TuQgNst_d0V04QGEAA3S__In95ORk31yaAErvBvHzr7IYWDtnNGP20B_6nDxtkmIY1PHS8xAdc/s1600/sony-xperia-z-ultra-on-use.jpg&quot; height=&quot;640&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: x-large;&quot; width=&quot;611&quot; /&gt;&lt;/div&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;why?&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;of course, the other will see you. it&#39;s awkward thing to do.&lt;/span&gt;&lt;/blockquote&gt;
&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;4. JANGAN Memutar musik terlalu keras dengan tablet anda di tempat umum.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;img alt=&quot;tablet&quot; src=&quot;http://thumbs.dreamstime.com/x/boy-listening-loud-music-2755035.jpg&quot; height=&quot;334&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: x-large;&quot; width=&quot;640&quot; /&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;please, don&#39;t do that.&lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;why?&lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;because it&#39;s harrassing the other&lt;/span&gt;&lt;/blockquote&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;img alt=&quot;tablet&quot; src=&quot;http://i.kinja-img.com/gawker-media/image/upload/s--XB3qKD2W--/18fbluxpp0q8ljpg.jpg&quot; height=&quot;640&quot; width=&quot;583&quot; /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;5. JANGAN mengambil gambar atau merekam vidio saat konser berlangsung dengan tablet anda.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;img alt=&quot;tablet-concert&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVX1PtMHgoRhaxOnSQSMfJTBiVmpVsC25jOV6h5wwKzewpAhJabfDTITSL3iyoSzfIsAZ6ZzLvWYRcyoK5czP_ZqOYs-GacdutKDkg5KAhyXTkGjKcryruQi2bEifT8I3y4GPdoYQXQB4/s1600/tablet-concert.jpg&quot; /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;why you can&#39;t do that?&lt;/span&gt;&amp;nbsp;&lt;/blockquote&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;because ot must be blocking the other view when their enjoying the concert&lt;/span&gt;&lt;/blockquote&gt;
&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;Oke, sekian dulu pembahasan mengenai hal hal yang tidak boleh dilakukan ketika menggunakan tablet beserta alasannya.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;Semoga bermanfaat &amp;nbsp;:)&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;Source :&amp;nbsp;&lt;a href=&quot;http://www.buzzfeed.com/intel/dos-and-donts-of-owning-a-tablet?b=1&amp;amp;linkId=9395969&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;intel&lt;/a&gt;&lt;/span&gt;</description><link>http://rushfly.blogspot.com/2014/09/hal-yang-tidak-boleh-dilakukan-ketika.html</link><author>noreply@blogger.com (nuradamy)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhqhAqysrbC9DiAROK7wDi0n8n7KkZGVUlHPz1VoY32KPfpGs_Z1vKxMOCq_jyS5Cdo2pHLrZYZAiv81rzEoNuo5tjMYSSK5TWsFEXGhy_0ZWte3mFXN7wqpt8KNyXKstRDUgv-C7ukmYU/s72-c/stop.png" height="72" width="72"/><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-2702173698849521877</guid><pubDate>Thu, 03 Jul 2014 05:21:00 +0000</pubDate><atom:updated>2014-09-01T08:13:25.048+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Android</category><category domain="http://www.blogger.com/atom/ns#">Tutorial Android</category><title> Cara Flashing Galaxy Young </title><description>&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt; Siapa yang tidak kesal jika Samsung Galaxy Young anda Bootloop di karenakan mencoba menginstall Costum Rom.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Bootloop akan jadi hal biasa bagi anda yang sering ganti &lt;a href=&quot;http://www.rushfly.net/search/label/Costum%20ROM&quot; target=&quot;_blank&quot;&gt;costum rom&lt;/a&gt;.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp; &amp;nbsp; Nah, untuk mengatasi Bootloop, anda dapat mengatasinya dengan cara &amp;nbsp;Flashing Firmware Galaxy &amp;nbsp;Y atau dengan kata lain yaitu menginstall ulang Firmware Galaxy Y anda.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;strong&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: large;&quot;&gt;Ini adalah gambaran Stock Rom Odin flashable Firmware Untuk Samsung Galaxy Y GT-S5360&lt;/span&gt;&lt;/strong&gt;&lt;/h3&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;img alt=&quot;cara menggunakan odin di android&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiLB9Swr0IaqTDa7hRIFSxi_1MgWBdur8ml2tasV1XlE-vzv0DhVLXchtulGX5SZd85kbSx0Y6qsuIEG_1eiuNJetxz2vzmBEyaeAoD5q6myFaE_QKbtNluukk12KgJqWDkQ4Rgt7jiujo/s1600/cara-pakai-odin-3.png&quot; height=&quot;458&quot; width=&quot;640&quot; /&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h4&gt;
&lt;strong&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Berikut merupakan cara menggunakan firmware odin tersebut :&lt;/span&gt;&lt;/strong&gt;&lt;/h4&gt;
&lt;div&gt;
&lt;strong&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;
&lt;div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Install samsung usb drivers &amp;nbsp;(Jika anda menggunakan windows 8.1 jalankan compatibility mode for win xp). &amp;nbsp;Download [&lt;a href=&quot;http://developer.samsung.com/android/tools-sdks/Samsung-Andorid-USB-Driver-for-Windows&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Disini]&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Matikan Android Anda terlebih dahulu.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Masuk ke download mode dengan cara tahan tombol volume down +&amp;nbsp;tombol home &amp;nbsp;+&amp;nbsp;tombol power secara bersamaan.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Tekan saja tombol volume up untuk continue&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp;Konekkan USB Kabel dari Android ke PC&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Buka Odin, saya menggunakan Odin3 v1.85. Download [&lt;a href=&quot;http://www.mediafire.com/download/c3hpg5i3np2f408/Odin3-v1.85.zip&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Disini&lt;/a&gt;]&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Jika Android anda &amp;nbsp;sudah telah konek dengan Odin &amp;nbsp;, maka &amp;nbsp;kotak&lt;i&gt; ID:COM&lt;/i&gt; di Odin berwarna kuning&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Hanya &lt;i&gt;Auto reboot&lt;/i&gt; dan &lt;i&gt;F. Reset Time&lt;/i&gt; harus dicentang&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Masukkan file PDA di PDA&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Masukkan File Modem di Phone&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;Masukkan File CSC di CSC&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;img alt=&quot;Tutorial Cara Flashing Galaxy Young&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiiEIjX0eSqhr3X78Z3MOjVHIGY4_bm30dYsvCM-LTimTtMQfR0llKxqLw4Nb3xIJzo1e2TN0N33HbHRnFuSnywh7V-D-GufPPDyjHCZ9MIZ1xga32H9YIxdeRlIFRH0hr0HiL44ZYp-94/s1600/flashing-galaxy-y.png&quot; height=&quot;318&quot; width=&quot;640&quot; /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
12. Tahap terakhir yaitu dengan menekan tombol &lt;i&gt;Start. kemudian&amp;nbsp;&lt;/i&gt;biarkan proses &lt;i&gt;Flashing&lt;/i&gt; &amp;nbsp;berjalan hingga akhirnya keluar tulisan PASS pada Odin dan Android anda akan otomatis restart.&amp;nbsp;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;img alt=&quot;cara pakai odin&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQbYcpM8iUjyiP_DvMiA57sbt9ZoY87a-ZDSWHGUOMDKYadBp064RDPAWi-WhRkJq-JZgljio7hpvS4plF8sexS8dKIQN94IHWBiWFHxGbxSCM5kovh6q0xk8OglSXEupES07RlnraVmA/s1600/flashing-dengan-odin.png&quot; height=&quot;120&quot; width=&quot;640&quot; /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
File PDA,MODEM,CSC dapat didownload dibawah ini.&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
Indonesia, Malaysia, Philippines, Singapore, Vietnam&amp;nbsp;Firmwares&lt;br /&gt;
&lt;a href=&quot;http://d-h.st/OxD&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;S5360_DXMJ1_OLBMJ1_DXMI1_wipe_by_SplitFUS2&lt;/a&gt;&lt;/blockquote&gt;
&lt;br /&gt;
Android anda akan normal kembali jika proses flashing sukses.&lt;br /&gt;
&lt;br /&gt;
Jika Mengalami kesulitan tanyakan saja di kotak komentar.&lt;br /&gt;
&lt;br /&gt;
Semoga Tutorial Cara Flashing Galaxy Young ini bermanfaat.&lt;br /&gt;
Terima kasih. :D&lt;/div&gt;
</description><link>http://rushfly.blogspot.com/2014/07/cara-flashing-galaxy-young.html</link><author>noreply@blogger.com (Rza)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiLB9Swr0IaqTDa7hRIFSxi_1MgWBdur8ml2tasV1XlE-vzv0DhVLXchtulGX5SZd85kbSx0Y6qsuIEG_1eiuNJetxz2vzmBEyaeAoD5q6myFaE_QKbtNluukk12KgJqWDkQ4Rgt7jiujo/s72-c/cara-pakai-odin-3.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-3194935980524885019</guid><pubDate>Sat, 28 Jun 2014 08:50:00 +0000</pubDate><atom:updated>2014-09-01T00:00:10.618+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Technology</category><title>Trend Gamming Masa Depan Dengan Virtual Reality</title><description>&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;img alt=&quot;Virtua Reality Gamming&quot; src=&quot;http://i1301.photobucket.com/albums/ag108/rflash95/Rushfly/Virtual-Reality-gaming_zpse08fbb80.jpg&quot; height=&quot;426&quot; width=&quot;640&quot; /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;Pernahkan Anda mendengar istilah Virtual Reality ? &amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;Mungkin Istilah ini masih terdengar asing di telinga kita. Seperti yang dikutip dari Wikipedia, Virtual Reality atau juga dikenal sebagai &lt;i&gt;immersive multimedia ,&amp;nbsp;&lt;/i&gt;merupakan teknologi yang membuat pengguna dapat berinteraksi dengan suatu lingkungan yang disimulasikan oleh komputer (&lt;i&gt;computer simulated environment&lt;/i&gt;) dengan suatu lingkungan sebenarnya yang ditiru atau benar-benar hanya ada dalam imajinasi.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Timeline&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;1950-an&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;Morton Heiling membuat sebuah tulisan berjudul &quot;Experience Theater&quot; yang berisi keterlibatan pancaindra ketika melihat sebuah objek visual. Pada akhirnya, merealisasikan melalui prototipe mesin yang di beri nama Sansorama. Mesinini mampu menghadirkan efek yang dapat dirasakan oleh penonton, meliputi, suara , bau, sentuhan dan tentu saja visual.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;1962&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;Konsep &lt;i&gt;Virtual Reality &lt;/i&gt;&amp;nbsp;kemudia hadir dalam bentuk yang lebih canggih dengan memanfaatkan teknologi komputer dan layar memonitor melalui ide &lt;b&gt;Dauglas Engelbart&lt;/b&gt;, seorang Teknisi radar.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;1965&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;Ivan Sutherland &lt;/b&gt;berusahan untuk meniru dunia fisik dengan penggunaan penemuannya. Dia menyebutnya Ultimate Display. Virtual Reality dalam penemuan ini &amp;nbsp;akan terlihat seperti dunia yang kita tempati. Versi &lt;b&gt;&amp;nbsp;Sutherland &lt;/b&gt;ini tidak hanya berfokus pada objek 3D tetapi juga memberikan rangsangan taktil yang dianggap oleh beberapa orang sebagai konsep asli ketika mempertimbangkan sejarah Virtual Reality.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;1966&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;Thomas A. Furness III &lt;/b&gt;memperkenalkan &lt;i&gt;visuak Flight Simulator &lt;/i&gt;untuk pesawat Air Force.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;1968&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;Ivan Shuterland &lt;/b&gt;bersama dengan muridnya, &lt;b&gt;Bob Sproull &lt;/b&gt;membuat &lt;i&gt;virtual reality &lt;/i&gt;dan &lt;i&gt;augmented reality &lt;/i&gt;pertama dengan sistem &lt;i&gt;head-mounted &lt;/i&gt;Display yang diberi nama The Sword Of Damocles.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;b&gt;1978&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;Andrew Lippmand &lt;/b&gt;bersama timnya mengembangkan Hypermedia System lewat Aspen Movie Map yang menawarkan&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;b&gt;1991&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;Antonio Media &lt;/b&gt;&amp;nbsp;yang merupakan ilmuwan NASA merancang sebuah virtual reality system yang mampu mengedalikan Rover Mars (sebuah kendaraan jelajah tanpa Awak di Mars) dari Bumi melalui &lt;i&gt;system &lt;/i&gt;yang di berikan nama Computer Simulated Teleoperation.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Virtual Reality Games&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
Konsep permainan games pun akhir nya akhirnya merambah &amp;nbsp;ke &lt;i&gt;Wearable virtual reality &lt;/i&gt;yang dapat digunakan, meliputi &lt;i&gt;headgear &lt;/i&gt;dan sarung tangan yang sudah ditanamkan berbagai macam sensor. Hal ini dimaksudkan agar memberikan sensasi permainan game nyata intuitif.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;img alt=&quot;virtual reality games&quot; src=&quot;http://i1301.photobucket.com/albums/ag108/rflash95/Rushfly/virtual-reality-games-fun_zpsff1d2abf.jpg&quot; height=&quot;512&quot; width=&quot;640&quot; /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
 
&lt;b&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;OMNI &amp;nbsp;VIRTUIX&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;Omni Virtuix merupakan perangkat virtual reality yang menawarkan pengalaman gaming ke tingkat yang lebih tinggi.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;Perangkat ini terdiri dari &lt;i&gt;omni directional treadmill &lt;/i&gt;yang menawarkan permainan lebih nyata kerena gamer dituntut untuk berjalan, berlari atau bahkan melompat mengikuti alur game di dunia virtual yang sedang dimainkan.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;Untuk menunjang kemampuan ini, Omni Virtuix dilengkapi sepatu khusus yang dikenakan ke penggunanya. Konsep ini tentunya akan memberikan pengalaman lebih memuaskan kepada penggunanya ketimbang hanya duduk ketika memainkan game.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img alt=&quot;omni virtuix, shoes, treadmill&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgfuEsyGLnfdLAGlMoj8nKYtDnv6ph1ZjyZ71JpJI1tHAlCQ8y0FRnuuWiWsz3feWjAmq6AYkOP5ImlLE57z04swsQkb1-RXVzBuWPwyv1xqdQZ76_TVMawEGTFppKxlkTddpm_qAJ-314/s1600/omni_virtuix.png&quot; /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;Untuk Lebih jelasnya mengenai OMNI VIRTUIX lihat Video ini.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;iframe allowfullscreen=&quot;&quot; height=&quot;360&quot; src=&quot;//www.youtube.com/embed/j3vHv4lNvg4&quot; width=&quot;640&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;Nah, selaim itu masih ada lagi teknologi dari virtual reality , untuk mengetahuinya, jangan lupa ikuti kami di sosial media untuk mendapatkan info terbaru tentang virtual reality :D&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;Oke, sekian dulu info tentang virtual reality, nantikan episode selanjutnya.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;Semoga isi artikel ini &amp;nbsp;bermanfaat untuk Anda.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;Terima Kasih :D&lt;/span&gt;</description><link>http://rushfly.blogspot.com/2014/06/trend-gamming-masa-depan-dengan-virtual.html</link><author>noreply@blogger.com (Rza)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://i1301.photobucket.com/albums/ag108/rflash95/Rushfly/th_Virtual-Reality-gaming_zpse08fbb80.jpg" height="72" width="72"/><thr:total>3</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-3496352481053531747</guid><pubDate>Thu, 19 Jun 2014 16:12:00 +0000</pubDate><atom:updated>2014-06-20T21:56:43.461+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Software</category><category domain="http://www.blogger.com/atom/ns#">Tutorial Windows</category><title>Cara Update Driver di Windows 8 </title><description>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjHeOXUIvmTooPdCyqRpRUpXGd1FYFo6uGVQmU6XnLOH_Rt5BsVdLkQggbQR0ov9GmZ8B7rfVVZiRjJv5X-ubiwnSbw7lYp69q_b50uR1DiMsshoKA57Jn4wi0M_7YK97y_bz1wZUbsFHM/s1600/update-your-driver-now.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Update your driver, 3DP Chip&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjHeOXUIvmTooPdCyqRpRUpXGd1FYFo6uGVQmU6XnLOH_Rt5BsVdLkQggbQR0ov9GmZ8B7rfVVZiRjJv5X-ubiwnSbw7lYp69q_b50uR1DiMsshoKA57Jn4wi0M_7YK97y_bz1wZUbsFHM/s1600/update-your-driver-now.png&quot; title=&quot;Update Your Driver&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Cara Update Driver di Windows 8. Baca juga &lt;a href=&quot;http://www.rushfly.net/2014/06/download-armed-for-windows-8.html&quot; target=&quot;_blank&quot;&gt;Download ARMED! For Windows 8&lt;/a&gt;. Jika salah satu fungsi Hardware pada PC/ notebook bermasalah, dimungkinkan akibat dari kurangnya dukungan driver perangkat tersebut. Mencari driver melalui mesin pencari juga tidak semudah yang dibanyangkan. Dengan Software 3Dchip, Anda dapat melakukan cek hardware bermasalah dan langsung memberikan &amp;nbsp;link download driver yang paling sesuai dengan tipe OS Windows PC/ Notebook Anda. 3DP Chip berupa Freeware, jadi tak perlu khawatir memikirkan lisensinya.&lt;br /&gt;
&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjFdTB3N5uLogMmH9QvWMq34WjsMwOf0IycKFsE1O6sAQ0ECkL0KAe3jxnpVm2gHKToaGiACW1Y_HGret0rlR08Ac2hTl_espb1OnNgQ8pwhBVigtKOoSWV6v7ojlZwJ-J8hTMYh7K3AZk/s1600/cara-mudah-update-driver.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;cara mudah update driver, 3DP Chip&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjFdTB3N5uLogMmH9QvWMq34WjsMwOf0IycKFsE1O6sAQ0ECkL0KAe3jxnpVm2gHKToaGiACW1Y_HGret0rlR08Ac2hTl_espb1OnNgQ8pwhBVigtKOoSWV6v7ojlZwJ-J8hTMYh7K3AZk/s1600/cara-mudah-update-driver.png&quot; title=&quot;Tampilan 3DP Chip &quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;Begitu software 3DP Chip di jalankan, disajikan informasi hardware PC/ notebook secara lengkap. Jika perangkat multimedia atau network yang bermasalah, silahkan klik list &amp;nbsp;dan akan langsung mengarah ke link download software tersebut.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh9s_lbiWkpA69h3XllvbT6KYLnmMM1UEilBC27PkNlfb7mRU-8RzXH3rokNDQyh2Rv6r025loQXQXSXD_cSKL84WhN052OsFkHXCQH8ZTsdu7zGP5IJ88hrn6al9u3cVT3cf6_Wo30yN8/s1600/link_download_update-driver.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Link Download Driver, NVIDA&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh9s_lbiWkpA69h3XllvbT6KYLnmMM1UEilBC27PkNlfb7mRU-8RzXH3rokNDQyh2Rv6r025loQXQXSXD_cSKL84WhN052OsFkHXCQH8ZTsdu7zGP5IJ88hrn6al9u3cVT3cf6_Wo30yN8/s1600/link_download_update-driver.png&quot; height=&quot;231&quot; title=&quot;Link Download Driver&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span id=&quot;goog_1043028461&quot;&gt;&lt;/span&gt;&lt;span id=&quot;goog_1043028462&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;Link downloadnya ada di laman 3dpchip.com yang menunjukkan &amp;nbsp;update driver terakhir untuk tipe OS Windows. Update driver terbaru untuk hardware akan mengantisipasi terhadapat masalah kompabilitas.&lt;br /&gt;
&lt;br /&gt;
Link Download&lt;br /&gt;
- &lt;a href=&quot;http://www.3dpchip.com/3dpchip/3dp/chip_down_en.php&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;3DP Chip&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;Jika ada pertanyaan tanya kan saja di kotak komentar, terimakasih.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span id=&quot;goog_244323409&quot;&gt;&lt;/span&gt;&lt;span id=&quot;goog_244323410&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
</description><link>http://rushfly.blogspot.com/2014/06/cara-update-driver-di-windows-8.html</link><author>noreply@blogger.com (Rza)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjHeOXUIvmTooPdCyqRpRUpXGd1FYFo6uGVQmU6XnLOH_Rt5BsVdLkQggbQR0ov9GmZ8B7rfVVZiRjJv5X-ubiwnSbw7lYp69q_b50uR1DiMsshoKA57Jn4wi0M_7YK97y_bz1wZUbsFHM/s72-c/update-your-driver-now.png" height="72" width="72"/><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-2553791908688150577</guid><pubDate>Tue, 17 Jun 2014 08:22:00 +0000</pubDate><atom:updated>2014-06-19T23:24:28.420+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Games Full Version</category><title>Download ARMED! For Windows 8 </title><description>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgz2nOpoXfFLgGn4ZK0ST4wrv9frvpb8ZtSC3l5vtk0Q32z-Yr0JvwLjbVQpirNDYd33TeBZbiRLmtWA9jZskSoNmDjNllV0IKjvg5EhsG95RGimB5iA4AURRJLccoAyMJxgpRCTah-c94/s1600/Download-Armed-Full-version.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Download ARMED! For Windows 8, Full version Game&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgz2nOpoXfFLgGn4ZK0ST4wrv9frvpb8ZtSC3l5vtk0Q32z-Yr0JvwLjbVQpirNDYd33TeBZbiRLmtWA9jZskSoNmDjNllV0IKjvg5EhsG95RGimB5iA4AURRJLccoAyMJxgpRCTah-c94/s1600/Download-Armed-Full-version.jpg&quot; height=&quot;360&quot; title=&quot;Download ARMED! For Windows 8 &quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&amp;nbsp; &amp;nbsp; &lt;br /&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ARMED! adalah &lt;i&gt;sci-fi turn-based game startegy &lt;/i&gt;yang akan mendukung kedua permainan tunggal dan multi-&lt;i&gt;player&lt;/i&gt;. Terdapat tutorial agar Kamu &amp;nbsp;dapat belajar bagaimana cara untuk bermain. Kamu akan mulai dengan sebuah menara dan harus membangun ofensif, defensif, dan satuan &amp;nbsp;struktur untuk tentara. Kamu Harus menangkap pilar sumber daya untuk mendapatkan lebih banyak uang. Di games ini juga memiliki fitur upgrade untuk memperkuat ofensif dan defensif mu.&lt;br /&gt;
&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Features&lt;br /&gt;
-Seven maps with unique artwork and tactical terrain features.&lt;br /&gt;
-13 defensive and offensive units to command into battle.&lt;br /&gt;
-Over 50 unit upgrades and special attacks to help turn the tide.&lt;br /&gt;
-Simultaneous turn online multiplayer with ratings and matchmaking.&lt;br /&gt;
-Challenge your friends to a multiplayer matches.&lt;br /&gt;
-Step by step tutorial that gets you right into the game.&lt;br /&gt;
-Tile updates with turn notifications.&lt;br /&gt;
-Track your stats and rankings on the real time leaderboards.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lebih dekat nya yuk lihat Trailer ARMED!&lt;br /&gt;
&lt;br /&gt;
Trailer&amp;nbsp;ARMED!&lt;br /&gt;
&lt;br /&gt;
&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;360&quot; src=&quot;//www.youtube.com/embed/T4bEWO4-I2A&quot; width=&quot;640&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
Game ini bersifat Free, jadi tidak perlu lagi memikirkan lisensinya, Anda hanya perlu mendownload dan mainkan.&lt;br /&gt;
&lt;br /&gt;
Link Download&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://apps.microsoft.com/windows/en-us/app/armed/a080e316-b7ff-4d81-831c-2967a9c2357d&quot; target=&quot;_blank&quot;&gt;ARMED! For Windows 8&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Tambahan&lt;br /&gt;
&lt;a href=&quot;http://www.windowsphone.com/en-us/store/app/armed/bd765dda-ef5b-4c54-9e70-a02f4558a13e&quot; target=&quot;_blank&quot;&gt;ARMED! For Windows Phone&lt;/a&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhiBsvA9GOFn0CVL_bB5xXo5Jf_hEinzOPHcs5eL3eggnLuvRvWh9oBRhGgSTYZZULMDysE5zl85eWymWPxf3SvWpzeY8Cm7PSsppJSlVTDl6qTkLiFsyTOPth6g8PFQLmCbs4mPCNaoDA/s1600/Armed-full-games.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Download ARMED! For Windows 8 , logo, full version&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhiBsvA9GOFn0CVL_bB5xXo5Jf_hEinzOPHcs5eL3eggnLuvRvWh9oBRhGgSTYZZULMDysE5zl85eWymWPxf3SvWpzeY8Cm7PSsppJSlVTDl6qTkLiFsyTOPth6g8PFQLmCbs4mPCNaoDA/s1600/Armed-full-games.png&quot; title=&quot;Logo Download ARMED! For Windows 8 &quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Published by&lt;br /&gt;
Sickhead Games, LLC&lt;br /&gt;
Copyright © 2011-2012, Sickhead Games, LLC.&lt;br /&gt;
Category &amp;nbsp;Games / Strategy&lt;br /&gt;
Approximate size 68.5 MB&lt;br /&gt;
Age rating &amp;nbsp;12+&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Demikian postingan kali ini , jika ada pertanyaan , tanyakan saja di kotak komentar. Terimakasih :)&lt;br /&gt;
&lt;div class=&quot;DetailSub&quot; id=&quot;Publisher&quot; style=&quot;color: #9e9e9e; font-family: &#39;Segoe UI&#39;, Tahoma, Arial, sans-serif; font-size: 16px; margin: 1.094em 0px 0px; padding: 0px; white-space: nowrap;&quot;&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;truncTextWrapLabel SectionFontDark floatLeft&quot; id=&quot;AppDeveloperLabel&quot; style=&quot;color: #454545; float: left; font-family: &#39;Segoe UI&#39;, Arial, Verdana, sans-serif; font-size: 0.813em; line-height: 1.5em; margin: 0px 0.5em 0px 0px; padding: 0.2em 0px 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</description><link>http://rushfly.blogspot.com/2014/06/download-armed-for-windows-8.html</link><author>noreply@blogger.com (Rza)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgz2nOpoXfFLgGn4ZK0ST4wrv9frvpb8ZtSC3l5vtk0Q32z-Yr0JvwLjbVQpirNDYd33TeBZbiRLmtWA9jZskSoNmDjNllV0IKjvg5EhsG95RGimB5iA4AURRJLccoAyMJxgpRCTah-c94/s72-c/Download-Armed-Full-version.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-1819607183107144113</guid><pubDate>Sun, 01 Jun 2014 13:59:00 +0000</pubDate><atom:updated>2014-09-12T10:34:06.004+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Gadget</category><category domain="http://www.blogger.com/atom/ns#">Review</category><category domain="http://www.blogger.com/atom/ns#">Technology</category><title>GOkey : Charger. Cable. Locator. Memory. Semua Ada di Gantungan Kunci </title><description>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjONuJmj1oPnT7a_WNCGajyKPVCbvi_o6_SsgnmuV1hLwbcaHkiNXA_lwQlarueG3HOFypiYMyh6M6PByEuHQqxsfN9JG0fjNOrlPRVW9EsED4JsPpWbLoOwnD2yaijed8uW134oePwjEo/s1600/GOkey.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;GOkey : Charger. Cable. Locator. Memory.&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjONuJmj1oPnT7a_WNCGajyKPVCbvi_o6_SsgnmuV1hLwbcaHkiNXA_lwQlarueG3HOFypiYMyh6M6PByEuHQqxsfN9JG0fjNOrlPRVW9EsED4JsPpWbLoOwnD2yaijed8uW134oePwjEo/s1600/GOkey.png&quot; title=&quot;GOkey : Charger. Cable. Locator. Memory.&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
Portable battery charger, USB cable, flash drive &amp;nbsp;dan gantungan kunci.&amp;nbsp;Ini hanya beberapa hal yang terpisah yang Anda bawa di tas &amp;nbsp;dan saku Anda.Tetapi bagaimana jika semua benda tersebut menjadi satu ? Semua ini akan jadi kenyataan.&lt;br /&gt;
&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Mari kita membedah satu per satu. Pertama, emergency portable charger . Tidak cukup untuk mengisi penuh smartphone yang lowbatt, tetapi si pembuat mengklaim itu bisa tetap berjalan selama 2 jam lebih . Kedua adalah Charging and data cable. Anda dapat menghubungkan&amp;nbsp;Gokey&amp;nbsp;ke komputer&amp;nbsp;untuk charge dan file transfer, tetapi Anda juga bisa pasang ke stop kontak untuk waktu pengisian lebih cepat. Ketiga adalah USB flash drive, dapat &amp;nbsp;menyimpan file Anda di dalam gokey, untuk pilihan ukuran penyimpanan 8, 16 sampai 32 GB .&amp;nbsp;Dan terakhir, Bluetooth-enabled locator, memberitahu anda untuk mencari kunci atau apa pun yang melekat pada Gokey dan dapat mencari smartphone &amp;nbsp;dengan hanya menekan sebuah tombol pada Gokey.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLeHD7e_r68ANvfQi7-dRId8NShD5veGn80M0WaTrhGOoDPmIHIeSOCjAQTffPkf1W5GEw2axmO1Gvgj1oYEy4Z6RcEKH_vurLsipcwTjdbLPBwFFcG5DdYYu53IPIAZo3gdwOK43Yrek/s1600/gokey-powerful.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;GOkey : Charger. Cable. Locator. Memory.&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLeHD7e_r68ANvfQi7-dRId8NShD5veGn80M0WaTrhGOoDPmIHIeSOCjAQTffPkf1W5GEw2axmO1Gvgj1oYEy4Z6RcEKH_vurLsipcwTjdbLPBwFFcG5DdYYu53IPIAZo3gdwOK43Yrek/s1600/gokey-powerful.png&quot; title=&quot;GOkey : Charger. Cable. Locator. Memory.&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
Ada beberapa hal yang harus dilihat untuk aksesoris kecil ini yang hampir sempurna. Kapasitas baterai maksimal 400 mAh, yang terdengar agak rendah. &amp;nbsp;Fitur locator juga tidak terlalu sederhana. Meskipun radius efektif dikatakan 100 m.&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;Untuk lebih jelasnya , lihat lah video dibawah ini.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;360&quot; src=&quot;//www.youtube.com/embed/RrF7icx6iEM&quot; width=&quot;640&quot;&gt;&lt;/iframe&gt;

&lt;br /&gt;
&lt;br /&gt;
Lebih detailnya tentang Gokey bisa dilihat di&amp;nbsp;&lt;a href=&quot;https://www.indiegogo.com/projects/gokey-charger-cable-locator-memory-all-on-your-key-ring&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Indiegogo&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;</description><link>http://rushfly.blogspot.com/2014/06/gokey-charger-cable-locator-memory.html</link><author>noreply@blogger.com (Rza)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjONuJmj1oPnT7a_WNCGajyKPVCbvi_o6_SsgnmuV1hLwbcaHkiNXA_lwQlarueG3HOFypiYMyh6M6PByEuHQqxsfN9JG0fjNOrlPRVW9EsED4JsPpWbLoOwnD2yaijed8uW134oePwjEo/s72-c/GOkey.png" height="72" width="72"/><thr:total>3</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-4541888997027016035</guid><pubDate>Fri, 30 May 2014 09:15:00 +0000</pubDate><atom:updated>2014-05-30T16:16:37.852+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">INFOMEZZO</category><title>5 Karakteristik CIO yang Baik</title><description>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgg1R5RIjCgR5xq06oRXogh5r9szAFYb7MzZwhBIAR3JFU389pJdkM-E0nRVvKfkoFcBYcAtwY877rv6v56xlUTWkZf81_s2T_mg_diSdIntgvwIfQr4FMiRIbOLX2aG0zB5I9E8Pf2Nsc/s1600/5-karakteristik-cio-yang-baik.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;5 Karakteristik CIO yang Baik&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgg1R5RIjCgR5xq06oRXogh5r9szAFYb7MzZwhBIAR3JFU389pJdkM-E0nRVvKfkoFcBYcAtwY877rv6v56xlUTWkZf81_s2T_mg_diSdIntgvwIfQr4FMiRIbOLX2aG0zB5I9E8Pf2Nsc/s1600/5-karakteristik-cio-yang-baik.png&quot; height=&quot;420&quot; style=&quot;cursor: move;&quot; title=&quot;5 Karakteristik CIO yang Baik&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;b style=&quot;font-size: xx-large;&quot;&gt;Chief Information Officer (CIO).&lt;/b&gt;&lt;br /&gt;
Sebagai yang paling bertanggung jawab terhadap TI di suatu perusahaan, tentunya tidak mudah untuk menjadi seorang CIO. Berikut ini lima karakteristik untuk membantu Anda mempersiapkan diri sebelum ditunjuk menjadi seorang CIO.&lt;br /&gt;
&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: x-large;&quot;&gt;1. Mengerti Bisnis&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Seseorang yang ingin menjadi CIO yang baik harus mengerti bisnis dari perusahaan tempat ia berkarya. Mengapa ? karena pemanfaatan TI ujung-ujungnya adalah kontribusi terhadap bisnis perusahaan. Dengan mengerti, ia memiliki ketajaman untuk mengambil keputusan. Pemahaman terhadapa proses bisnis membuatnya bisa menciptakan sistem informasi yang tepat, yang dapat meningkatkan bisnis. Jadi, mengerti bagaimana bisnis perusahaan sebenarnya, membuat alignment antara TI dengan bisnis menjadi optimal.&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;
&lt;span style=&quot;font-size: x-large;&quot;&gt;2. Punya Visi dan Strategi&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: x-large;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-size: xx-small;&quot;&gt;&amp;nbsp; &amp;nbsp;&lt;/span&gt; &amp;nbsp;Untuk mencapai tujuannya meningkatkan bisnis perusahaan, &amp;nbsp;seorang CIO harus tahu ke mana dia akan membawa TI perusahaannya tersebut dan bagaimana caranya. Oleh karena itu, CIO yang baik perlu memiliki visi dan strategi. Dengan adanya visi ini, berbagai pihak yang terlibat maupun seluruh orang yang berada di bawah pimpinan CIO memiliki arah yang jelas. Dengan arah yang jelas ini, mereka bisa lebih align dengan apa yang hendak dicapai sang CIO.&lt;br /&gt;
&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-size: x-large;&quot;&gt;3. Memiliki Kepemimpinan&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; Sebagai pemimpin, CIO harus bisa membawa setiap orang yang berada di bawah pimpinannya untuk bergerak ke arah yang sama. Ke arah yang telah ditentukannya. Tidak sekedar mengikuti &amp;nbsp;karena instruksi maupun posisi CIO yang lebih tinggi, tetapi karena mereka percaya terhadap arah yang ditetapkan itu. Dengan kata lain, CIO yang Baik harus bisa menginspirasi para orang yang dipimpinnya sehingga percaya akan visi, &lt;i&gt;goal&lt;/i&gt;, maupun strategi dari sang CIO.&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: x-large;&quot;&gt;4. Bisa Berinovasi&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; Seseorang yang ingin menjadi CIO yang baik juga wajib memiliki pemikiran untuk membuat TI senantiasa memberikan &lt;i&gt;competitive &amp;nbsp;advantage&lt;/i&gt; pada bisnis. Dengan kata lain, ia harus terus-menerus berinovasi agar TI bisa senantiasa memberikan peningkatan terhadap perusahaan. Oleh karena itu, ia harus mampu memberikan banyak ide dan &lt;i&gt;up-to-date &lt;/i&gt;alias tidak tertinggal terhadap perkembangan teknologi.&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; Selain kreatif, diperlukan kemauan untuk selalu belajar, mengikuti perkembangan teknologi, tren bisnis, maupun social interaction. Antara lain lewat rajin membaca, banyak mengikuti aneka forum teknologi di dalam maupun di luar negeri, maupun menyisihkan waktu khusus untuk belajar hal baru.&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: x-large;&quot;&gt;5. Mampu Bekerja Sama&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;Seorang CIO tidak bekerja sendiri maupun dengan orang TI saja. Ia perlu bekerja dengan dengan berbagai unit lain. Tentunya ini tidak mudah. Karakteristik setiap unit lain itu tentu berbeda. Seoraing CIO yang baik harus bisa berkolaborasi dengan berbagai pihak yang terlibat, apakah itu bisnis, &lt;i&gt;accounting, marketing, human resource,&lt;/i&gt; dan lainya.&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;Saat berkomunikasi dengan pihak lain, ia harus menggunakan bahasa yang dimengerti bahasa bisnis. Ia juga harus melobi &lt;i&gt;key people&lt;/i&gt; agar mendukung berbagai program TI yang melibatkan mereka maupun unit mereka.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ini lah 5 karakteristik CIO yang baik, baca juga &lt;a href=&quot;http://www.rushfly.net/2014/04/8-profesi-bidang-it-paling-dibutuhkan.html&quot; target=&quot;_blank&quot;&gt;8 Profesi Bidang IT Paling Dibutuhkan&lt;/a&gt;. Terima kasih telah membaca artikel ini, semoga bermanfaat.&lt;br /&gt;
&lt;br /&gt;</description><link>http://rushfly.blogspot.com/2014/05/5-karakteristik-cio-yang-baik.html</link><author>noreply@blogger.com (Rza)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgg1R5RIjCgR5xq06oRXogh5r9szAFYb7MzZwhBIAR3JFU389pJdkM-E0nRVvKfkoFcBYcAtwY877rv6v56xlUTWkZf81_s2T_mg_diSdIntgvwIfQr4FMiRIbOLX2aG0zB5I9E8Pf2Nsc/s72-c/5-karakteristik-cio-yang-baik.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-1372252680822725639</guid><pubDate>Thu, 29 May 2014 04:48:00 +0000</pubDate><atom:updated>2014-05-29T11:52:58.589+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Android</category><category domain="http://www.blogger.com/atom/ns#">INFOMEZZO</category><title>Cari Informasi Penerbangan Dengan Android</title><description>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgg6bjvu32il4Qj5nQHKyd9sPnzQqIo8ZuagyeLSqkuvlsuqahm-z9SUlXUiv-WTT46JmjlCxWRfRQ3wPUbHB-CQrBzd_m6LcdZ5LbdTekgGM7iKuI2hjt38EW3cZPG7DogdNEcOXaDWoA/s1600/flight-track-5.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Cari Informasi Penerbangan Dengan Android&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgg6bjvu32il4Qj5nQHKyd9sPnzQqIo8ZuagyeLSqkuvlsuqahm-z9SUlXUiv-WTT46JmjlCxWRfRQ3wPUbHB-CQrBzd_m6LcdZ5LbdTekgGM7iKuI2hjt38EW3cZPG7DogdNEcOXaDWoA/s1600/flight-track-5.png&quot; height=&quot;399&quot; title=&quot;Cari Informasi Penerbangan Dengan Android&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;Anda gemar melakukan perjalanan jauh dengan pesawat ? &lt;/span&gt;&lt;/b&gt;Jika ya, aplikasi FlightTrack ini dapat Anda Install di Android Anda untuk membantu Anda dalam mencari informasi penerbangan untuk Anda.&lt;br /&gt;
&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Di dalam aplikasi ini sudah mendukung &amp;nbsp;hampir semua maskapai ternama didunia. Anda bisa mencari informasi penerbangan berdasarkan rute dan nomer pesawat. Contohnya untuk penerbangan Jakarta - Bali Dengan pesawat Garuda Indonesia dengan nomer penerbangan GIA412, Anda tidak hanya mengetahui rute yang akan dilalui, tetapi juga terminal keberangkatan dan kedatangan di setiap airport. Anda pun bisa mengetahui jenis pesawat yang digunakan, apakah dari boeing atau Airbus perkiraan waktu tempuh pun bisa Anda ketahui dari aplikasi ini. Anda juga dapat memasukkan banyak jadwal penerbangan di dalam FlightTrack 5.0.2&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi2koqLg1KFk9tZjh_133RwAx9rSmxjHO__DnaNccnAON6L2CnBmsHg89iFuXXnqM3LlpeY5NQiRZXX1fkvcyyASSy-Od2AI2d5oxyVSbnstxX5TmwC0D5gprdZHdxUXisZrOyJ9Q1_PUs/s1600/flight-track-jakarta-to-denpasar.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;/a&gt;&lt;img alt=&quot;Cari Informasi Penerbangan Dengan Android&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi2koqLg1KFk9tZjh_133RwAx9rSmxjHO__DnaNccnAON6L2CnBmsHg89iFuXXnqM3LlpeY5NQiRZXX1fkvcyyASSy-Od2AI2d5oxyVSbnstxX5TmwC0D5gprdZHdxUXisZrOyJ9Q1_PUs/s1600/flight-track-jakarta-to-denpasar.png&quot; height=&quot;400&quot; title=&quot;Cari Informasi Penerbangan Untuk Indonesia&quot; width=&quot;300&quot; /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgTWhJSw7cXysFMKUq1AUUq_Mx_wcIAB4dvxD-HkXVPZe8Za7zOQqIdophlWCr8heAAnPymid1rm8U8j7B18WKZ2ctEe_xiFe1WJxOM-_44KdLyqQTbhc5VmqHm7os_d8_bgrMU2tPJYdU/s1600/jadwal-penerbangan.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Cari Informasi Penerbangan Dengan Android&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgTWhJSw7cXysFMKUq1AUUq_Mx_wcIAB4dvxD-HkXVPZe8Za7zOQqIdophlWCr8heAAnPymid1rm8U8j7B18WKZ2ctEe_xiFe1WJxOM-_44KdLyqQTbhc5VmqHm7os_d8_bgrMU2tPJYdU/s1600/jadwal-penerbangan.png&quot; height=&quot;400&quot; title=&quot;Cari Informasi Penerbangan Bandara Soekarno-Hatta &quot; width=&quot;300&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
Aplikasi ini cocok bagi Anda yang sering melakukan perjalanan, baik lokal maupun internasional. Dengan FlightTrack, Anda bisa mendapatkan informasi &amp;nbsp;pesawat, tujuan, hingga bandara.&lt;br /&gt;
&lt;br /&gt;
Download : &lt;a href=&quot;https://play.google.com/store/apps/details?id=com.mobiata.flighttrack.five&quot; target=&quot;_blank&quot;&gt;FlightTrack 5.02&amp;nbsp;Apk&lt;/a&gt;</description><link>http://rushfly.blogspot.com/2014/05/informasi-penerbangan-dengan-android.html</link><author>noreply@blogger.com (Rza)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgg6bjvu32il4Qj5nQHKyd9sPnzQqIo8ZuagyeLSqkuvlsuqahm-z9SUlXUiv-WTT46JmjlCxWRfRQ3wPUbHB-CQrBzd_m6LcdZ5LbdTekgGM7iKuI2hjt38EW3cZPG7DogdNEcOXaDWoA/s72-c/flight-track-5.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-9035898304077482776</guid><pubDate>Tue, 27 May 2014 04:41:00 +0000</pubDate><atom:updated>2014-05-27T12:19:23.061+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Open Source</category><category domain="http://www.blogger.com/atom/ns#">Tugas</category><title>Software Open Source Di Windows</title><description>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2HVf60MSZtAji4DYMrc-M5yzZ2RbxuNNAm_eywBWRMhMQel1Et-3eeWZcIPci8lLbj2cJmXs67RZ_NbXqroo-tGaZZ0k6kYeiLvUBdHGxii0ezX3gnWE3cFpJ_g0QLsuEifto2JBgSm8/s1600/open-source-in-windows.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Software Open Source Di Windows&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2HVf60MSZtAji4DYMrc-M5yzZ2RbxuNNAm_eywBWRMhMQel1Et-3eeWZcIPci8lLbj2cJmXs67RZ_NbXqroo-tGaZZ0k6kYeiLvUBdHGxii0ezX3gnWE3cFpJ_g0QLsuEifto2JBgSm8/s1600/open-source-in-windows.png&quot; title=&quot;Software Open Source Di Windows&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style=&quot;background-color: #fdfdfd; color: #555555; font-family: Arial, Helvetica, sans-serif; font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Kebanyakan orang&amp;nbsp;berpikir bahwa&amp;nbsp;Open source&amp;nbsp;selalu berhubungan dengan Sistem Operasi&amp;nbsp;LINUX.&amp;nbsp;Tapi,&amp;nbsp;ada beberapa&amp;nbsp;aplikasi&amp;nbsp;untuk sistem&amp;nbsp;operasi Windows yang dikembangkan dan&amp;nbsp;dikelola oleh&amp;nbsp;komunitas&amp;nbsp;Open Source&amp;nbsp;dan di bawah&amp;nbsp;lisensi GPL.&amp;nbsp;Sebelumnya,&amp;nbsp;Anda pasti&amp;nbsp;tahu&amp;nbsp;OpenOffice&amp;nbsp;dan Firefox.&lt;/span&gt;&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: #fdfdfd; font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;&lt;span style=&quot;color: #555555; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Di sini, saya akan memaparkan &amp;nbsp;beberapa aplikasi yang sangat baik, Open Source,Totally Free, Powerfull, Handal , mungkin saat ini sebagian dari kita tidak tahu bahwa, sebagian besar aplikasi open source memiliki kemampuan yang lebih bagus dari aplikasi shareware berbayar.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: #fdfdfd; font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;&lt;span style=&quot;color: #555555; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: #fdfdfd; font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;&lt;span style=&quot;color: #555555; font-family: Arial, Helvetica, sans-serif;&quot;&gt;1. Open Office&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;background-color: #fdfdfd; color: #555555; font-family: Arial, Helvetica, sans-serif; font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: #fdfdfd; color: #555555; font-family: Arial, Helvetica, sans-serif; font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;&amp;nbsp; &amp;nbsp;Download: [&lt;/span&gt;&lt;a href=&quot;http://filehippo.com/download_openoffice&quot; style=&quot;background-color: #fdfdfd; font-family: Arial, Helvetica, sans-serif; font-size: 15px; line-height: 23.099998474121094px;&quot; target=&quot;_blank&quot;&gt;Disini&lt;/a&gt;&lt;span style=&quot;background-color: #fdfdfd; color: #555555; font-family: Arial, Helvetica, sans-serif; font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;]&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: #fdfdfd; color: #555555; font-family: Arial, Helvetica, sans-serif; font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background-color: #fdfdfd; color: #555555; font-family: Arial, Helvetica, sans-serif; font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;Website &amp;nbsp;: &amp;nbsp;[&lt;/span&gt;&lt;a href=&quot;https://www.openoffice.org/&quot; style=&quot;background-color: #fdfdfd; font-family: Arial, Helvetica, sans-serif; font-size: 15px; line-height: 23.099998474121094px;&quot; target=&quot;_blank&quot;&gt;Disini]&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEirmPySH-mg6uQbZ5AxBJWcv50ZeXX32MKmXvX-d3bHpgcIkwD0755aQd81R8z1QwNsfNYp1IxrW70Akwa-7mebyMLzkFDopeVLRd6MnZqsTPPO7vd6k22NdOSvowttsKmxAcO8k6JOKiI/s1600/open-office.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;download Open Office &quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEirmPySH-mg6uQbZ5AxBJWcv50ZeXX32MKmXvX-d3bHpgcIkwD0755aQd81R8z1QwNsfNYp1IxrW70Akwa-7mebyMLzkFDopeVLRd6MnZqsTPPO7vd6k22NdOSvowttsKmxAcO8k6JOKiI/s1600/open-office.png&quot; title=&quot;Open Office &quot; /&gt;&lt;/a&gt;&lt;span style=&quot;color: #555555; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;Apache OpenOffice (dahulu OpenOffice.org) adalah sebuah paket aplikasi perkantoran berkode sumber terbuka (open source) yang dapat diperoleh secara gratis. Paket tersebut termasuk komponen-komponen pengolah kata (word processor), lembar kerja (spreadsheet), presentasi, ilustrasi vektor, dan gudang data (database). Apache OpenOffice ditujukan sebagai saingan bagi Microsoft Office dan dapat dijalankan di atas berbagai platform, di antaranya Windows, Solaris, Linux, dan Mac OS X. Apache OpenOffice mendukung standar dokumen terbuka untuk pertukaran data, dan dapat digunakan tanpa biaya.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #555555; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;color: #555555; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;color: #555555; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;2. GIMP&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #555555; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;&amp;nbsp; &amp;nbsp; Download: [&lt;a href=&quot;http://filehippo.com/download_the_gimp&quot; target=&quot;_blank&quot;&gt;Disini&lt;/a&gt;]&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #555555; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;&amp;nbsp; &amp;nbsp; Website &amp;nbsp; : &lt;a href=&quot;http://www.gimp.org/&quot; target=&quot;_blank&quot;&gt;[Disini&lt;/a&gt;]&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #555555; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSpmmRhS4hcdvJjsaGrFa0vA8yLFVQfIWDLmpcavHBIPDdcR4zIxt8Z6_dulXvka3hydj9Ad6B3ziHUdO8gexpHRsWibWqXrkql7zt98cHfoVfwa34qls4hh3CqX_y8OMo4o1oePrpJYk/s1600/gimp.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Download GIMP&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSpmmRhS4hcdvJjsaGrFa0vA8yLFVQfIWDLmpcavHBIPDdcR4zIxt8Z6_dulXvka3hydj9Ad6B3ziHUdO8gexpHRsWibWqXrkql7zt98cHfoVfwa34qls4hh3CqX_y8OMo4o1oePrpJYk/s1600/gimp.png&quot; height=&quot;208&quot; title=&quot;GIMP&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style=&quot;color: #555555; font-family: Arial, Helvetica, sans-serif; font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;GNU Image Manipulation Program atau yang lebih dikenal dengan sebutan GIMP adalah perangkat lunak untuk manipulasigrafik berbasis raster. &amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #555555; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;Grafik yang dihasilkan oleh GIMP disimpan dengan format XCF dan bisa diekspor ke berbagai format gambar seperti bmp, jpg, gif, pdf, png, svg, tiff, dan masih banyak lagi yang lainnya.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #555555; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;color: #555555; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;color: #555555; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;color: #555555; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;3. Octave&lt;br /&gt;&amp;nbsp; &amp;nbsp; Download :[&lt;a href=&quot;http://www.gnu.org/software/octave/download.html&quot; target=&quot;_blank&quot;&gt;Disini&lt;/a&gt;]&lt;br /&gt;&amp;nbsp; &amp;nbsp; Website &amp;nbsp; &amp;nbsp;:[&lt;a href=&quot;http://www.gnu.org/software/octave/&quot; target=&quot;_blank&quot;&gt;Disini&lt;/a&gt;]&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #555555; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhPp2Xx2rOdLKGep7g6RvGeydzq_pOwGgQ3xomHZoVEi2Qj6cmcycmq1hHa5sSQRDjCqIn6pS1WORXPZMlAtuZHui3x0kuhTD2mzIs6WWUs-sy51FGDBH4o3L94hLt_HBKExF0yE4-G1g4/s1600/octave.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Download Octave &quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhPp2Xx2rOdLKGep7g6RvGeydzq_pOwGgQ3xomHZoVEi2Qj6cmcycmq1hHa5sSQRDjCqIn6pS1WORXPZMlAtuZHui3x0kuhTD2mzIs6WWUs-sy51FGDBH4o3L94hLt_HBKExF0yE4-G1g4/s1600/octave.png&quot; height=&quot;224&quot; title=&quot;Octave&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;span style=&quot;color: #555555; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;GNU Octave adalah bahasa tingkat tinggi yang digunakan untuk operasi Komputasi Numerik. GNU Octave menyediakan interface berbasis Command Line yang mudah digunakan untuk mengolah masalah Linier dan non Linier secara numerik serta untuk melakukan percobaan Linier lainnya yang menggunakan bahasa yang kompatibel dengan Matlab.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;-webkit-text-stroke-width: 0px; clear: both; color: black; font-family: &#39;Times New Roman&#39;; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; margin: 0px; orphans: auto; text-align: center; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;&quot; style=&quot;-webkit-text-stroke-width: 0px; clear: both; color: black; font-family: &#39;Times New Roman&#39;; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; margin: 0px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhPp2Xx2rOdLKGep7g6RvGeydzq_pOwGgQ3xomHZoVEi2Qj6cmcycmq1hHa5sSQRDjCqIn6pS1WORXPZMlAtuZHui3x0kuhTD2mzIs6WWUs-sy51FGDBH4o3L94hLt_HBKExF0yE4-G1g4/s1600/octave.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;&quot; style=&quot;-webkit-text-stroke-width: 0px; clear: both; color: black; font-family: &#39;Times New Roman&#39;; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; margin: 0px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;&quot; style=&quot;-webkit-text-stroke-width: 0px; clear: both; color: black; font-family: &#39;Times New Roman&#39;; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; margin: 0px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px;&quot;&gt;
4. R&lt;/div&gt;
&lt;div class=&quot;&quot; style=&quot;-webkit-text-stroke-width: 0px; clear: both; color: black; font-family: &#39;Times New Roman&#39;; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; margin: 0px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px;&quot;&gt;
&amp;nbsp; &amp;nbsp; Download : [&lt;a href=&quot;http://cran.r-project.org/bin/windows/base/&quot; target=&quot;_blank&quot;&gt;Disini&lt;/a&gt;]&lt;/div&gt;
&lt;div class=&quot;&quot; style=&quot;-webkit-text-stroke-width: 0px; clear: both; color: black; font-family: &#39;Times New Roman&#39;; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; margin: 0px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px;&quot;&gt;
&amp;nbsp; &amp;nbsp; Website &amp;nbsp; &amp;nbsp; : [&lt;a href=&quot;http://www.r-project.org/&quot; target=&quot;_blank&quot;&gt;Disini&lt;/a&gt;]&lt;/div&gt;
&lt;div class=&quot;&quot; style=&quot;-webkit-text-stroke-width: 0px; clear: both; color: black; font-family: &#39;Times New Roman&#39;; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; margin: 0px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;&quot; style=&quot;clear: both; margin: 0px; orphans: auto; text-align: left; text-indent: 0px; widows: auto;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;&quot; style=&quot;-webkit-text-stroke-width: 0px; clear: both; color: black; font-family: &#39;Times New Roman&#39;; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; margin: 0px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhfaddq6HMC7_r0pfHP4Rlk6p95OFtd3ndScxW0oIOjuYRjQTugy-mG2cbiYM005Ombm31pqEHmZvenvomhg08Rloc677Y5JQn90gi05wgXx1O4u2dqtDTPnNFJErTawQZ8UnEC0LeW8CQ/s1600/r-statistik.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Download R, statistik&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhfaddq6HMC7_r0pfHP4Rlk6p95OFtd3ndScxW0oIOjuYRjQTugy-mG2cbiYM005Ombm31pqEHmZvenvomhg08Rloc677Y5JQn90gi05wgXx1O4u2dqtDTPnNFJErTawQZ8UnEC0LeW8CQ/s1600/r-statistik.png&quot; height=&quot;213&quot; title=&quot;R&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style=&quot;font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;R adalah sebuah software open source untuk menganalisis data statistik, open source ini dapat dijalankan di Windows OS, Linux OS, maupun MacOS. kelebihan dari open source ini adalah gratis dan dapat dikembangkan secara bebas oleh penggunanya, namun, sebagai sebuah software open source, R software memiliki beberapa kekurangan, salah satunya adalah minim GUI (Graphical User Interface).&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;span style=&quot;background-color: #fdfdfd; font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: #fdfdfd; font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;&lt;span style=&quot;color: #555555; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: #fdfdfd; font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;&lt;span style=&quot;color: #555555; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: #fdfdfd; font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;&lt;span style=&quot;color: #555555; font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: #fdfdfd; color: #555555; font-family: Arial, Helvetica, sans-serif; font-size: 15px; line-height: 23.099998474121094px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;!-- Blogger automated replacement: &quot;https://images-blogger-opensocial.googleusercontent.com/gadgets/proxy?url=http%3A%2F%2F4.bp.blogspot.com%2F-53YzL0pwxYs%2FU4QPtGXYWXI%2FAAAAAAAAAxw%2FHHHazu4Jack%2Fs1600%2Foctave.png&amp;amp;container=blogger&amp;amp;gadget=a&amp;amp;rewriteMime=image%2F*&quot; with &quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhPp2Xx2rOdLKGep7g6RvGeydzq_pOwGgQ3xomHZoVEi2Qj6cmcycmq1hHa5sSQRDjCqIn6pS1WORXPZMlAtuZHui3x0kuhTD2mzIs6WWUs-sy51FGDBH4o3L94hLt_HBKExF0yE4-G1g4/s1600/octave.png&quot; --&gt;</description><link>http://rushfly.blogspot.com/2014/05/software-open-source-di-windows.html</link><author>noreply@blogger.com (Rza)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2HVf60MSZtAji4DYMrc-M5yzZ2RbxuNNAm_eywBWRMhMQel1Et-3eeWZcIPci8lLbj2cJmXs67RZ_NbXqroo-tGaZZ0k6kYeiLvUBdHGxii0ezX3gnWE3cFpJ_g0QLsuEifto2JBgSm8/s72-c/open-source-in-windows.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-906211861188803666</guid><pubDate>Mon, 26 May 2014 09:15:00 +0000</pubDate><atom:updated>2014-05-27T12:24:28.608+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">OS</category><category domain="http://www.blogger.com/atom/ns#">Tugas</category><title>Macam - Macam Sistem Operasi </title><description>&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-size: x-large;&quot;&gt;Apa itu Sistem Operasi ?&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgjEe_XU270Am5BK1vw7z-NQ1rS0eiVxnpnqpuWok1WhfSxn9Yp5rR_QPurn4wfKf8PuPim2f-oqquhxRbOiH5RPLU_vhjxkT8Y_CSi3BteJNywmP7m5IXxi5PDT-qLlAb9DOI40Tb0tZ0/s1600/sistem-operasi.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Macam-macam sistem operasi&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgjEe_XU270Am5BK1vw7z-NQ1rS0eiVxnpnqpuWok1WhfSxn9Yp5rR_QPurn4wfKf8PuPim2f-oqquhxRbOiH5RPLU_vhjxkT8Y_CSi3BteJNywmP7m5IXxi5PDT-qLlAb9DOI40Tb0tZ0/s1600/sistem-operasi.png&quot; title=&quot;Macam-macam sistem operasi&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Sistem operasi adalah seperangkat program yang mengelola sumber daya perangkat keras komputer atau hardware, dan menyediakan layanan umum untuk aplikasi perangkat lunak. Sistem operasi adalah jenis yang paling penting dari perangkat lunak sistem dalam sistem komputer. Tanpa sistem operasi, pengguna tidak dapat menjalankan program aplikasi pada komputer mereka, kecuali program aplikasi booting.Sistem operasi mempunyai penjadwalan yang sistematis mencakup perhitungan penggunaan memori, pemrosesan data, penyimpanan data, dan sumber daya lainnya.&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Untuk fungsi-fungsi perangkat keras seperti sebagai masukan dan keluaran dan alokasi memori, sistem operasi bertindak sebagai perantara antara program aplikasi dan perangkat keras komputer, meskipun kode aplikasi biasanya dieksekusi langsung oleh perangkat keras dan seringkali akan menghubungi OS atau terputus oleh itu. Sistem operasi yang ditemukan pada hampir semua perangkat yang berisi komputer-dari ponsel dan konsol permainan video untuk superkomputer dan server web.&lt;br /&gt;
&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-size: x-large;&quot;&gt;Macam-macam Sistem Operasi.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Sistem Operasi Windows adalah sebuah Sistem Operasi yang dikembangkan oleh Microsoft Corporation yang menggunakan antarmuka dengan berbasikan GUI (GraphicalUser Interface) atau tampilan antarmuka bergrafis. Os ini sudah banyak sekali digunakan oleh user sejak lama. Windows pertama kali masih dalam jenis Ms-Dos (Microsoft Disk OperatingSystem) yaitu sebuah Sistem Operasi yang berbasiskan teks dan Command-Line interpreter. Dan Windows berkembang hingga yang terbaru, yaitu windows 8.1 .&lt;/li&gt;
&lt;li&gt;Sistem Operasi Linux merupakan kloningan dari MINIX (Salah satu varian UNIX). Sistem operasi ini juga terkenal dan banyak orang yang menggunakannya. Linux disusun berdasarkan standard Sistem Operasi POSIX yangditurunkan dari UNIX itu sendiri. Ada beberapa macam Distro Linux, seperti : Debian, Lycoris, Xandros, Lindows, Linare, Linux-Mandrake, RedHat Linux, Slackware, Knoppix, Fedora, Suse, Ubuntu.&lt;/li&gt;
&lt;li&gt;Sistem Operasi MACINTOSH &amp;nbsp;adalah Sistem Operasi yang dibuat oleh Apple Computerkhusus untuk komputer Macintosh dan tidak kompatibel (tidak harmonis untuk digunakan) dengan komputer berbasis IBM. MAC OS merupakan Sistem Operasi pertama yang menggunakan antarmuka pengguna grafis (Graphical User Interface/GUI). Macintosh : cukup tinggi securitynya, cocok untuk user yang usagenya desain grafis atau user yang mementingkan eye-candy.&lt;/li&gt;
&lt;li&gt;&lt;div&gt;
Sistem Operasi Symbian &amp;nbsp;adalah sistem operasi tak bebas yang dikembangkan oleh Symbian Ltd. yang dirancang untuk digunakan pada peralatan bergerak atau ponsel. Jenis Os ini mudah kita temui di ponsel-ponsel produk nokia dan beberapa produk Sony. Akan tetapi sekarang Pamor dari OS ini sedikit bergeser karena kalah popular dengan beberapa os baru seperti android.&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div&gt;
Sistem Operasi Android &amp;nbsp;adalah Sistem operasi yang baru-baru ini muncul dan banyak dipakai oleh orang. Pada dasarnya, Android adalah Os linux yang dikembangkan dan di buat untuk aplikasi Mobile atau ponsel. Android menyediakan platform terbuka bagi para pengembang untuk menciptakan aplikasi mereka sendiri untuk digunakan oleh bermacam peranti bergerak. Android sendiri sudah mengalami banyak perubahan.&amp;nbsp;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div&gt;
System operasi Palm &amp;nbsp;adalah Os untuk mobile yang dikembangkan oleh Palm, Inc. Yaitu sebuah perusahaan multinasional yang bermarkas di Sunnyvale, California, Amerika Serikat. Contoh produk yang menanamkan sistem operasi Palm adalah Palm Treo 680 Smartphone ini menggunakan system operasi Palm, yaitu Palm OS 5.4.9 dengan prosesor Intel PXA270, 312MHz. Beberapa fitur yang ditawarkan adalah Pocket Express, Microsoft Media Player, Palm files, PDF viewer, Adobe Acrobat reader, eReader, Pocket Tunes, dan Document To Go.&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div&gt;
System Windows Mobile &amp;nbsp;adalah Sistem Operasi yang dibuat oleh Microsoft untuk peralatan bergerak (mobile). Pertama kali Windows Mobile muncul sebagai sistem operasi Pocket PC 2000, sebagian besar perangkat yang menggunakan Windows Mobile memiliki stylus pen yang digunakan sebagai alat untuk memberi perintah dengan menyentuhkannya pada layar&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div&gt;
Sistem Operasi BlackBerry adalah sebuah Sistem Operasi Mobile yang dikembangkan oleh Research In Motion untuk perusahaan BlackBerry garis smartphone untuk perangkat genggam. Sistem operasi ini menyediakan multitasking dan mendukung perangkat input khusus yang telah diadopsi oleh RIM untuk digunakan dalam handheld, khususnya trackwheel, trackball, dan yang paling baru, yang trackpad dan touchscreen.&lt;/div&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description><link>http://rushfly.blogspot.com/2014/05/macam-macam-sistem-operasi.html</link><author>noreply@blogger.com (Rza)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgjEe_XU270Am5BK1vw7z-NQ1rS0eiVxnpnqpuWok1WhfSxn9Yp5rR_QPurn4wfKf8PuPim2f-oqquhxRbOiH5RPLU_vhjxkT8Y_CSi3BteJNywmP7m5IXxi5PDT-qLlAb9DOI40Tb0tZ0/s72-c/sistem-operasi.png" height="72" width="72"/><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-4733760115820103312</guid><pubDate>Mon, 26 May 2014 04:19:00 +0000</pubDate><atom:updated>2014-05-27T12:24:58.262+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Freeware</category><category domain="http://www.blogger.com/atom/ns#">Tugas</category><title>Lebih Dekat Dengan Freeware</title><description>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgX0hRvqBsaHnayHVdeeaseyAfCeSXUvT2b9Etd5lR7cuCPU_zPoUyxItJ4j-T68n6qeirfi56_HoAy7tEKN1GQIhKHby7mhm4qyuSg4CJthwPlYdzCIPoQM63zXgw6UfC7bsYmgkeKoI0/s1600/freeware.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot; Lebih Dekat Dengan Freeware&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgX0hRvqBsaHnayHVdeeaseyAfCeSXUvT2b9Etd5lR7cuCPU_zPoUyxItJ4j-T68n6qeirfi56_HoAy7tEKN1GQIhKHby7mhm4qyuSg4CJthwPlYdzCIPoQM63zXgw6UfC7bsYmgkeKoI0/s1600/freeware.png&quot; title=&quot;Lebih Dekat Dengan Freeware&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;b&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;
&lt;b&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;
&lt;b&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;Apa Itu Freeware?.&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;b&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Freeware adalah perangkat lunak komputer yang berhak cipta &amp;nbsp;gratis digunakan tanpa batasan waktu, berbeda dari shareware yang mewajibkan penggunanya membayar (misalnya setelah jangka waktu percobaan tertentu atau untuk memperoleh fungsi tambahan). Para pengembang perangkat gratis seringkali membuat perangkat lunak gratis &quot;untuk disumbangkan kepada komunitas&quot;, namun juga tetap ingin mempertahankan hak mereka sebagai pengembang dan memiliki kontrol terhadap pengembangan selanjutnya. Kadang jika para pemrogram memutuskan untuk berhenti mengembangkan sebuah produk perangkat lunak gratis, mereka akan memberikan source code kepada pemrogram lain atau mengedarkan source code tersebut kepada umum sebagai perangkat lunak bebas.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: x-large;&quot;&gt;Contoh Free Software.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;MySql; relational database.&lt;/li&gt;
&lt;li&gt;Apache; web server.&lt;/li&gt;
&lt;li&gt;Sendmail; mail transport agent.&lt;/li&gt;
&lt;li&gt;Latex; typesetting systems.&lt;/li&gt;
&lt;li&gt;LibreOffice; office suite.&lt;/li&gt;
&lt;li&gt;Emacs; text editor.&lt;/li&gt;
&lt;li&gt;GIMP; raster drawing and image editor.&lt;/li&gt;
&lt;li&gt;etc.&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-size: x-large;&quot;&gt;Keuntungan Free Software.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Free to use.&lt;/li&gt;
&lt;li&gt;Free to access.&lt;/li&gt;
&lt;li&gt;Free to develop.&lt;/li&gt;
&lt;li&gt;Free to redistribute.&lt;/li&gt;
&lt;li&gt;Free from price.&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;br /&gt;</description><link>http://rushfly.blogspot.com/2014/05/lebih-dekat-dengan-freeware.html</link><author>noreply@blogger.com (Rza)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgX0hRvqBsaHnayHVdeeaseyAfCeSXUvT2b9Etd5lR7cuCPU_zPoUyxItJ4j-T68n6qeirfi56_HoAy7tEKN1GQIhKHby7mhm4qyuSg4CJthwPlYdzCIPoQM63zXgw6UfC7bsYmgkeKoI0/s72-c/freeware.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-3486901708046927623</guid><pubDate>Mon, 26 May 2014 03:31:00 +0000</pubDate><atom:updated>2014-05-27T12:26:42.145+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Closed Source</category><category domain="http://www.blogger.com/atom/ns#">Tugas</category><title>Memahami Closed Source </title><description>&lt;b&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;strong&gt;Memahami Closed Source.&lt;/strong&gt;&lt;/span&gt;&lt;/b&gt;&amp;nbsp;baca juga &lt;b&gt;&lt;a href=&quot;http://www.rushfly.net/2014/02/apa-itu-open-source.html&quot; target=&quot;_blank&quot;&gt;Apa itu Open Source&lt;/a&gt;.&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhlNqFLOpeiIrJXXyqxTwXVno431JvMXC77QchKfaPBV8fd7N4Oa4-QlYBQEBu3Fi77lYWRqocGUbFouAjTwqhMD29u4mRFfyMhsSNREfDbfSdyy_YhyphenhyphenKU6wGaS8lPvMXHxjkSC_cC60fw/s1600/Closed-source.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Memahami Closed Source&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhlNqFLOpeiIrJXXyqxTwXVno431JvMXC77QchKfaPBV8fd7N4Oa4-QlYBQEBu3Fi77lYWRqocGUbFouAjTwqhMD29u4mRFfyMhsSNREfDbfSdyy_YhyphenhyphenKU6wGaS8lPvMXHxjkSC_cC60fw/s1600/Closed-source.png&quot; height=&quot;200&quot; title=&quot;Memahami Closed Source &quot; width=&quot;186&quot; /&gt;&lt;/a&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Closed source adalah Suatu Source code berlisensi di bawah hak hukum khusus dari pemegang hak cipta dengan maksud bahwa lisensi diberikan hak untuk menggunakan perangkat lunak hanya dalam kondisi tertentu, dan dibatasi dari kegunaan lainnya, seperti modifikasi, berbagi, belajar, redistribusi, atau rekayasa ulang.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Kebanyakan perangkat lunak yang dilindungi oleh hak cipta yang, bersama dengan hukum kontrak , paten , dan rahasia dagang , memberikan dasar hukum bagi pemiliknya untuk menetapkan hak eksklusif .&lt;br /&gt;
&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-size: x-large;&quot;&gt;Contoh Software Close Source.&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;
1. Operating System (Sistem Operasi), contoh : Microsoft Windows&lt;br /&gt;
2. Languages (Bahasa Pemrograman), contoh : Visual Basic, ASP, Pascal&lt;br /&gt;
3. Web Browser, contoh : Internet Explorer&lt;br /&gt;
4. Aplication (Aplikasi), contoh : Adobe Photoshop, CorelDraw&lt;br /&gt;
5. Office Suites (Aplikasi perkantoran), contoh : Microsoft Office&lt;br /&gt;
6. Server Aplication (Server), contoh : ColdFusion, IIS&lt;br /&gt;
7. Antivirus, contoh : Norton Antivirus, McAfee, Smadav&lt;br /&gt;
8. Games, contoh : FIFA , Winning Eleven, Spiderman.&lt;br /&gt;
&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-size: x-large;&quot;&gt;Keuntungan closed source.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Kestabilan sistem terjamin karena ada penangung jawab resmi.&lt;/li&gt;
&lt;li&gt;Support langsung dari pemilik aplikasi /program.&lt;/li&gt;
&lt;li&gt;Mudah mendapatkan sertifikasi.&lt;/li&gt;
&lt;li&gt;Lebih mudah digunakan / dipelajari /dipahami karena mayoritas pengguna menggunakannya ( pada daerah tertentu ).&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;
&lt;span style=&quot;font-size: x-large;&quot;&gt;Kekurangan closed source.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;ul&gt;
&lt;li&gt;&lt;div style=&quot;font-size: medium;&quot;&gt;
Celah yang terbuka, bisa dimanfaatkan untuk pengambilan informasi.&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div style=&quot;font-size: medium;&quot;&gt;
Sosialisasi pemakaian, agak sulit, karena umumnya pengguna menggunakan closedsource ( e.g. Windows ), (hanya pada daerah tertentu).&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div style=&quot;font-size: medium;&quot;&gt;
Sulit untuk mendapatkan sertifikasi.&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div style=&quot;font-size: medium;&quot;&gt;
Adanya lisensi yang mengharuskan pengguna untuk menyediakan dana / financial.&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div style=&quot;font-size: medium;&quot;&gt;
Pengembangan terbatas&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div style=&quot;font-size: medium;&quot;&gt;
Diperlukan antivirus.&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div style=&quot;font-size: medium;&quot;&gt;
Aplikasi umumnya tersedia berbayar.&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div style=&quot;font-size: medium;&quot;&gt;
&lt;div&gt;
Deteksi kelemahan aplikasi menunggu feedback dari pengguna.&lt;/div&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div&gt;
Tidak ada support khusus / langsung dari pembuat (developer).&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description><link>http://rushfly.blogspot.com/2014/05/memahami-closed-source.html</link><author>noreply@blogger.com (Rza)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhlNqFLOpeiIrJXXyqxTwXVno431JvMXC77QchKfaPBV8fd7N4Oa4-QlYBQEBu3Fi77lYWRqocGUbFouAjTwqhMD29u4mRFfyMhsSNREfDbfSdyy_YhyphenhyphenKU6wGaS8lPvMXHxjkSC_cC60fw/s72-c/Closed-source.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-9052629945561488479</guid><pubDate>Fri, 23 May 2014 03:25:00 +0000</pubDate><atom:updated>2015-01-13T16:03:49.027+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Android</category><category domain="http://www.blogger.com/atom/ns#">Costum ROM</category><title>[ROM] PureKat 3.0 untuk Galaxy Y GT-S5360</title><description>&lt;h1&gt;
&lt;strong&gt; Android Kitkat di Galaxy Young.&lt;br /&gt; &lt;/strong&gt;&lt;/h1&gt;
&lt;br /&gt;
Kabar Baik untuk Galaxy Y Lovers! , Kini Android kitkat bisa dinikmati di Galaxy Young mu. PureKat ROM kini sudah tersedia versi 3.0 dengan banyak stabilitas, peningkatan performa dan banyak lagi.&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioHRoBX55sIPKz4p7aekNENBEWPgellhvuDa7zmZ9W1LIToQXVfBT59Epu-me6jGRY2pzyXUKLEVEaMf8-MkO4xhmw0vH5T3Pn7ARf-8QPqlmLEgMRnrz1smdVvxhdKC98VHlCIX8MUwc/s1600/purekat-v30.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Android Kitkat di Galaxy Young&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioHRoBX55sIPKz4p7aekNENBEWPgellhvuDa7zmZ9W1LIToQXVfBT59Epu-me6jGRY2pzyXUKLEVEaMf8-MkO4xhmw0vH5T3Pn7ARf-8QPqlmLEgMRnrz1smdVvxhdKC98VHlCIX8MUwc/s1600/purekat-v30.jpg&quot; height=&quot;360&quot; title=&quot;Android Kitkat di Galaxy Young&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Screenshot:&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEip2rckU0jP_kkzn-24D0P1uGUImyKm3QaZrUkehrrzc7Fgd_1cK6VpsZ6SxTfOh8PyKMqLorJ_V1_2qu_F0w0Tv8raDbq5dJ3OdW-krfO02_NkBNo_caedsF7mM6fmC0T1woBjPZKXpco/s1600/oKS1lHk.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Android Kitkat di Galaxy Young&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEip2rckU0jP_kkzn-24D0P1uGUImyKm3QaZrUkehrrzc7Fgd_1cK6VpsZ6SxTfOh8PyKMqLorJ_V1_2qu_F0w0Tv8raDbq5dJ3OdW-krfO02_NkBNo_caedsF7mM6fmC0T1woBjPZKXpco/s1600/oKS1lHk.png&quot; title=&quot;Android Kitkat di Galaxy Young&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgF-dDQMh1R6xprb7E_H6th7ZUgl2jHMouX4PTtzjIFyoBRgoiiyZN0NUSC2olyF9n3ofLxti2RB9YSONGRijXJteuM9D_IQWBUjybZQ2rmv5nwD-_J-rj5qS031FMmo6U7ZgJnJhRtqKE/s1600/O4e0wgN.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Android Kitkat di Galaxy Young&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgF-dDQMh1R6xprb7E_H6th7ZUgl2jHMouX4PTtzjIFyoBRgoiiyZN0NUSC2olyF9n3ofLxti2RB9YSONGRijXJteuM9D_IQWBUjybZQ2rmv5nwD-_J-rj5qS031FMmo6U7ZgJnJhRtqKE/s1600/O4e0wgN.png&quot; title=&quot;Android Kitkat di Galaxy Young&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiAQBq0GB4XyGjn-U6FJlv8BazVAU6vR-ah0IY_mL9t7rA6kMlPhghWSrYNaf94m5RbIFOCD_v-xAjZ-3H9ua_9nAF0yvvlc-Z37R16OJtRdeoNGOCv_E99kpsLDwM2l-TmPN9_bj0yscM/s1600/3h9wRhL.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Android Kitkat di Galaxy Young&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiAQBq0GB4XyGjn-U6FJlv8BazVAU6vR-ah0IY_mL9t7rA6kMlPhghWSrYNaf94m5RbIFOCD_v-xAjZ-3H9ua_9nAF0yvvlc-Z37R16OJtRdeoNGOCv_E99kpsLDwM2l-TmPN9_bj0yscM/s1600/3h9wRhL.png&quot; title=&quot;Android Kitkat di Galaxy Young&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgns7Hn7aPOQZjMbg8FKbQBsMo2RbyXifCCNEypckvJBHyy32MengXzfyuOZV2ONPLcfJFIMUEEbcnqpbIx2pA2BLCFrYRW6-4ownX4gGBJvUl8HNKtldAQMDzUVTgiJxgl8E7dM5hRhbo/s1600/B0zRCb1.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Android Kitkat di Galaxy Young&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgns7Hn7aPOQZjMbg8FKbQBsMo2RbyXifCCNEypckvJBHyy32MengXzfyuOZV2ONPLcfJFIMUEEbcnqpbIx2pA2BLCFrYRW6-4ownX4gGBJvUl8HNKtldAQMDzUVTgiJxgl8E7dM5hRhbo/s1600/B0zRCb1.png&quot; title=&quot;Android Kitkat di Galaxy Young&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiH5Mmop1Z5Z7uy1G-txUYuh_guUK14A1O3ccGkKgTda48D6KOsU4wY9znmBjN-JDAT3fksPUdJ1yR0pGqDuXdZmNiy8x6EZK-7CMoGDHkcumoY3yJHeUZglSzhvfDJIlmMPUV_tSaMd54/s1600/bqLh3Xr.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Android Kitkat di Galaxy Young&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiH5Mmop1Z5Z7uy1G-txUYuh_guUK14A1O3ccGkKgTda48D6KOsU4wY9znmBjN-JDAT3fksPUdJ1yR0pGqDuXdZmNiy8x6EZK-7CMoGDHkcumoY3yJHeUZglSzhvfDJIlmMPUV_tSaMd54/s1600/bqLh3Xr.png&quot; title=&quot;Android Kitkat di Galaxy Young&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg_bm3XmmY7KqWst8-uMdxJxRWD2OL6NuNHK97QAqk6ZbhjrBf22NwFOZJ2O3vB8Wb1C2vKkEgQIuyk4bSL5CyYSuniilOS75ZDB_MyDQx4OgXz5M7UYjsUgQqFsdm0z-aNbpok97ac3rk/s1600/C0axqew.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Android Kitkat di Galaxy Young&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg_bm3XmmY7KqWst8-uMdxJxRWD2OL6NuNHK97QAqk6ZbhjrBf22NwFOZJ2O3vB8Wb1C2vKkEgQIuyk4bSL5CyYSuniilOS75ZDB_MyDQx4OgXz5M7UYjsUgQqFsdm0z-aNbpok97ac3rk/s1600/C0axqew.png&quot; title=&quot;Android Kitkat di Galaxy Young&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiDWSaIogWxUcBuFz-X81yGH5512n_vxzqJVakBv9FGzK-uwhGK6wRo8TY3koUEFQ_fE1b6KW0QjFd0H9mO7AIJrKfGwogBolx23R4NhyphenhyphenSwwBR7vxJ2uXDhYWhynNnOa7grUq-s7dumXTw/s1600/QlIB8F9.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Android Kitkat di Galaxy Young&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiDWSaIogWxUcBuFz-X81yGH5512n_vxzqJVakBv9FGzK-uwhGK6wRo8TY3koUEFQ_fE1b6KW0QjFd0H9mO7AIJrKfGwogBolx23R4NhyphenhyphenSwwBR7vxJ2uXDhYWhynNnOa7grUq-s7dumXTw/s1600/QlIB8F9.png&quot; title=&quot;Android Kitkat di Galaxy Young&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiwz6zi5EGoqOaDTqtKSEbrHndNES07VPDmT6LKZdpXbHkZDDuk4Q2YinOcQg43lka_H6u1_j9uBysZQLRlzjYXER4Ayq_fP4xFTg3Q1sPw06hrgvHIXaYa5MenwG1FKCX68IKkFbThXmY/s1600/pIALPu2.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Android Kitkat di Galaxy Young&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiwz6zi5EGoqOaDTqtKSEbrHndNES07VPDmT6LKZdpXbHkZDDuk4Q2YinOcQg43lka_H6u1_j9uBysZQLRlzjYXER4Ayq_fP4xFTg3Q1sPw06hrgvHIXaYa5MenwG1FKCX68IKkFbThXmY/s1600/pIALPu2.png&quot; title=&quot;Android Kitkat di Galaxy Young&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhL5ZqgJ8ATT8kwzv8TtU-2tBmz8aaTBXLn-0uqpuWos_T3tjZP_QroJ1BdsSL8t0MO0rK7QzaB_41T5oQB8rRGq01qNimzDs7M3775-Ztae6oDPSaCiejNidSFErWA-tZ7aKRcH64lDvA/s1600/mcKFTnu.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Android Kitkat di Galaxy Young&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhL5ZqgJ8ATT8kwzv8TtU-2tBmz8aaTBXLn-0uqpuWos_T3tjZP_QroJ1BdsSL8t0MO0rK7QzaB_41T5oQB8rRGq01qNimzDs7M3775-Ztae6oDPSaCiejNidSFErWA-tZ7aKRcH64lDvA/s1600/mcKFTnu.png&quot; title=&quot;Android Kitkat di Galaxy Young&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjeLSahVEzG-FsrF2JPBBd21u-u3SqT46lu5au8etVCmxHDwncrXkpUM-ywBxUq3ESQYHviYJ22blfjmbLXFtYRkoF8tXJbtfG3-pjmyRcpxbgZRSUXxsQnoQQYRf2i5jcnSqGkn4qcIPc/s1600/cQtLmzJ.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Android Kitkat di Galaxy Young&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjeLSahVEzG-FsrF2JPBBd21u-u3SqT46lu5au8etVCmxHDwncrXkpUM-ywBxUq3ESQYHviYJ22blfjmbLXFtYRkoF8tXJbtfG3-pjmyRcpxbgZRSUXxsQnoQQYRf2i5jcnSqGkn4qcIPc/s1600/cQtLmzJ.png&quot; title=&quot;Android Kitkat di Galaxy Young&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhDBkbtfL16lA0x19EO2gLnk5g9MIGj0CJLDFffHy7DdEgFxxdRnQ8ueQ8Puw8VeEaypX9mqNZLT1ho33QSyHIHrRXDQ29tzFJeghEHt1NhU94Yai5WISD_-LWZQOB7sRc6ypXotUANIjk/s1600/rV4fu2p.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Android Kitkat di Galaxy Young&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhDBkbtfL16lA0x19EO2gLnk5g9MIGj0CJLDFffHy7DdEgFxxdRnQ8ueQ8Puw8VeEaypX9mqNZLT1ho33QSyHIHrRXDQ29tzFJeghEHt1NhU94Yai5WISD_-LWZQOB7sRc6ypXotUANIjk/s1600/rV4fu2p.png&quot; title=&quot;Android Kitkat di Galaxy Young&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjMUkgC9ujOWzGGxyCIlXbg0n_Ux0IGeBpehMu-Ycm36iEhtkC6CZbjt6z7EEgLqadPg-cjC6Ya68Aksi5wyB13kJ1qbQ1RRa3WlnznrKkVeVgtPNJxAsea0s7DVzsBVrr-OV8y8UrzUVQ/s1600/tGSUKLH.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Android Kitkat di Galaxy Young&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjMUkgC9ujOWzGGxyCIlXbg0n_Ux0IGeBpehMu-Ycm36iEhtkC6CZbjt6z7EEgLqadPg-cjC6Ya68Aksi5wyB13kJ1qbQ1RRa3WlnznrKkVeVgtPNJxAsea0s7DVzsBVrr-OV8y8UrzUVQ/s1600/tGSUKLH.png&quot; title=&quot;Android Kitkat di Galaxy Young&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhtHAVagh5uxJoYiFqKyYzZU2CURTxlVI9t2F0EMwLxf0GhbzkbLLw7JOfEzVmrp7Um6BAdcitXQkuWeDDbZzfoZDkcAMYOU0bZGGXx2bw7BaIpne-v3kFOMrgOHBE1IjbMS8k5okgHFZ8/s1600/umMAKVs.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Android Kitkat di Galaxy Young&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhtHAVagh5uxJoYiFqKyYzZU2CURTxlVI9t2F0EMwLxf0GhbzkbLLw7JOfEzVmrp7Um6BAdcitXQkuWeDDbZzfoZDkcAMYOU0bZGGXx2bw7BaIpne-v3kFOMrgOHBE1IjbMS8k5okgHFZ8/s1600/umMAKVs.png&quot; title=&quot;Android Kitkat di Galaxy Young&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjZGME-LoCE5pxZ_pCMQ_NoGTBhvlna50FwMy7FPY8X6To5uvtbrIjhf5rQeI6nnnkPS8aOuFDuYVU3RcCz7kA1qQilSwPfTIlrzeHC-BcyTvsFGlAdrtwqqjq22wgHG3hSZw67LqFiZiM/s1600/WFp799R.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Android Kitkat di Galaxy Young&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjZGME-LoCE5pxZ_pCMQ_NoGTBhvlna50FwMy7FPY8X6To5uvtbrIjhf5rQeI6nnnkPS8aOuFDuYVU3RcCz7kA1qQilSwPfTIlrzeHC-BcyTvsFGlAdrtwqqjq22wgHG3hSZw67LqFiZiM/s1600/WFp799R.png&quot; title=&quot;Android Kitkat di Galaxy Young&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi-YR0kBz51xXojeMT4JMOLicrQ63WLAmoiUc-inzGJh0uYfJHlKpsqNEU2YhYw6XVWI6Y6zEt3iXWS5JduG2_CfgCxjXmMu4948BC9YFPYJhamHbO7OtFtB5AsTY8zC6oIRzdeHG6MtGE/s1600/wOvTEhf.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Android Kitkat di Galaxy Young&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi-YR0kBz51xXojeMT4JMOLicrQ63WLAmoiUc-inzGJh0uYfJHlKpsqNEU2YhYw6XVWI6Y6zEt3iXWS5JduG2_CfgCxjXmMu4948BC9YFPYJhamHbO7OtFtB5AsTY8zC6oIRzdeHG6MtGE/s1600/wOvTEhf.png&quot; title=&quot;Android Kitkat di Galaxy Young&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgDULZgzerD-3VtP2YDYSZM4cTY9EpmpeXFC9SEjv65WTRlYfXtDhY8uucCu3b7Qv_V9ynCXcyva-6JlNdJY2ms1vQeBZA-SxKrlh_GLuo7EAHjBT5mlMrYjzdngcWOsLvXkGs4UUT4uZQ/s1600/ZKFVav0.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Android Kitkat di Galaxy Young&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgDULZgzerD-3VtP2YDYSZM4cTY9EpmpeXFC9SEjv65WTRlYfXtDhY8uucCu3b7Qv_V9ynCXcyva-6JlNdJY2ms1vQeBZA-SxKrlh_GLuo7EAHjBT5mlMrYjzdngcWOsLvXkGs4UUT4uZQ/s1600/ZKFVav0.png&quot; title=&quot;Android Kitkat di Galaxy Young&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Download PureKat [&lt;a href=&quot;http://www.mediafire.com/download/bvm2rmlq6qa82mr/PureKAT3.0.zip&quot; target=&quot;_blank&quot;&gt;Disini]&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;b&gt;CWM &lt;a href=&quot;http://www.mediafire.com/download/aq1k7zhhb5hhm1f/CWM_bla_bla.zip&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;[Disini]&lt;/a&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;How to install:&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
1.Boot into cwm.&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
2.Format data,system,and cache.&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
3.Mount everything.&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
4.Wipe Data and Cache.&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
5.Choose install zip from sdcard.&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
6.Select the rom.&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
7.Enjoy!! :D&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
------------------------------------------------------------------------&lt;/div&gt;
Cara Install&lt;br /&gt;
1. Boot ke dalam CWM.&lt;br /&gt;
2. Pilih Mount and storage &amp;gt;&amp;nbsp;Format data,system,dan cache &amp;gt; Mount&amp;nbsp;data,system,dan cache.&lt;br /&gt;
3. Pilih go back &amp;gt; Wipe Data dan Cache.&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
4. Pilih install zip from sdcard &amp;gt; Choose&amp;nbsp;&amp;nbsp;zip from sdcard &amp;gt; Pilih File PureKAT3.0.zip.&lt;/div&gt;
5. Reboot.&lt;br /&gt;
6. Enjoy ! :D&lt;br /&gt;
&lt;br /&gt;
Jika Mengalami kesulitan , tanyakan saja di kotak komentar.&lt;br /&gt;
&lt;br /&gt;
Jika mengalami BootLoop di logo samsung galaxy young , ikuti tutorial ini, Klik [&lt;a href=&quot;http://rushfly.net/2014/07/cara-flashing-galaxy-young.html&quot; target=&quot;_blank&quot;&gt;Disini&lt;/a&gt;]&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;b style=&quot;background-color: white; color: #333333; font-family: &#39;Open Sans&#39;, &#39;Trebuchet MS&#39;, Helvetica, sans-serif; font-size: 14px; line-height: 22.399999618530273px;&quot;&gt;Source:&lt;/b&gt;&lt;span style=&quot;background-color: white; color: #333333; font-family: &#39;Open Sans&#39;, &#39;Trebuchet MS&#39;, Helvetica, sans-serif; font-size: 14px; line-height: 22.399999618530273px;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://forum.xda-developers.com/showthread.php?t=2623696&quot; rel=&quot;nofollow&quot; style=&quot;background-color: white; color: #999999; font-family: &#39;Open Sans&#39;, &#39;Trebuchet MS&#39;, Helvetica, sans-serif; font-size: 14px; line-height: 22.399999618530273px; text-decoration: none;&quot; target=&quot;_blank&quot;&gt;official thread&lt;/a&gt;&lt;/div&gt;
</description><link>http://rushfly.blogspot.com/2014/05/rom-purekat-30-untuk-galaxy-y-gt-s5360.html</link><author>noreply@blogger.com (Rza)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioHRoBX55sIPKz4p7aekNENBEWPgellhvuDa7zmZ9W1LIToQXVfBT59Epu-me6jGRY2pzyXUKLEVEaMf8-MkO4xhmw0vH5T3Pn7ARf-8QPqlmLEgMRnrz1smdVvxhdKC98VHlCIX8MUwc/s72-c/purekat-v30.jpg" height="72" width="72"/><thr:total>11</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-7363660265137339806</guid><pubDate>Thu, 15 May 2014 08:37:00 +0000</pubDate><atom:updated>2014-05-27T12:27:23.287+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Digital Cameras</category><category domain="http://www.blogger.com/atom/ns#">Hardware Reviews</category><title>Review Harga dan Spesifikasi Sony DSC-QX10 &amp; Sony DSC-QX100</title><description>&lt;h1&gt;
&lt;strong&gt;Lensa Tambahan Untuk Smartphone.&lt;/strong&gt;&lt;/h1&gt;
&lt;div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj4nTRzeJxQO43b6dG1aAM2-BidJXsOpvUvJzlt34VGA5VBthv5ZPvovfwtu-UEjnuqmzqNVvwQCBRmp4_NXEMd5poN7sYZCB8qkgKLKSPF-XQAHiMz0GFu7Es36KNgSiOJ-qbKejhsaBo/s1600/review-Sony-DSC-QX10-&amp;amp;-Sony-DSC-QX100.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Review Harga dan Spesifikasi Sony DSC-QX10 &amp;amp; Sony DSC-QX100, 2014&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj4nTRzeJxQO43b6dG1aAM2-BidJXsOpvUvJzlt34VGA5VBthv5ZPvovfwtu-UEjnuqmzqNVvwQCBRmp4_NXEMd5poN7sYZCB8qkgKLKSPF-XQAHiMz0GFu7Es36KNgSiOJ-qbKejhsaBo/s1600/review-Sony-DSC-QX10-&amp;amp;-Sony-DSC-QX100.png&quot; height=&quot;230&quot; title=&quot;Review Harga dan Spesifikasi Sony DSC-QX10 &amp;amp; Sony DSC-QX100&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Perangkat ini memiliki komponen sebuah kamera, seperti lensa, sensor gambar, baterai, microphone stereo, hingga slot kartu memori. Hanya saja, tanpa display. Bagaimana &amp;nbsp;jika harus membidik objek? Peran layar digantikan oleh Smartphone, yang dihubungkan dengan koneksi Wi-Fi dan NFC.&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Sony menyebutkan &quot;smart lens&quot;. Tidak hanya khusus untuk smartphone keluaran Sony saja, namun juga &amp;nbsp;dapat digunakan dengan smartphone lain. Pengaturan foto seperti zoom, eksposur, white balance, dan fokus dapat dilakukan via smartphone. Jepretan &amp;nbsp;foto disimpan di ponsel dan lensa &amp;nbsp;ini secara bersamaan.&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DSC-QX100 memiliki sensor 20.2 megapixel dengan dukungan ISO atau sensitivitas cahaya hingga 6400. Sama &amp;nbsp;dengan yang tertanam pada kamera digital &amp;nbsp;premium Sony RX100 Mark II. DSC-QX10 memiliki sensor 18 megapixel yang &amp;nbsp;sama persis dengan yang digunakan pada kamera kompak Sony WX150. Kamu bisa memperpanjang focus length dengan zoom optikal hingga 10x.&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Perangkat ini juga dilengkapi dengan fitur SteadyShot membantu pemotretan handheld tanpa hasil buram. Perangkat ini terhubung dengan smartphone atau tablet menggunakan koneksi nirkabel Wi-Fi. Jika Anda juga menggunakan smartphone Sony, proses koneksi menjadi lebih mudah lagi lewat NFC. Kamu cukup mengaktifkan NFC di keduanya, mendekatkan kedua piranti dan aplikasi PlayMemories Mobile akan langsung aktif. Kamu bisa menggunakan aplikasi ini untuk mengelola &#39;lensa&#39;. Modus pemotretan yang tersedia berubah ketika lensa ini, menjadi intelligent Auto, Superior Auto, Program Auto, dan juga Aperture Priority.&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; Secara kepraktisan, lensa ini memang membuat kamu nyaman tanpa perlu bawa kamera besar. Namun, yang harus dicermati adalah daya tahan baterainya. Koneksi NFC dari &#39;lensa&#39; ke smartphone setiap digunakan tentu akan membuat daya baterai cepat terkuras.&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgfBwtQi5sZEvqolsFHJzIUAdVFjSGvs_rlh-SuzDbDChyphenhyphendwu71gZGz_TiiqN07GtCFVCIj9AJ6OtPEgl7lvM0LHgY3sXdi4pyOpGeQcBOI6D1QDngqqXrAYZNrIod_3V7sWzFhNBPBikE/s1600/Sony-DSC-QX10-&amp;amp;-Sony-DSC-QX100.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Review Harga dan Spesifikasi Sony DSC-QX10 &amp;amp; Sony DSC-QX100, 2014&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgfBwtQi5sZEvqolsFHJzIUAdVFjSGvs_rlh-SuzDbDChyphenhyphendwu71gZGz_TiiqN07GtCFVCIj9AJ6OtPEgl7lvM0LHgY3sXdi4pyOpGeQcBOI6D1QDngqqXrAYZNrIod_3V7sWzFhNBPBikE/s1600/Sony-DSC-QX10-&amp;amp;-Sony-DSC-QX100.png&quot; height=&quot;245&quot; title=&quot;Review Harga dan Spesifikasi Sony DSC-QX10 &amp;amp; Sony DSC-QX100&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: x-large;&quot;&gt;Spesifikasi&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;b&gt;Sony DSC-QX10&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;Resolusi&lt;/b&gt;&lt;br /&gt;
18 Megapixels&lt;br /&gt;
&lt;b&gt;Sensor&lt;/b&gt;&lt;br /&gt;
Exmor™ R CMOS Sensor&lt;br /&gt;
&lt;b&gt;Koneksi&lt;/b&gt;&lt;br /&gt;
USB 2.0. NFC &amp;amp; Wi-Fi&lt;br /&gt;
&lt;b&gt;Zoom Optical&lt;/b&gt;&lt;br /&gt;
10x Zoom&lt;br /&gt;
&lt;b&gt;Dimensi&lt;/b&gt;&lt;br /&gt;
62.5 x 62.5 x 52.2 mm&lt;br /&gt;
&lt;b&gt;Berat&lt;/b&gt;&lt;br /&gt;
105 gram&lt;br /&gt;
&lt;b&gt;Format Rekam&lt;/b&gt;&lt;br /&gt;
JPEG, MP4&lt;br /&gt;
&lt;b&gt;Baterai&lt;/b&gt;&lt;br /&gt;
Lithium-Ion&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Harga&lt;/b&gt;(kisaran) QX10 : Rp. 2.700.000&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;
----------------------------------------------------------&lt;br /&gt;
&lt;b&gt;Sony DSC-QX100&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;Resolusi&lt;/b&gt;&lt;br /&gt;
20,9 Megapixels&lt;br /&gt;
&lt;b&gt;Sensor&lt;/b&gt;&lt;br /&gt;
Exmor™ R CMOS Sensor&lt;br /&gt;
&lt;b&gt;Koneksi&lt;/b&gt;&lt;br /&gt;
USB 2.0. NFC &amp;amp; Wi-Fi&lt;br /&gt;
&lt;b&gt;Zoom Optical&lt;/b&gt;&lt;br /&gt;
3,6x (28 – 100 mm)&lt;br /&gt;
&lt;b&gt;Dimensi&lt;/b&gt;&lt;br /&gt;
62.4 x 61.8 x 33.3 mm&lt;br /&gt;
&lt;b&gt;Berat&lt;/b&gt;&lt;br /&gt;
90 gram&lt;br /&gt;
&lt;b&gt;Format Rekam&lt;/b&gt;&lt;br /&gt;
JPEG, MP4&lt;br /&gt;
&lt;b&gt;Baterai&lt;/b&gt;&lt;br /&gt;
Lithium-Ion&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Harga&lt;/b&gt;(kisaran) QX100 : Rp. 5.500.000&lt;br /&gt;
---------------------------------------------------------&lt;br /&gt;
&lt;span style=&quot;background-color: #f6f7f8; color: #141823; font-family: Helvetica, Arial, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 12px; line-height: 15.359999656677246px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
</description><link>http://rushfly.blogspot.com/2014/05/review-harga-dan-spesifikasi-sony-dsc.html</link><author>noreply@blogger.com (Rza)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj4nTRzeJxQO43b6dG1aAM2-BidJXsOpvUvJzlt34VGA5VBthv5ZPvovfwtu-UEjnuqmzqNVvwQCBRmp4_NXEMd5poN7sYZCB8qkgKLKSPF-XQAHiMz0GFu7Es36KNgSiOJ-qbKejhsaBo/s72-c/review-Sony-DSC-QX10-&amp;-Sony-DSC-QX100.png" height="72" width="72"/><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-922891875571964072</guid><pubDate>Sun, 11 May 2014 11:41:00 +0000</pubDate><atom:updated>2014-05-27T12:27:32.881+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Hardware Reviews</category><category domain="http://www.blogger.com/atom/ns#">Speaker</category><title>Review Harga dan Spesifikasi ClearView Clio</title><description>&lt;h1&gt;
&lt;span b=&quot;&quot;&gt;Speaker Nirkabel Semi-Transparan&lt;/span&gt;&lt;/h1&gt;
&lt;div&gt;
&lt;span b=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjJ4RLDa7Bzfusg5Wq4xxM7XnpUlnX9k40wVEuwvWDCZEVzCCgq07_FBm_EuCcpzFzHJDNP17AbUgIeDXKwNUtwQSeuKVJ6NgnzO7SxUtkG1gOG5E2S3U0ezPhEN6z3OZkv7m33W1hGTtw/s1600/Review-Harga-dan-Spesifikasi-ClearView-Clio.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Review Harga dan Spesifikasi ClearView Clio, simple review&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjJ4RLDa7Bzfusg5Wq4xxM7XnpUlnX9k40wVEuwvWDCZEVzCCgq07_FBm_EuCcpzFzHJDNP17AbUgIeDXKwNUtwQSeuKVJ6NgnzO7SxUtkG1gOG5E2S3U0ezPhEN6z3OZkv7m33W1hGTtw/s1600/Review-Harga-dan-Spesifikasi-ClearView-Clio.png&quot; height=&quot;306&quot; title=&quot;Review Harga dan Spesifikasi ClearView Clio&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
&lt;div&gt;
&lt;span b=&quot;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Speaker stereo nirkabel ini unik. Badannya nyaris transparan karena terbuat dari kaca akrilik. Berbeda dengan tabung normal, di sini suara akan dikeluarkan &amp;nbsp;melalui ujung-ujung badannya, bukan bagian belakang, ke berbagai arah. Speaker ClearView Clio menggunakan koneksi Bluetooth untuk terhubung ke beragam perangkat, termasuk ponsel, sehingga Anda bisa memutar musik dari sembarang sumber &amp;nbsp;yang ada. Tersedia dalam warna silver, perunggu gelap, dan warna hitam arang, speaker ini akan tampil bagus di ruangan mana pun.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span b=&quot;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span b=&quot;&quot;&gt;&lt;b&gt;Harga&lt;/b&gt; $350&lt;br /&gt;Situs : &lt;a href=&quot;http://www.clearviewaudio.com/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;www.clearviewaudio.com&amp;nbsp;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
</description><link>http://rushfly.blogspot.com/2014/05/review-harga-dan-spesifikasi-clearview.html</link><author>noreply@blogger.com (Rza)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjJ4RLDa7Bzfusg5Wq4xxM7XnpUlnX9k40wVEuwvWDCZEVzCCgq07_FBm_EuCcpzFzHJDNP17AbUgIeDXKwNUtwQSeuKVJ6NgnzO7SxUtkG1gOG5E2S3U0ezPhEN6z3OZkv7m33W1hGTtw/s72-c/Review-Harga-dan-Spesifikasi-ClearView-Clio.png" height="72" width="72"/><thr:total>3</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-6123029047920091141</guid><pubDate>Sun, 04 May 2014 14:10:00 +0000</pubDate><atom:updated>2014-05-27T12:27:48.737+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Gadget</category><category domain="http://www.blogger.com/atom/ns#">Hardware Reviews</category><title>Review Harga dan Spesifikasi Polaroid Socialmatic</title><description>&lt;h1&gt;
Review Harga dan Spesifikasi Polaroid Socialmatic.&lt;/h1&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0ocBO1LcnTeirR0ahQPeKQEcTj_RxFEcXmKrZLRlDO0t7VVa5wFzWn_NffOYVcu9XFTnI0wFMjygsFxOKgIvnNauL-obyE6oCx3KdziMySohXqxxVSMcv3n_ZmD0BHUz5s00YJ-p2CSk/s1600/camera-polaroid-socialmatic.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Review Harga dan Spesifikasi Polaroid Socialmatic, 2014&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0ocBO1LcnTeirR0ahQPeKQEcTj_RxFEcXmKrZLRlDO0t7VVa5wFzWn_NffOYVcu9XFTnI0wFMjygsFxOKgIvnNauL-obyE6oCx3KdziMySohXqxxVSMcv3n_ZmD0BHUz5s00YJ-p2CSk/s1600/camera-polaroid-socialmatic.png&quot; title=&quot;Review Harga dan Spesifikasi Polaroid Socialmatic&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Beberapa dari kita suka sekali memamerkan foto melalui Instagram, Facebook, Twitter, Printerest atau lainnya. Polaroid Socialmatic dengan resolusi empat belas MP didesain khusus untuk kebutuhan tersebut. Ia memiliki &amp;nbsp;layar sentuh 4,5&quot; dengan sistem operasi Android, storage internal 4 GB, slot microSD, dan konektivitas Wi-Fi dan Bluetooth. Maka semua foto yang dibidik bisa langsung diunggah ke web. Jika lebih suka berbagi foto via lembaran &amp;nbsp;foto, tersedia printer Zero Ink Built-in untuk mencetak &amp;nbsp;foto ukuran 2 x 3 inci, Di sudut &amp;nbsp;hasil cetak foto akan terdapat QR code agar pengguna Socialmatic lainnya bisa men-scan &amp;nbsp;dan mendapatkan versi digitalnya dari server Polaroid untuk mencetaknya lagi.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Harga&lt;/b&gt; $299&lt;br /&gt;
Situs &lt;a href=&quot;http://www.polaroid.com/&quot;&gt;www.polaroid.com&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;</description><link>http://rushfly.blogspot.com/2014/05/review-harga-dan-spesifikasi-polaroid.html</link><author>noreply@blogger.com (Rza)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0ocBO1LcnTeirR0ahQPeKQEcTj_RxFEcXmKrZLRlDO0t7VVa5wFzWn_NffOYVcu9XFTnI0wFMjygsFxOKgIvnNauL-obyE6oCx3KdziMySohXqxxVSMcv3n_ZmD0BHUz5s00YJ-p2CSk/s72-c/camera-polaroid-socialmatic.png" height="72" width="72"/><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-4047884502467029467.post-7718441428616763144</guid><pubDate>Fri, 02 May 2014 17:01:00 +0000</pubDate><atom:updated>2014-05-27T12:28:08.396+07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Linux</category><category domain="http://www.blogger.com/atom/ns#">Slackware</category><category domain="http://www.blogger.com/atom/ns#">VirtualBox</category><title>Cara Install Slackware 14.1 di VirtualBox</title><description>&lt;strong&gt;Cara Install Slackware 14.1 di VirtualBox&lt;/strong&gt;. Baca juga &lt;a href=&quot;http://www.rushfly.net/2014/04/cara-install-android-44-kitkat-di-pc.html&quot; rel=&quot;dofollow&quot; target=&quot;_blank&quot;&gt;Cara Install Android 4.4 Kitkat di PC&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Download Tools nya di Bawah ini&lt;br /&gt;
- Slackware 14.1 ISO&amp;nbsp;&lt;a href=&quot;http://mirrors.slackware.com/slackware/slackware-iso/slackware64-14.1-iso/slackware64-14.1-install-dvd.iso&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;[Link]&lt;/a&gt;&amp;nbsp;| &amp;nbsp;Download Other Versions [&lt;a href=&quot;http://mirrors.slackware.com/slackware/slackware-iso/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Link&lt;/a&gt;]&lt;br /&gt;
-&amp;nbsp;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: #444444; font-family: Dosis, Verdana, Arial, Trebuchet MS, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 24px;&quot;&gt;VirtualBox 4.3.10 for Windows&amp;nbsp;&amp;nbsp;[&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;a href=&quot;http://download.virtualbox.org/virtualbox/4.3.10/VirtualBox-4.3.10-93012-Win.exe&quot; rel=&quot;nofollow&quot; style=&quot;background-color: white; color: #5c90cd; font-family: Dosis, Verdana, Arial, &#39;Trebuchet MS&#39;, sans-serif; font-size: 15px; line-height: 24px; margin: 0px; outline: 0px; padding: 0px;&quot; target=&quot;_blank&quot;&gt;Link&lt;/a&gt;&lt;span style=&quot;background-color: white; color: #444444; font-family: Dosis, Verdana, Arial, &#39;Trebuchet MS&#39;, sans-serif; font-size: 15px; line-height: 24px;&quot;&gt;]&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: #444444; font-family: Dosis, Verdana, Arial, &#39;Trebuchet MS&#39;, sans-serif; font-size: 15px; line-height: 24px;&quot;&gt;-&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #444444; font-family: Dosis, Verdana, Arial, Trebuchet MS, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 24px;&quot;&gt;VirtualBox 4.3.10 for OS X [&lt;/span&gt;&lt;/span&gt;&lt;a href=&quot;http://download.virtualbox.org/virtualbox/4.3.10/VirtualBox-4.3.10-93012-OSX.dmg&quot; rel=&quot;nofollow&quot; style=&quot;background-color: white; color: #5c90cd; font-family: Dosis, Verdana, Arial, &#39;Trebuchet MS&#39;, sans-serif; font-size: 15px; line-height: 24px; margin: 0px; outline: 0px; padding: 0px;&quot; target=&quot;_blank&quot;&gt;Link&lt;/a&gt;&lt;span style=&quot;background-color: white; color: #444444; font-family: Dosis, Verdana, Arial, &#39;Trebuchet MS&#39;, sans-serif; font-size: 15px; line-height: 24px;&quot;&gt;]&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: #444444; font-family: Dosis, Verdana, Arial, &#39;Trebuchet MS&#39;, sans-serif; font-size: 15px; line-height: 24px;&quot;&gt;- VirtualBox 4.3.10 for Linux [&lt;/span&gt;&lt;a href=&quot;https://www.virtualbox.org/wiki/Linux_Downloads&quot; rel=&quot;nofollow&quot; style=&quot;background-color: white; color: #5c90cd; font-family: Dosis, Verdana, Arial, &#39;Trebuchet MS&#39;, sans-serif; font-size: 15px; line-height: 24px; margin: 0px; outline: 0px; padding: 0px;&quot; target=&quot;_blank&quot;&gt;Link&lt;/a&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&lt;span style=&quot;color: #444444; font-family: Dosis, Verdana, Arial, Trebuchet MS, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 24px;&quot;&gt;]&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: #444444; font-family: Dosis, Verdana, Arial, &#39;Trebuchet MS&#39;, sans-serif; font-size: 15px; line-height: 24px;&quot;&gt;Jika Sudah Mendownload Tools nya, mari kita mulai tutorial Install Slackware 14.1&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Dosis, Verdana, Arial, &#39;Trebuchet MS&#39;, sans-serif; font-size: 15px; line-height: 24px;&quot;&gt;1. Buka virtualbox&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Dosis, Verdana, Arial, &#39;Trebuchet MS&#39;, sans-serif; font-size: 15px; line-height: 24px;&quot;&gt;2. Select &quot;New&quot; dan ikuti settingan di screenshot di bawah.&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgJxIDeSEQGE7x6JdBcYPE08weuBWvXCU6oqHcwQwzbwnk-QQa1LPTNj5hlmaLMQmTWFSAJeXhBHHHwW34kGcbm_LYc-Q9KkSZfVSGBIZc3gLb0cfmYVBH3D0mFlWeaW8lqn0IFfDv-38o/s1600/Tutorial-Install-slackware-1.png&quot; imageanchor=&quot;0&quot; style=&quot;font-family: Dosis, Verdana, Arial, &#39;Trebuchet MS&#39;, sans-serif; font-size: 15px; line-height: 24px; margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img alt=&quot;Cara Install Slackware 14.1 di VirtualBox, Download&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgJxIDeSEQGE7x6JdBcYPE08weuBWvXCU6oqHcwQwzbwnk-QQa1LPTNj5hlmaLMQmTWFSAJeXhBHHHwW34kGcbm_LYc-Q9KkSZfVSGBIZc3gLb0cfmYVBH3D0mFlWeaW8lqn0IFfDv-38o/s1600/Tutorial-Install-slackware-1.png&quot; height=&quot;297&quot; title=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Dosis, Verdana, Arial, &#39;Trebuchet MS&#39;, sans-serif; font-size: 15px; line-height: 24px; text-align: center;&quot;&gt;3. Mengatur memory RAM Minimal 256Mb atau lebih.&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgz9QwQvb7NONNKGFZ7UVIgREuGYNpm2YDk5tR5Ty0JtLbMgHy8ZhgLBhAf-j_RNNvmX6ZfZ3U76eq6ZR8KkgI-vCm1lvEVIPr_JRrymEOBzs59Z7y8jSsTLC-iixWz8VgMW7QfKXD47Zk/s1600/Tutorial-Install-slackware-2.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgz9QwQvb7NONNKGFZ7UVIgREuGYNpm2YDk5tR5Ty0JtLbMgHy8ZhgLBhAf-j_RNNvmX6ZfZ3U76eq6ZR8KkgI-vCm1lvEVIPr_JRrymEOBzs59Z7y8jSsTLC-iixWz8VgMW7QfKXD47Zk/s1600/Tutorial-Install-slackware-2.png&quot; height=&quot;298&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: #444444; font-family: Dosis, Verdana, Arial, Trebuchet MS, sans-serif; text-align: center;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 24px;&quot;&gt;4. Virtual Hard Disk. Virtualbox akan memastisi harddisk secara dinamis, &amp;nbsp; &amp;nbsp;Sehingga&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-size: 15px; line-height: 24px;&quot;&gt;Kita tidak perlu memartisi ulang. Setelah Itu Pilih VDI (Virtual Disk Image) &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj80GHyZgC8Yzs-bkWb32tp3lXysVFoeNbfVEN6N2SdI-A_Ck2aJpWv3wmPZn_cmA2MGDqH4ScbvKYjGHts5O5BD9Vd2WhTebXUFic8kGt0hN-UCWBqx-2-VGDvfh2vISL2DTcTm3MJ7Gw/s1600/Tutorial-Install-slackware-3.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: right; display: inline !important; font-family: Dosis, Verdana, Arial, &#39;Trebuchet MS&#39;, sans-serif; font-size: 15px; line-height: 24px; margin-bottom: 1em; margin-left: 1em; text-align: center;&quot;&gt;&lt;span style=&quot;font-family: Dosis, Verdana, Arial, Trebuchet MS, sans-serif;&quot;&gt;&lt;span style=&quot;clear: right; margin-bottom: 1em; margin-left: 1em;&quot;&gt;&lt;img alt=&quot;Cara Install Slackware 14.1 di VirtualBox, Download&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj80GHyZgC8Yzs-bkWb32tp3lXysVFoeNbfVEN6N2SdI-A_Ck2aJpWv3wmPZn_cmA2MGDqH4ScbvKYjGHts5O5BD9Vd2WhTebXUFic8kGt0hN-UCWBqx-2-VGDvfh2vISL2DTcTm3MJ7Gw/s1600/Tutorial-Install-slackware-3.png&quot; height=&quot;297&quot; title=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; width=&quot;400&quot; /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;color: #444444; font-family: Dosis, Verdana, Arial, &#39;Trebuchet MS&#39;, sans-serif; font-size: 15px; line-height: 24px; text-align: center;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #444444; font-family: Dosis, Verdana, Arial, &#39;Trebuchet MS&#39;, sans-serif; font-size: 15px; line-height: 24px; text-align: center;&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8_TZG7VNKjKfIShKDXf-2KH1kdOeEi_HvdV9Ut0_Y7fFLwxMucOp2VRtVgsnCCSxn4SZZeKm_k-v45fQn6runFmZgp-7EGGoHqYCNaykmNGuuBVr4m_Slkt4ma2xb702nyeubjD1Nhyg/s1600/Tutorial-Install-slackware-4.png&quot; imageanchor=&quot;1&quot; style=&quot;font-family: Dosis, Verdana, Arial, &#39;Trebuchet MS&#39;, sans-serif; font-size: 15px; line-height: 24px; margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;strike&gt;&lt;img alt=&quot;Cara Install Slackware 14.1 di VirtualBox, Download&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8_TZG7VNKjKfIShKDXf-2KH1kdOeEi_HvdV9Ut0_Y7fFLwxMucOp2VRtVgsnCCSxn4SZZeKm_k-v45fQn6runFmZgp-7EGGoHqYCNaykmNGuuBVr4m_Slkt4ma2xb702nyeubjD1Nhyg/s1600/Tutorial-Install-slackware-4.png&quot; height=&quot;298&quot; title=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; width=&quot;400&quot; /&gt;&lt;/strike&gt;&lt;/a&gt;&lt;span style=&quot;color: #444444; font-family: Dosis, Verdana, Arial, &#39;Trebuchet MS&#39;, sans-serif; font-size: 15px; line-height: 24px; text-align: center;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;span style=&quot;color: #444444; font-family: Dosis, Verdana, Arial, &#39;Trebuchet MS&#39;, sans-serif; font-size: 15px; line-height: 24px; text-align: center;&quot;&gt;5. Click &quot;Next&quot; hingga kia lihat Hard Disk Storage Type. Pilih &quot;Dynamically allocated&quot;.&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjkOHUpcCHZ9Q9jBI0WjcchXHYr7F5KYS4NmphwQnf8z0RbRaQlO6hdpfXlGJpN-ymA1p9HZrPliUWxEG93HhdITqC54zvgXkxVIoQtZkcML0MCIM0ZQVtSS4Zq9T-2k04EWztYb8A3S60/s1600/Tutorial-Install-slackware-5.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img alt=&quot;Cara Install Slackware 14.1 di VirtualBox, Download&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjkOHUpcCHZ9Q9jBI0WjcchXHYr7F5KYS4NmphwQnf8z0RbRaQlO6hdpfXlGJpN-ymA1p9HZrPliUWxEG93HhdITqC54zvgXkxVIoQtZkcML0MCIM0ZQVtSS4Zq9T-2k04EWztYb8A3S60/s1600/Tutorial-Install-slackware-5.png&quot; height=&quot;298&quot; title=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Dosis, Verdana, Arial, &#39;Trebuchet MS&#39;, sans-serif; font-size: 15px; line-height: 24px; text-align: center;&quot;&gt;6. Virtual Disk Location and Size. Kita dapat menge-set lokasi dan berapa kapasitas &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;harddisk yang akan kita gunakan, minimal 5GB.&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjtQvlRbVUzC9TzxmuePzb176wOYW5FPvbN6bmKIDgilV3YYu53YEcgR2WwFqj6xtSqmeCAK_g0sF2m_vsfamI_7e40iUh8AGJnIq93Q5Zk5AY54sNo6ZEfpKbfi7rczGr2zA6GXHB_Z24/s1600/Tutorial-Install-slackware-6.png&quot; imageanchor=&quot;1&quot; style=&quot;font-family: Dosis, Verdana, Arial, &#39;Trebuchet MS&#39;, sans-serif; font-size: 15px; line-height: 24px; margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img alt=&quot;Cara Install Slackware 14.1 di VirtualBox, Download&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjtQvlRbVUzC9TzxmuePzb176wOYW5FPvbN6bmKIDgilV3YYu53YEcgR2WwFqj6xtSqmeCAK_g0sF2m_vsfamI_7e40iUh8AGJnIq93Q5Zk5AY54sNo6ZEfpKbfi7rczGr2zA6GXHB_Z24/s1600/Tutorial-Install-slackware-6.png&quot; height=&quot;298&quot; title=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;7. Tahap selanjutnya, klik kanan pada slackware yang kita buat tadi, kemudian pilih “setting”&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgvbU6SIl_IvXNcIZpdrZ8MSNhsyT5qpuotaBpSkyu_iXbbqR2_8OAHFNnLYk5lAx5bkcgsEoiGCSCcLUxRiZwkZT_kU5sJCrC-a7rqgskRWb0gojP1nj0FsTiPh43lD3OguwSDk8VoW_I/s1600/Tutorial-Install-slackware-8.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img alt=&quot;Cara Install Slackware 14.1 di VirtualBox, Download&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgvbU6SIl_IvXNcIZpdrZ8MSNhsyT5qpuotaBpSkyu_iXbbqR2_8OAHFNnLYk5lAx5bkcgsEoiGCSCcLUxRiZwkZT_kU5sJCrC-a7rqgskRWb0gojP1nj0FsTiPh43lD3OguwSDk8VoW_I/s1600/Tutorial-Install-slackware-8.png&quot; height=&quot;298&quot; title=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;8. Pilih “storage”, pada “empty”, klik ikon folder, kemudian “add”, pilih file iso slackware yang akan&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;9. kita install. Setelah itu klik “select”.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;10. Setelah selesai klik “ok”&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;11. Kemudian kita pilih slackware pada virtualbox, klik “start” untuk proses selanjutnya.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;Setelah muncul “boot”, tekan enter.&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgpM2mP9WFF9MCeE6UlYby0xHhyphenhyphenmmqX-RmcyPyUhhfpyCXOToIUE_UaUfhqSyjznlafiDLojg5r1zf7sYetM_5MOu0rKrLEh3ekCeLpOoJK3BZKHsO6oJuilTUX-KFzNTf390GDhhauNCc/s1600/Tutorial-Install-slackware-10.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img alt=&quot;Cara Install Slackware 14.1 di VirtualBox, Download&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgpM2mP9WFF9MCeE6UlYby0xHhyphenhyphenmmqX-RmcyPyUhhfpyCXOToIUE_UaUfhqSyjznlafiDLojg5r1zf7sYetM_5MOu0rKrLEh3ekCeLpOoJK3BZKHsO6oJuilTUX-KFzNTf390GDhhauNCc/s1600/Tutorial-Install-slackware-10.png&quot; height=&quot;297&quot; title=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;12. Pada pemilihan keyboard tekan enter.&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEir-Wdk9CXfSiJb3PKhblr0Puv6QqeobZ2LDGcxU87k5oJ1ayKUMbZteV2XeQXdjNZgU3KsOiWNp1wzsLK7DNQN6oavoh4oYilJuE7mhyphenhyphensMp_PVx6aNzTqxp66F4BKhUgvT4tLI9NWdwnM/s1600/Tutorial-Install-slackware-11.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img alt=&quot;Cara Install Slackware 14.1 di VirtualBox, Download&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEir-Wdk9CXfSiJb3PKhblr0Puv6QqeobZ2LDGcxU87k5oJ1ayKUMbZteV2XeQXdjNZgU3KsOiWNp1wzsLK7DNQN6oavoh4oYilJuE7mhyphenhyphensMp_PVx6aNzTqxp66F4BKhUgvT4tLI9NWdwnM/s1600/Tutorial-Install-slackware-11.png&quot; height=&quot;298&quot; title=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;13. Ketik “root” pada jendela login.&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjfRMnbyWScF7HXh7Fl57aRnVhKmStso5MW49FLsht8KhqHtmRZn57WGkDz79bu-26fstjrSwC9VkaHYfEufKIANucOfcBaBzzarwLiqZPZgps37SyOexVtc1L1mTJC8NNwDNe_Oyo-mkQ/s1600/Tutorial-Install-slackware-13.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img alt=&quot;Cara Install Slackware 14.1 di VirtualBox, Download&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjfRMnbyWScF7HXh7Fl57aRnVhKmStso5MW49FLsht8KhqHtmRZn57WGkDz79bu-26fstjrSwC9VkaHYfEufKIANucOfcBaBzzarwLiqZPZgps37SyOexVtc1L1mTJC8NNwDNe_Oyo-mkQ/s1600/Tutorial-Install-slackware-13.png&quot; height=&quot;256&quot; title=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;14. Setelah itu untuk memartisi harddisk ketik “cfdisk”, seperti pada gambar.&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihVIfTDjgzvywolZY4dudV3KzYC8ghtkmMlKFxZEmgSe8I9suqZgJKd7coSPA0duAyOTbQww-Y0A1HA8gomPWR715amrGIwjCm4TKZkLxz0YywSHZdsSuhW_X3UF2sOIdeV_9ebX0ckTQ/s1600/Tutorial-Install-slackware-14.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img alt=&quot;Cara Install Slackware 14.1 di VirtualBox, Download&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihVIfTDjgzvywolZY4dudV3KzYC8ghtkmMlKFxZEmgSe8I9suqZgJKd7coSPA0duAyOTbQww-Y0A1HA8gomPWR715amrGIwjCm4TKZkLxz0YywSHZdsSuhW_X3UF2sOIdeV_9ebX0ckTQ/s1600/Tutorial-Install-slackware-14.png&quot; height=&quot;256&quot; title=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;15. Pilih “new”--&amp;gt;&amp;nbsp;Kemudian “primary” --&amp;gt;&amp;nbsp;Pilih “bootable”, kemudian pilih “Write”, ketik “yes”, selanjutnya “quit”.&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHSyV-h3eF8PUlWVnnbjbCX7D2bQJ948xNaYcM3AwwubT-kPUwkfSZek1488W4S1V885ixNNS6K13DcmQYZ0Lr6JfUG_FSzzqRHEuU98gf1H4lURadWNHeZKA20Ynl6g3Xg1u_ADAZYRE/s1600/Tutorial-Install-slackware-17.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img alt=&quot;Cara Install Slackware 14.1 di VirtualBox, Download&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHSyV-h3eF8PUlWVnnbjbCX7D2bQJ948xNaYcM3AwwubT-kPUwkfSZek1488W4S1V885ixNNS6K13DcmQYZ0Lr6JfUG_FSzzqRHEuU98gf1H4lURadWNHeZKA20Ynl6g3Xg1u_ADAZYRE/s1600/Tutorial-Install-slackware-17.png&quot; height=&quot;255&quot; title=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;16. Sekarang kita menjalankan setup. Ketik “setup”.&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgGPGSRKSY7Qx68jbBxvagG9pL4wyMpMB33k_18xLenpVoMxVrMw-s6SQVQ8PBTDDsdMBRvBi32tayijE1CeLyQ7SaL-K6scFeCnn336XuiYKF5EWF_wiWW0S1ZyMtilORxYsUaIQFa0AI/s1600/Tutorial-Install-slackware-18.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img alt=&quot;Cara Install Slackware 14.1 di VirtualBox, Download&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgGPGSRKSY7Qx68jbBxvagG9pL4wyMpMB33k_18xLenpVoMxVrMw-s6SQVQ8PBTDDsdMBRvBi32tayijE1CeLyQ7SaL-K6scFeCnn336XuiYKF5EWF_wiWW0S1ZyMtilORxYsUaIQFa0AI/s1600/Tutorial-Install-slackware-18.png&quot; height=&quot;256&quot; title=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;17. Pilih “target”.&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhfFPm-L4nQZSvH9Yc0FGDgy7C5EHISbwFTA9CnKL7ryku9r88oU2lW8JcADsVVxV_VT9QBZDEFjTgCQtfBpuinI-ALiq11xQU9SWgUl-fF5Nytr0eF66MotseHivlE2LNNpQnUP0WTRzU/s1600/Tutorial-Install-slackware-19.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img alt=&quot;Cara Install Slackware 14.1 di VirtualBox, Download&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhfFPm-L4nQZSvH9Yc0FGDgy7C5EHISbwFTA9CnKL7ryku9r88oU2lW8JcADsVVxV_VT9QBZDEFjTgCQtfBpuinI-ALiq11xQU9SWgUl-fF5Nytr0eF66MotseHivlE2LNNpQnUP0WTRzU/s1600/Tutorial-Install-slackware-19.png&quot; height=&quot;255&quot; title=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;18. Select partisi pada list, pada gambar terletak paling atas, kemudian “select”.&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjXDmGAFP9mxIw0BXgG7XJojcIVuPvphAub1otVAcVGwDasYmSYqao3aFgyO1dMbYDiBvRalldmr26uf-raXSbiyfq0N0LHGAVC5NOZ-SDXsrEIikgmUVItpM-tmr6QIWJuVl9-gYMOtoY/s1600/Tutorial-Install-slackware-20.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img alt=&quot;Cara Install Slackware 14.1 di VirtualBox, Download&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjXDmGAFP9mxIw0BXgG7XJojcIVuPvphAub1otVAcVGwDasYmSYqao3aFgyO1dMbYDiBvRalldmr26uf-raXSbiyfq0N0LHGAVC5NOZ-SDXsrEIikgmUVItpM-tmr6QIWJuVl9-gYMOtoY/s1600/Tutorial-Install-slackware-20.png&quot; height=&quot;255&quot; title=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;19. Pilih “format” untuk memformat partisi yang kita pilih tadi.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Select “ext4”, kemudian press enter.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;20. Press “ok” jika sudah selesai.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;21. Select pilihan 1 &quot;Install from a Slackware CD or DVD&quot;. Press “enter”&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjprHQ2yU00lWf_9YYJn2UoduLBneBbwVB0x08Zv5icmyFJIroMoONt0GMxSso7AbA3LCi03O_q9Sm-5dLwVCgC_y3EkngPo-q-4ROzawibNA9knk5Qi0kr9k0MnJap4_Kzwrp8O5KWH30/s1600/Tutorial-Install-slackware-24.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img alt=&quot;Cara Install Slackware 14.1 di VirtualBox, Download&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjprHQ2yU00lWf_9YYJn2UoduLBneBbwVB0x08Zv5icmyFJIroMoONt0GMxSso7AbA3LCi03O_q9Sm-5dLwVCgC_y3EkngPo-q-4ROzawibNA9knk5Qi0kr9k0MnJap4_Kzwrp8O5KWH30/s1600/Tutorial-Install-slackware-24.png&quot; height=&quot;256&quot; title=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;22. Select auto &quot;Scan for the CD or DVD drive (recommended).&quot; Press “enter”.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;23. Select “base linux system”, kemudian press “ok”&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;24. Terus select full, untuk menginstall.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;25. Setelah menginstall,&amp;nbsp;Pilih “skip”.&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNW6cM5-dEOSlmAZC4VL9Y2nIm5Yv8RBnnWI0KkEiN7h5Jy74ULFt-b2i8QJIwiig9Tnin4yaOGQmT9RlVSzWsztKH5wJ041qUcj3tOFoQmIdaFfQxt8TC9SxD0OGxUDpaWc83fv0Q3Hw/s1600/Tutorial-Install-slackware-28.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img alt=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNW6cM5-dEOSlmAZC4VL9Y2nIm5Yv8RBnnWI0KkEiN7h5Jy74ULFt-b2i8QJIwiig9Tnin4yaOGQmT9RlVSzWsztKH5wJ041qUcj3tOFoQmIdaFfQxt8TC9SxD0OGxUDpaWc83fv0Q3Hw/s1600/Tutorial-Install-slackware-28.png&quot; height=&quot;255&quot; title=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;26. Kemudian install lilo.&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjAjPFI7HVdRM5nbpP6ovpJ2l_b04yUJ9bGCnulnmm2JZ6b_ouu85EWEcutz6fjN87IVjw-P8U7AQ2PfGWQ03LFE398SZbC9JTnlhaM9ww07n_hdOURRmRKYHfIz8EH4u-gSlQrQmMf4O0/s1600/Tutorial-Install-slackware-29.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img alt=&quot;Cara Install Slackware 14.1 di VirtualBox, Download&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjAjPFI7HVdRM5nbpP6ovpJ2l_b04yUJ9bGCnulnmm2JZ6b_ouu85EWEcutz6fjN87IVjw-P8U7AQ2PfGWQ03LFE398SZbC9JTnlhaM9ww07n_hdOURRmRKYHfIz8EH4u-gSlQrQmMf4O0/s1600/Tutorial-Install-slackware-29.png&quot; height=&quot;256&quot; title=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;27. Pilih frame.&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjOZmQcdZxaIaiCrd845n3SHY_mA7t-v1ZCpFN-SlytnOIARfrZIen1ZAt4TrVyQgprHjlERTfWXfoNa7DMnigKEhduuDzr_5b5HS7tgcH518GpR7luQAjZh9aHXKrOVL41IWcHa0KPlDE/s1600/Tutorial-Install-slackware-30.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img alt=&quot;Cara Install Slackware 14.1 di VirtualBox, Download&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjOZmQcdZxaIaiCrd845n3SHY_mA7t-v1ZCpFN-SlytnOIARfrZIen1ZAt4TrVyQgprHjlERTfWXfoNa7DMnigKEhduuDzr_5b5HS7tgcH518GpR7luQAjZh9aHXKrOVL41IWcHa0KPlDE/s1600/Tutorial-Install-slackware-30.png&quot; height=&quot;256&quot; title=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;28. Langsung di “ok” saja,&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhDRvhYWC9_O9Yol_ssgM56b2wvdiL79thN8T4rfcT6W5YbpTv_0wfZ_fwXlWIYJ1UjSQ93PsRSDa-4K1YmfaofJb2BOMHOLMTI1jU7AM9fGzR5lgywz45tZ3Cm081qrMglx70DQEI3ew4/s1600/Tutorial-Install-slackware-31.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img alt=&quot;Cara Install Slackware 14.1 di VirtualBox, Download&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhDRvhYWC9_O9Yol_ssgM56b2wvdiL79thN8T4rfcT6W5YbpTv_0wfZ_fwXlWIYJ1UjSQ93PsRSDa-4K1YmfaofJb2BOMHOLMTI1jU7AM9fGzR5lgywz45tZ3Cm081qrMglx70DQEI3ew4/s1600/Tutorial-Install-slackware-31.png&quot; height=&quot;255&quot; title=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;29. Pilih MBR&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;30. Pilih “imps2”&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;31. Pilih “rc.atalk”, press “ok”&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;32. Untuk mengkostum font, kalau saya pilih skip aja, press “no”&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;33. Jika kita ingin waktu lokal kita pilih “NO” atau waktu UTC pilih “YES”. Press “no” saja.&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj_6I8jooiX5CE1bsNIX5nzbjdXya-ZwWXwtFWGbBSih1BornDfvI5U-rSkd0sbcoS1JSvzX01UDvv-CF_VrKHfTrTHzj1pZD6xL4dHT42OrkFyuk2qhoXb3ovKjEd9pZVgARYsVYx7FBs/s1600/Tutorial-Install-slackware-36.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img alt=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj_6I8jooiX5CE1bsNIX5nzbjdXya-ZwWXwtFWGbBSih1BornDfvI5U-rSkd0sbcoS1JSvzX01UDvv-CF_VrKHfTrTHzj1pZD6xL4dHT42OrkFyuk2qhoXb3ovKjEd9pZVgARYsVYx7FBs/s1600/Tutorial-Install-slackware-36.png&quot; height=&quot;253&quot; title=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;34. Kemudian pilih “the cholesterol free desktop environment”&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;35. Pilih “yes”&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;36. Membuat password, password yang akan kita buat tidak akan terlihat, jadi harus hati-hati saat &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; memasukkan password.&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjPfrZvTP-YlFNGuTLyVmbtLl82emuzzjqfEhbKviTr-XgEWyEqJ9ZjF_qfPxQqbSASp79zYXudiUOZOGeWlvTeNyXCBqr2dgH-ZoHRXquPcCcRXB-e_OPMRM6cFa8dJAF5XeOqaTpHcbY/s1600/Tutorial-Install-slackware-39.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img alt=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjPfrZvTP-YlFNGuTLyVmbtLl82emuzzjqfEhbKviTr-XgEWyEqJ9ZjF_qfPxQqbSASp79zYXudiUOZOGeWlvTeNyXCBqr2dgH-ZoHRXquPcCcRXB-e_OPMRM6cFa8dJAF5XeOqaTpHcbY/s1600/Tutorial-Install-slackware-39.png&quot; height=&quot;257&quot; title=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;37. Kemudian exit, close Machine -&amp;gt; Close... -&amp;gt; Power off the virtual machine.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;38. Remove file iso di slackware yang sudah kita install.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;39. Kemudian jalankan slackware, pilih “start”.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;40. Login dengan ketik “root”.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;41. Masukkan password, kemudian untuk melanjutkan ke slackware, kita ketik “startx”.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;Tunggu sampai proses selesai, jadilah seperti ini,&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2PaA-sfnDzEYVTwoBnUAGgUk69ANaX1jDYjXPexWpZu0GL8qL2Bjls8VfwrA__quG7yEOoM0R9zfY4tc1JvJ0g8g5YXNkCXhNYpsPqZYxIwTkvJfRmqsNH7V6S2VSQ78VPiqckI1JaFA/s1600/Tutorial-Install-slackware-47.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img alt=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2PaA-sfnDzEYVTwoBnUAGgUk69ANaX1jDYjXPexWpZu0GL8qL2Bjls8VfwrA__quG7yEOoM0R9zfY4tc1JvJ0g8g5YXNkCXhNYpsPqZYxIwTkvJfRmqsNH7V6S2VSQ78VPiqckI1JaFA/s1600/Tutorial-Install-slackware-47.png&quot; height=&quot;272&quot; title=&quot;Cara Install Slackware 14.1 di VirtualBox&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: center;&quot;&gt;Selamat Mencoba.....&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;color: #444444; font-family: Dosis, Verdana, Arial, Trebuchet MS, sans-serif;&quot;&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;ol&gt;
&lt;/ol&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</description><link>http://rushfly.blogspot.com/2014/05/cara-install-slackware-141-di-virtualbox.html</link><author>noreply@blogger.com (Rza)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgJxIDeSEQGE7x6JdBcYPE08weuBWvXCU6oqHcwQwzbwnk-QQa1LPTNj5hlmaLMQmTWFSAJeXhBHHHwW34kGcbm_LYc-Q9KkSZfVSGBIZc3gLb0cfmYVBH3D0mFlWeaW8lqn0IFfDv-38o/s72-c/Tutorial-Install-slackware-1.png" height="72" width="72"/><thr:total>1</thr:total></item></channel></rss>