<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Posts on John Cosio</title>
        <link>https://jcos.io/posts/</link>
        <description>Recent content in Posts on John Cosio</description>
        <generator>Hugo -- gohugo.io</generator>
        <language>en-us</language>
        <copyright>&lt;a href=&#34;https://creativecommons.org/licenses/by-nc/4.0/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;CC BY-NC 4.0&lt;/a&gt;</copyright>
        <lastBuildDate>Wed, 01 Jan 2025 03:21:55 +0000</lastBuildDate>
        <atom:link href="https://jcos.io/posts/index.xml" rel="self" type="application/rss+xml" />
        
        <item>
            <title>Happy New Year 2025!</title>
            <link>https://jcos.io/posts/happy-new-year-2025/</link>
            <pubDate>Wed, 01 Jan 2025 03:21:55 +0000</pubDate>
            
            <guid>https://jcos.io/posts/happy-new-year-2025/</guid>
            <description>Happy New Year!</description>
            <content type="html"><![CDATA[<p>Happy New Year, everyone! 🎉</p>
<p>As we step into 2025, I want to take a moment to thank all of you who’ve visited my blog, read my posts, or shared your thoughts over the past year. Your support and engagement are very appreciated.</p>
<p>Here’s to a new year filled with exciting projects, fun hobbies, and unforgettable moments. Wishing you all a fantastic year ahead.</p>
<p>Let’s make it a great one together!</p>
<h3 id="john">John</h3>
]]></content>
        </item>
        
        <item>
            <title>Path of Exile 2 Hype: Preload, Play, and Let’s Dive In!</title>
            <link>https://jcos.io/posts/path-of-exile-2-early-access/</link>
            <pubDate>Fri, 06 Dec 2024 08:21:55 +0000</pubDate>
            
            <guid>https://jcos.io/posts/path-of-exile-2-early-access/</guid>
            <description>Path of Exile 2 Hype: Preload, Play, and Let’s Dive In!</description>
            <content type="html"><![CDATA[<h3 id="still-sane-exile">Still Sane Exile?</h3>
<p>After years of being an exile, diving deep into Wraeclast’s unforgiving world, the time has finally come to venture into the highly-anticipated Path of Exile 2.</p>
<p>The hype is real, and the countdown has begun—I’ll be jumping in within just a few hours.</p>
<h3 id="early-access-its-finally-here">Early Access: It’s Finally Here</h3>
<p>I’m thrilled to have secured early access to Path of Exile 2.</p>
<p>This is my first ever game to pre order buy an early access key.</p>
<p>Like many of you, I’ve already preloaded the game on Steam. As the download progresses, I can’t help but reminisce about my long journey through Path of Exile.</p>
<p>From the moment I first stepped into the Talisman League, to recently wrapping up the Settlers of Kalguur League with my best performance ever—36/40 challenges completed!</p>
<p>It’s been a wild and rewarding ride, and I’m ready for the next one.</p>
<h3 id="going-in-raw-the-witch-awaits">Going In Raw: The Witch Awaits</h3>
<p>For my first foray into PoE2, I’ve decided to stick with my favorite class(The Witch) and lean into a minion build.</p>
<p>True to my style, I’m going in raw this time: no guides, no meta-checking, just pure exploration and improvisation in SSF.</p>
<p>There’s something incredibly liberating about letting the game surprise you, especially with the rich complexity GGG is known for.</p>
<h3 id="anticipation-and-excitement">Anticipation and Excitement</h3>
<p>I’m wishing everyone heading into the game today the best of luck and hope that PoE2 lives up to our expectations.</p>
<p>Grinding Gear Games has a track record of delivering deep, immersive experiences, so I’m optimistic that this next chapter will be nothing short of incredible.</p>
<p>Whether you’re a seasoned veteran or a newcomer, may your loot be plentiful and your RNG kind.</p>
<h3 id="a-message-to-fellow-exiles">A Message to Fellow Exiles</h3>
<p>If you’re downloading the game right now, just like me, let’s share this moment of excitement together.</p>
<p>The years of waiting and speculating are over—it’s time to carve our names into the annals of Wraeclast once again.</p>
<p>Let’s go, exiles, and make this journey unforgettable.</p>
<p>I’ll see you in Path of Exile 2. LOG IN.</p>
<p>GLHF</p>
<blockquote>
<p>This world is an illusion, exile</p>
</blockquote>
]]></content>
        </item>
        
        <item>
            <title>Guide: Setting up multiple Node.js applications on DigitalOcean</title>
            <link>https://jcos.io/posts/guide-pm2-digital-ocean/</link>
            <pubDate>Sun, 08 Nov 2020 07:08:09 +1011</pubDate>
            
            <guid>https://jcos.io/posts/guide-pm2-digital-ocean/</guid>
            <description>Setting up guide for multiple node applications on a single pm2 instance.</description>
            <content type="html"><![CDATA[<h2 id="set-up">Set up</h2>
<ul>
<li>LEMP droplet from marketplace</li>
<li>2 Node applications, 1 for an Express API and another for a Nuxt.js application.</li>
</ul>
<h2 id="situation">Situation</h2>
<p>I am updating my portfolio website and running all the public apps I can on one droplet.</p>
<p>Is it recommended? Not sure.. Probably not advisable but if you&rsquo;re broke like me, even the lowest droplet can handle most of my demo sites.</p>
<p>My goal is to have node and php apps play together in one server.</p>
<p>All seems to work well but it goes south when running the Nuxt app.</p>
<p>PM2 is stopping for my API when starting Nuxt and then stopping Nuxt when starting the API.</p>
<p>I had to use my Full Stackoverflow skills to make this work.</p>
<p>This guide is mainly for me as a reminder when I eventually forget about this when I move onto other stuff.</p>
<h2 id="solution">Solution</h2>
<h3 id="including-the-guides-i-followed-for-reference">Including the guides I followed for reference.</h3>
<ul>
<li>Step 1: <a href="https://marketplace.digitalocean.com/apps/lemp#getting-started">Setting up LEMP stack</a></li>
<li>Step 2: <a href="https://www.digitalocean.com/community/tutorials/how-to-set-up-nginx-server-blocks-virtual-hosts-on-ubuntu-16-04">Adding NGINX sites</a></li>
<li>Step 3: <a href="https://www.digitalocean.com/community/tutorials/how-to-set-up-a-node-js-application-for-production-on-ubuntu-16-04">Set up Node apps and pm2</a></li>
</ul>
<p>Now I needed to add an <a href="https://github.com/sudoist/practice-nuxt-tic-tac-toe/blob/master/ecosystem.config.js.example">ecosystem config</a> to list all the apps on this server.</p>
<div class="highlight"><pre style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-javascript" data-lang="javascript"><span style="color:#a6e22e">module</span>.<span style="color:#a6e22e">exports</span> <span style="color:#f92672">=</span> {
  <span style="color:#a6e22e">apps</span><span style="color:#f92672">:</span> [
    {
      <span style="color:#a6e22e">name</span><span style="color:#f92672">:</span> <span style="color:#e6db74">&#39;nuxt&#39;</span>,
      <span style="color:#a6e22e">exec_mode</span><span style="color:#f92672">:</span> <span style="color:#e6db74">&#39;cluster&#39;</span>,
      <span style="color:#a6e22e">instances</span><span style="color:#f92672">:</span> <span style="color:#e6db74">&#39;max&#39;</span>, <span style="color:#75715e">// Max or a number of instances
</span><span style="color:#75715e"></span>      <span style="color:#a6e22e">script</span><span style="color:#f92672">:</span> <span style="color:#e6db74">&#39;./node_modules/nuxt/bin/nuxt.js&#39;</span>,
      <span style="color:#a6e22e">args</span><span style="color:#f92672">:</span> <span style="color:#e6db74">&#39;start&#39;</span>
    },
    {
      <span style="color:#a6e22e">name</span><span style="color:#f92672">:</span> <span style="color:#e6db74">&#39;express&#39;</span>,
      <span style="color:#a6e22e">script</span><span style="color:#f92672">:</span> <span style="color:#e6db74">&#39;path/to/express/api/bin/www&#39;</span>, <span style="color:#75715e">// express project folder/bin/www
</span><span style="color:#75715e"></span>      <span style="color:#a6e22e">cwd</span><span style="color:#f92672">:</span> <span style="color:#e6db74">&#39;path/to/express/api&#39;</span>, <span style="color:#75715e">// express project folder
</span><span style="color:#75715e"></span>      <span style="color:#a6e22e">args</span><span style="color:#f92672">:</span> <span style="color:#e6db74">&#39;start&#39;</span>,
      <span style="color:#a6e22e">node_args</span><span style="color:#f92672">:</span> <span style="color:#e6db74">&#39;--require dotenv/config&#39;</span>, <span style="color:#75715e">// Include this to fix issue that dotenv variables are empty
</span><span style="color:#75715e"></span>    }
  ]
}
</code></pre></div><p>That&rsquo;s it, see step 2 to update the ports of your apps then restart nginx.</p>
<p>The final working apps are somewhat like this:</p>
<h3 id="list-of-apps-and-their-ports">List of apps and their ports.</h3>
<pre><code>App 1 = port 4000
App 2 = port 5000
App 3 = port 6000

</code></pre><h3 id="example-config">Example config</h3>
<pre><code>module.exports = {
  apps: [
    {
      name: 'nuxt',
      exec_mode: 'cluster',
      instances: 'max', // Max or a number of instances
      script: './node_modules/nuxt/bin/nuxt.js',
      args: 'start'
    },
    {
      name: 'express',
      script: 'path/to/express/api/bin/www', // express project folder/bin/www
      cwd: 'path/to/express/api', // express project folder
      args: 'start',
      node_args: '--require dotenv/config', // Include this to fix issue that dotenv variables are empty
    },
    {
      name: 'another-express',
      script: 'path/to/another-express/api/bin/www', // express project folder/bin/www
      cwd: 'path/to/another-express/api', // express project folder
      args: 'start',
      node_args: '--require dotenv/config', // Include this to fix issue that dotenv variables are empty
    }
  ]
}
</code></pre><p>After these are in place just restart pm2 and the sites should be back up now.</p>
<pre><code>pm2 kill

pm2 start
</code></pre><h4 id="here-are-the-demo-apps-that-made-me-go-through-this-last-night">Here are the demo apps that made me go through this last night.</h4>
<p><a href="https://api.labada.tigasoft.dev/api/order/5f9ccfe54dcc92012501909e">Express API</a></p>
<p><a href="https://tictacvue.tigasoft.dev/">Nuxt.js app</a></p>
<h3 id="i-almost-forgot">I almost forgot</h3>
<p>If you want to try out DigitalOcean, you can use my <a href="https://m.do.co/c/83cff1ac53a7">referral link</a>.</p>
<p>Using my link saves us both some extra hosting money.</p>
<h2 id="closing">Closing</h2>
<p>Ok that was longer than expected.
Let&rsquo;s end it here for today. Bye then!&hellip;&hellip;&hellip;..</p>
<p>By the way it was all over the internet that Biden won today&hellip;</p>
<p>Bye then for real :D</p>
]]></content>
        </item>
        
        <item>
            <title>Happy GitHub Halloween</title>
            <link>https://jcos.io/posts/happy-github-halloween/</link>
            <pubDate>Sun, 01 Nov 2020 07:08:09 +1011</pubDate>
            
            <guid>https://jcos.io/posts/happy-github-halloween/</guid>
            <description>Working on projects but noticed Halloween themed contributions.</description>
            <content type="html"><![CDATA[<h2 id="happy-halloween">Happy Halloween!</h2>
<p>It&rsquo;s that time for job hunting again.</p>
<p>Nothing much going right now, working on my previous project for laundry app and porting to multiple frameworks to show prospective employers.</p>
<p>As always I&rsquo;m placing a Nen limitation on myself to not play any games until I get a new job. (Second or third time doing this)</p>
<p>No noeed to stretch this out, that&rsquo;s all.</p>
<p>Trick or Treats!</p>
]]></content>
        </item>
        
        <item>
            <title>Lockdown Laptop Priorities</title>
            <link>https://jcos.io/posts/lockdown-laptop-priorities/</link>
            <pubDate>Tue, 28 Apr 2020 07:08:09 +1011</pubDate>
            
            <guid>https://jcos.io/posts/lockdown-laptop-priorities/</guid>
            <description>Realization about my laptop and how to improve it during this lockdown.</description>
            <content type="html"><![CDATA[<h2 id="i-miss-my-desktop-my-christmas-gift-to-myself">I miss my desktop, my christmas gift to myself!</h2>
<h3 id="need-to-write-on-that-some-time-later">Need to write on that some time later.</h3>
<p>During the announcement of a Community Quarantine or &ldquo;Lockdown&rdquo;.</p>
<p>Because that is what it is, even officials being interviewed is saying that it is not a &ldquo;Lockdown&rdquo; but similar to a &ldquo;Lockdown&rdquo;.</p>
<p>You know what comes to mind when I hear the term Lockdown?</p>
<blockquote>
<p>Terran Ghosts, Siege Tanks, Carriers and Battlecruisers</p>
</blockquote>
<p>Okay I&rsquo;m getting side tracked back to the topic, so I had to go back to our house with my parents and leave the place I&rsquo;m renting.</p>
<p>I don&rsquo;t have much food and supplies. I thought it would suck to be stuck in there alone so when the rumors that there&rsquo;s going to be a community quarantine I packed my laptop and left.</p>
<p>Fast forward to present, A month and a half quarantined.</p>
<p>It&rsquo;s back to my Asus again. My old trusty partner for almost 6 years.</p>
<p>When I bought the new box last christmas I gave this to my parents, nice thing is that my good friend handed me down his old laptop.</p>
<blockquote>
<p>What I am using in typing this right now. Still works great with MX Linux.</p>
</blockquote>
<p>There is this SSD in a portable enclosure I bring everywhere as my work OS, so no problem whichever computer I am using.</p>
<p>This is loaded with Pop OS; An Ubuntu based distro which I really like.</p>
<p>Easy to use and loads Steam games without issues.</p>
<p>It&rsquo;s all good but when it&rsquo;s running on older machines like my Asus, the limited resources are creeping out.</p>
<p>Lack of RAM keeps slowing down the system and the Gnome also uses a lot of memory.</p>
<p>When used with IDEs like Android Studio and PHP Storm a significant slowness is noticeable.</p>
<p>Oh and on top of that, the fan broke. (Pics to upload later.)</p>
<p>You can hear the noisy grinding fan causing vibrations on the laptop.</p>
<p>So I realized that to remedy this lack of performance and the risk that this quarantine can be extended again&hellip;</p>
<p>Maybe I can get a nice budget laptop.</p>
<h3 id="requirements-is-not-so-high">Requirements is not so high.</h3>
<ul>
<li>Minimum 16GB RAM</li>
<li>Decent AMD processor for multitask and to be more cheaper.</li>
</ul>
<h4 id="nice-to-have">Nice to have</h4>
<ul>
<li>Nice keyboard. I really like the HP Pavilion&rsquo;s keyboard.</li>
</ul>
<p>I kept searching and disappointed on how expensive laptops are right now.</p>
<p>A decent specced unit is more expensive than my gaming desktop.</p>
<p>For me, I&rsquo;m not really a fan of laptops but I think I should invest in one since it is useful for my work.</p>
<p>Found one from Dell I think but when I thought about it long and hard&hellip; Why not just upgrade my Asus.</p>
<p>It still works great, just need to do some upgrades then it should be good as new.</p>
<p>Wow that introduction was longer than expected, sorry I kept rambling.</p>
<h2 id="in-to-the-meat-of-the-matter">In to the meat of the matter.</h2>
<h3 id="there-were-checklist-on-what-i-thought-of-to-improve-the-performance">There were checklist on what I thought of to improve the performance.</h3>
<ul>
<li>Replaced Pop OS with MX Linux. ✅</li>
<li>Max out the RAM to 12GB.</li>
<li>Slap in the SSD as main drive. ✅</li>
<li>Replaced Jetbrains' IDEs for lighter Visual Studio Code. ✅</li>
</ul>
<h4 id="additional-quality-of-life-improvements-that-are-nice-to-have">Additional quality of life improvements that are nice to have</h4>
<ul>
<li>Buy new battery to be used in meetings and on situational work outside.</li>
<li>Replace speaker, it is cracking sound. Really bothers me even though I can use an external speaker and headsets.</li>
<li>Replace fan. I had to break it down, add lots of electrical tapes and apply oil as prescribed in forums.</li>
</ul>
<p>Greatest improvement was switching to MX Linux.</p>
<p>I have used Lubuntu and LXLE before for a long time but they feel like Windows 98.</p>
<p>LXDE isn&rsquo;t the prettiest but the performance is solid.</p>
<p>On first search for light distros this MX is always showing up.</p>
<p>Gave it a try and popped the SSD&rsquo;s Pop OS as soon as I can.</p>
<p>Of course I backed up the Pop OS first since I&rsquo;ll still use that for my powerful computer.</p>
<p>Backing it up was easy using Gparted. I should write about this sometime or maybe just link the guide that I followed.</p>
<p>The built in resource monitor is a nice addition.</p>
<p>Customized it a little made it look really good.</p>
<p>Moved the menu to top then changed the wallpaper and you&rsquo;re set.</p>
<p>I&rsquo;m surprised at the wallpaper I used that it looks good here.</p>
<blockquote>
<p>To get the same wallpaper, see Unsplash credits at the end. 😜</p>
</blockquote>
<h2 id="conclusion">Conclusion</h2>
<p>Don&rsquo;t buy new laptop. Max out current one and extend it&rsquo;s life.</p>
<p>Sometimes I&rsquo;m thinking that my laptop was sulking when I gave it to my parents but now we are back together.</p>
<p>She doesn&rsquo;t run as smooth back when I was using it heavily.</p>
<blockquote>
<p>Her name is Gortys.</p>
</blockquote>
<p>A naming convention for my other devices is they should resemble an AI or robot somewhere.</p>
<p>A couple examples includes my mobile internet as Skynet, my phone is GlaDOS and my PC is Claptrap, this laptop is Simaris and last but not the least my other portable HD Ubuntu install is JuiceBox.</p>
<p>Got where the names are from? Then I&rsquo;m sure we&rsquo;ll get along.</p>
<p>That should be all for today.</p>
<p>Still here? Thanks for reaching the end.</p>
<p>Appreciate your time!</p>
<p>TODO: Upload other laptop pics or on another post. Changing thermal paste, disassembling and lubing fan etc..</p>
<p>Photo by <a href="https://unsplash.com/photos/cMz_4oalZnY">John Cosio</a> on <a href="https://unsplash.com/@jcosio?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Unsplash</a> 😉</p>
]]></content>
        </item>
        
        <item>
            <title>Jojo&#39;s Bazaar Adventures: Programming Exam - Modulo Division</title>
            <link>https://jcos.io/posts/modulo-division-exam/</link>
            <pubDate>Thu, 20 Feb 2020 03:21:55 +0000</pubDate>
            
            <guid>https://jcos.io/posts/modulo-division-exam/</guid>
            <description>A little story of my recent interview and how I messed it up.</description>
            <content type="html"><![CDATA[<h2 id="welcome-to-a-new-series-of-posts">Welcome to a new series of posts.</h2>
<h3 id="this-is-job-hunter-johns-bazaar-adventures">This is Job hunter John&rsquo;s Bazaar Adventures.</h3>
<blockquote>
<p>A <a href="https://en.wikipedia.org/wiki/GNU_Bazaar">bazaar</a> is a permanently enclosed marketplace or street where goods and services are exchanged or sold.</p>
</blockquote>
<p>Hmmmm enclosed marketplace for developers.. Programming services&hellip;</p>
<p>Yeah&hellip; That&rsquo;s really forced..</p>
<p>Alright. This series should be alive in a while since I&rsquo;m still open for work..</p>
<p><a href="https://www.upwork.com/fl/johncosio">Freelance</a> or <a href="https://www.linkedin.com/in/johncosio/">Employment</a>&hellip;</p>
<h2 id="lets-do-this-in-daily-stand-up-meeting-format">Let&rsquo;s do this in daily stand-up meeting format.</h2>
<h3 id="yesterday">Yesterday:</h3>
<p>Yesterday, I had an exam for a local office.</p>
<p>They had really great perks that got me excited in a while.</p>
<p>It consists of 4 parts with exams.</p>
<p>Let&rsquo;s have some story first, lately everyone seems to be looking for ReactJs or VueJS developers and also NodeJs.
So the logical thing to do is to also study those.</p>
<p>Then around 3 in the afternoon I got a call from a recruiter, seems nice and balanced.</p>




<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_500/hugo/jcos.io/balanced_gjvhvo.jpg"
>

<p>As all things should be.</p>
<p>He asked for a schedule for an exam/interview I complied and wanted it ASAP. We&rsquo;ve agreed to have it at 5PM, more or less in two hours.</p>
<p>I was excited. I&rsquo;ve setup a Laravel project on Laradock, Nginx and all.</p>
<p>We were on a call where I can share my screen so I can&rsquo;t search for stuff.</p>
<p>Syntax is allowed but searching for the problems are not. Seems fair enough.</p>
<p>I was pumped. It was a 4 stage exam, I likened to a game of DoTA.</p>
<h4 id="first-stage-is-the-first-tower">First stage is the first tower.</h4>
<p>This is where the pressure is all. An important part where you know if you are at a disadvantage.</p>
<p>First tower is a 30 minutes exam.</p>
<p>Man, I&rsquo;ve been reading about React, Vue, Node and all that shit until now.</p>
<p>This is child&rsquo;s play. I have the internet I am unstoppable.</p>
<p>No mere mortal tower can hinder me now.</p>
<p>Then we got into it.</p>
<p>Basic FooBar, got this in the bag. Alright! That Frozen Throne is as good as melted.</p>
<p>Then math hit me. I need to use modulo manually without using % mod.</p>
<p>I can&rsquo;t search for it. The Scourge rallied, killed Roshan then straight up wrecked our mid to the tree. Sending it to destination fucked.</p>
<p>I was defenseless, no farm, no kills, no items.</p>
<p>Long story short. I failed.</p>
<p>No hard feelings though. Examiner was fair and balanced.</p>
<p>It only occurred to me after that I could have searched for the solution on my phone.</p>
<p>He can&rsquo;t see me we&rsquo;re not using our cameras but yeah that doesn&rsquo;t sit right with me.</p>
<p>This was my lose.</p>
<h3 id="today">Today:</h3>
<p>I am still frustrated about modulo. After the exam I was trying to make it work.</p>
<p>Got it to work but I think I won&rsquo;t be remembering it.</p>
<p>Math and exams are not my strong suite.</p>
<p>Usually when in interviews I answer to &ldquo;What is your weakness?&quot;: Math, Written Exams, Practical Exams.</p>
<p>Do I suck at those. Come to think of it.</p>
<p>Half of my successful employments were those without exams, just interviews. So when exam is present I have a 50% hired chance.</p>
<h3 id="blockers">Blockers:</h3>
<p>Math. Exams.</p>
<h3 id="conclusion">Conclusion</h3>
<p>The lesson, do more projects for portfolio so it will offset the exam results hehehehe</p>
<p>Need to finish reading up Flutter articles then play Warhammer 40,000: Mechanicus for a break.</p>
<p>That&rsquo;s all for this today.</p>
<p>Going to write up on that next.</p>
<p>Until the next episode of Jojo&rsquo;s Bazaar Adventures.</p>
]]></content>
        </item>
        
        <item>
            <title>Build Complete: MG GNX-603T GN-X</title>
            <link>https://jcos.io/posts/build-complete-mg-gn-x/</link>
            <pubDate>Wed, 19 Feb 2020 03:21:55 +0000</pubDate>
            
            <guid>https://jcos.io/posts/build-complete-mg-gn-x/</guid>
            <description>Building MG GNX-603T GN-X.</description>
            <content type="html"><![CDATA[<p>Got to build my first MG model.</p>
<p>I finished this last year along with 2 HG and another MG, was busy with life.</p>
<p>Got hooked into playing Warframe. (Stopped playing for now)</p>
<p>This took longer than expected. There were many pieces to put together but relaxing as usual.</p>
<p>The pilot is really small. I&rsquo;m considering painting this in a later time.</p>
<p>I will post on my attempt at painting someday.</p>
<p>We have this Gundam GN-X from Gundam 00 series.</p>
<p>I&rsquo;m able to catch it on tv occasionally to have an idea of this series.
Especially that scene with Lockon&hellip;</p>
<p>He looks like an insect, maybe a bumble bee.</p>
<h3 id="building-process">Building Process</h3>
<p>Building smaller kits like SD and HG is becoming easier now.</p>
<p>That&rsquo;s why this one took me by surprise.</p>
<p>There were a lot of runners from this one.</p>




<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_500/hugo/jcos.io/build-mg-gn-x/20190720_230729_i16onz.jpg"
>

<p>A thing I noticed is where filing takes most of the time when building.</p>
<hr>
<h3 id="now-to-pose-and-take-some-photos">Now to pose and take some photos</h3>


<style>
  div.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  div.gallery a {
    object-fit: cover;
    margin: 5px;
    display: flex;
  }

  div.gallery a img {
    height: 250px;
    object-fit: contain;
    flex-grow: 1;
  }

</style>

<script src="//code.jquery.com/jquery-3.3.1.min.js"></script>

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css" />
<script src="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.js"></script>

<div class="gallery">

  
  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-mg-gn-x/20190723_013910_y7yald.jpg">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-mg-gn-x/20190723_013910_y7yald.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-mg-gn-x/20190723_013910_y7yald.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-mg-gn-x/20190723_013910_y7yald.jpg
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-mg-gn-x/20190723_013910_y7yald.jpg"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-mg-gn-x/20190720_230729_i16onz.jpg">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-mg-gn-x/20190720_230729_i16onz.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-mg-gn-x/20190720_230729_i16onz.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-mg-gn-x/20190720_230729_i16onz.jpg
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-mg-gn-x/20190720_230729_i16onz.jpg"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-mg-gn-x/20190720_230429_xymo3u.jpg">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-mg-gn-x/20190720_230429_xymo3u.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-mg-gn-x/20190720_230429_xymo3u.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-mg-gn-x/20190720_230429_xymo3u.jpg
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-mg-gn-x/20190720_230429_xymo3u.jpg"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-mg-gn-x/20190721_221019_nslvo6.jpg">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-mg-gn-x/20190721_221019_nslvo6.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-mg-gn-x/20190721_221019_nslvo6.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-mg-gn-x/20190721_221019_nslvo6.jpg
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-mg-gn-x/20190721_221019_nslvo6.jpg"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-mg-gn-x/20190722_021943_siuusw.jpg">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-mg-gn-x/20190722_021943_siuusw.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-mg-gn-x/20190722_021943_siuusw.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-mg-gn-x/20190722_021943_siuusw.jpg
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-mg-gn-x/20190722_021943_siuusw.jpg"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-mg-gn-x/20190722_013813_mu62da.jpg">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-mg-gn-x/20190722_013813_mu62da.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-mg-gn-x/20190722_013813_mu62da.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-mg-gn-x/20190722_013813_mu62da.jpg
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-mg-gn-x/20190722_013813_mu62da.jpg"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-mg-gn-x/20190721_021908_jiiiah.jpg">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-mg-gn-x/20190721_021908_jiiiah.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-mg-gn-x/20190721_021908_jiiiah.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-mg-gn-x/20190721_021908_jiiiah.jpg
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-mg-gn-x/20190721_021908_jiiiah.jpg"
    >
    <br>

  </a>

  

</div>

<hr>
<p>If you would also like to build this kit you can get it on Amazon with the link below.</p>
<p><a href="https://amzn.to/2PlQN5R">





<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/hugo/jcos.io/build-mg-gn-x/20190720_230429_xymo3u"
>
</a></p>
<h4 id="model-kit-bandai-hobby-gn-x-gundam-bandai-master-grade-action-figurehttpsamznto2plqn5r"><a href="https://amzn.to/2PlQN5R">Model Kit: Bandai Hobby GN-X Gundam Bandai Master Grade Action Figure</a></h4>
<blockquote>
<p>☝️ <em>I receive a commission from Amazon for purchases made through these links.</em></p>
</blockquote>
<blockquote>
<p><em>This comes with no additional cost and helps me with <del>food</del> Gundam money</em></p>
</blockquote>
<blockquote>
<p><em>Thank you</em></p>
</blockquote>
]]></content>
        </item>
        
        <item>
            <title>Writing the My Résumé post</title>
            <link>https://jcos.io/posts/my-resume-ramblings/</link>
            <pubDate>Mon, 17 Feb 2020 07:08:09 +1011</pubDate>
            
            <guid>https://jcos.io/posts/my-resume-ramblings/</guid>
            <description>Since I got laid off, I have some free time now. I&amp;rsquo;m clearing some of my backlog, binging anime, updating my resume and making fictional one.</description>
            <content type="html"><![CDATA[<p>Recently I got laid off, It&rsquo;s not all that bad because I have some more free time now.</p>
<p>Take this time to take a break but not until the point it eats up my savings. (I think I&rsquo;ll be good for a couple of months, should have saved like an ant.)</p>
<p>Oh and my <a href="https://www.upwork.com/o/profiles/users/~01e9d0d8b8a4b0a844/">Upwork page</a> is still alive so you can hire me from there.</p>
<p>Still considering to be a full-time freelancer but there are more cons than being employed but hey it is welcome.</p>
<p>I figured it&rsquo;s not for me. I can&rsquo;t sell myself well yet but practice will make it eventually.</p>
<p>For my real resume and want to contact me for work, please visit my <a href="https://www.linkedin.com/in/johncosio/">LinkedIn</a>.</p>
<p>I&rsquo;m clearing my game <a href="https://backloggery.com/sudoist">backlog</a>, binging anime on Netflix, updating my resume and making fictional one like this one.</p>
<p>There&rsquo;s this <a href="https://en.wikipedia.org/wiki/Food_Wars!:_Shokugeki_no_Soma">Food Wars!: Shokugeki no Soma</a> I watched before until Season 2 then finished the two new seasons. It&rsquo;s still fun even though I finished the manga.</p>
<p>I was thinking of this for a while and listed in a Trello board. Some years ago.</p>
<p>These companies or groups that messed up the world or shady in a way.</p>




<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_500/hugo/jcos.io/trelloresume_tpuqyf.png"
>

<p>Wow&hellip; That intro was lengthy than I expected, enough of my ramblings let&rsquo;s get to it.</p>
<hr>
<h2 id="i-wrote-the-companies-and-moved-to-another-post">I wrote the companies and moved to another post.</h2>
<h3 id="remember-this-is-just-a-figment-of-my-imagination">Remember this is just a figment of my imagination.</h3>
<p>What do you think about my portfolio? Pretty awesome right?</p>
<hr>
<p>Again if you are still here. Thanks a lot!</p>
<p>Appreciate your time.</p>
<p>Hope you enjoyed this mishmash as well as I enjoyed writing it.</p>
<hr>
<p>If you would also like to read the manga I mentioned: Food Wars!: Shokugeki no Soma.
It is already complete so no need to wait for chapters anymore.
You can get the first volume from Amazon with the link below.</p>
<p><a href="https://amzn.to/2SA7GeT">





<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/hugo/jcos.io/affiliates/shokugeki-vol-1_qypsxo.jpg"
>
</a></p>
<h4 id="food-wars-shokugeki-no-soma-vol-1-shokugeki-no-soma-1httpsamznto2sa7get"><a href="https://amzn.to/2SA7GeT">Food Wars!: Shokugeki no Soma, Vol. 1: Shokugeki no Soma (1)</a></h4>
<blockquote>
<p>☝️ <em>I receive a commission from Amazon for purchases made through these links.</em></p>
</blockquote>
<blockquote>
<p><em>This comes with no additional cost and helps me with <del>food</del> Gundam money</em></p>
</blockquote>
<blockquote>
<p><em>Thank you</em></p>
</blockquote>
<p>Clap Trap art by <a href="https://www.deviantart.com/garyckarntzen/art/Sir-Clap-Trap-Wallpaper-330268623">GaryckArntzen</a></p>
]]></content>
        </item>
        
        <item>
            <title>My Résumé (Fictional | Not real)</title>
            <link>https://jcos.io/posts/my-resume-fiction/</link>
            <pubDate>Sun, 16 Feb 2020 07:08:09 +1011</pubDate>
            
            <guid>https://jcos.io/posts/my-resume-fiction/</guid>
            <description>Fictional resume with villainous companies from games and movies.</description>
            <content type="html"><![CDATA[<hr>
<h1 id="john-cosio">John Cosio</h1>
<h2 id="software-engineer--game-developer--researcher">Software Engineer &gt; Game Developer &gt; Researcher</h2>
<hr>
<blockquote>
<h3 id="cyberdyne">Cyberdyne</h3>
<h4 id="--skynet">- Skynet</h4>
<p>Research and development on machine learning for the AI project Skynet</p>
</blockquote>
<hr>
<blockquote>
<h3 id="you-do-not-talk-about-company-name">You do not talk about company name</h3>
<h4 id="--project-mayhem">- Project Mayhem</h4>
<p>I&rsquo;m not so good with math but the goal was to reset every record to 0 so that works with me. Tabula rasa.</p>
</blockquote>
<hr>
<blockquote>
<h3 id="shadaloo">Shadaloo</h3>
<h4 id="--dolls">- Dolls</h4>
<p>In charge of monitoring data analytics from Dolls missions and progress.</p>
</blockquote>
<hr>
<blockquote>
<h3 id="aperture-science-inc">Aperture Science, Inc.</h3>
<h4 id="--glados">- GlaDOS</h4>
<p>Another AI project.. The cake is a lie&hellip;</p>
</blockquote>
<hr>
<blockquote>
<h3 id="umbrella-corporation">Umbrella Corporation</h3>
<h4 id="--j-virus">- J-Virus</h4>
<p>First time venturing into pharmaceuticals and scientific stuff.
Worked on research and creation of a virus for Java but ended up to be effective for other applications.</p>
</blockquote>
<hr>
<blockquote>
<h3 id="skynet">Skynet</h3>
<h4 id="--t-800">- T-800</h4>
<p>Research and development on T-8XX series OS.</p>
<h4 id="--time-travel">- Time travel</h4>
<p>Calibration of time portal with datepicker with time to prevent John Co<del>sio</del>nnor from leading the resistance.
Returning back to Cyberdyne to help again in creating AI.
Need to fix my infinite for loop.</p>
</blockquote>
<hr>
<blockquote>
<h3 id="neo-ark">Neo Ark</h3>
<h4 id="--artificial-neo-mitochondrial-creatures">- Artificial Neo-Mitochondrial Creatures</h4>
<p>Another shady research company tasked me to help in creating enhanced soldiers and mutating people.
Didn&rsquo;t end well&hellip; Happens all the time.</p>
</blockquote>
<hr>
<blockquote>
<h3 id="instatainment">Instatainment</h3>
<h4 id="--crossworlds-mmog">- CrossWorlds MMOG</h4>
<p>Something new and exciting after the previous work. Game development
Helped work with VR experience by making AR Goggles see items only visible to avatars.</p>
</blockquote>
<hr>
<blockquote>
<h3 id="telestrian-industries">Telestrian Industries</h3>
<h4 id="--spray-for-insect-spirits">- Spray for insect spirits</h4>
<p>Research of a chemical spray capable of killing the insect spirits</p>
</blockquote>
<hr>
<blockquote>
<h3 id="shinra-electric-power-company">Shinra Electric Power Company</h3>
<h4 id="--mako-reactors">- Mako Reactors</h4>
<p>Designated in maintaining reactors' cooling systems.
Pretty efficient and low cost but has a risk to spawn weapons and meteors.</p>
</blockquote>
<hr>
<blockquote>
<h3 id="gazel-ministry">Gazel Ministry</h3>
<h4 id="--mass-driver-facility">- Mass Driver Facility</h4>
<p>Researcher on a nanomachine that can remove the genetic limiters placed on the world&rsquo;s population but has side effect that can turn people to mutants.</p>
</blockquote>
<hr>
<blockquote>
<h3 id="the-camerata">The Camerata</h3>
<h4 id="--transistor">- Transistor</h4>
<p>Worked on setting up and customizing the Transistor&rsquo;s functions.
Similar to programming, added basic functions such as <a href="https://transistor.fandom.com/wiki/Get()">Get()</a>, <a href="https://transistor.fandom.com/wiki/Void()">Void()</a>, and so on.</p>
</blockquote>
<hr>
<blockquote>
<h3 id="third-energy">Third Energy</h3>
<h4 id="--dinosaur-migration">- Dinosaur Migration</h4>
<p>Similar to a previous experience which deals with time travel.
However my task is to transport dinosaurs from the Mesozoic era to present time to balance out the ecosystem as all things should be.</p>
</blockquote>
<hr>
<blockquote>
<h3 id="hyperion">Hyperion</h3>
<h4 id="--cl4p-tp">- CL4P-TP</h4>
<p>Worked on claptrap&rsquo;s personality AI. I really enjoyed these robots I made them a banner in my <a href="https://backloggery.com/sudoist">backlog</a>.
I was inspired by the Hyperion&rsquo;s <a href="https://en.wikipedia.org/wiki/Handsome_Jack">president</a> which started out as a low-ranking programmer(like me!)&hellip;</p>
</blockquote>
<p>Shinra Electric Power Co. Logo by <a href="https://www.deviantart.com/draconovich/art/Shinra-Electric-Power-Co-Logo-9200447">Draconovich</a></p>
]]></content>
        </item>
        
        <item>
            <title>My kind of Isekai</title>
            <link>https://jcos.io/posts/my-kind-of-isekai/</link>
            <pubDate>Thu, 23 Jan 2020 07:08:09 +1011</pubDate>
            
            <guid>https://jcos.io/posts/my-kind-of-isekai/</guid>
            <description>I got into a rabbit hole or a Reddit post then I was thinking of editing my photo to be an &lt;code&gt;ANIME&lt;/code&gt; main character.</description>
            <content type="html"><![CDATA[<h3 id="ahhh-anime-dont-we-all-thought-of-being-a-main-character-before">Ahhh anime, don&rsquo;t we all thought of being a main character before?</h3>
<p>When I was a kid I remember first anime I watched was Dragon Ball.</p>
<p>Then I wanted to be like Goku, then Vegeta was introduced, he was not a good guy to say the least.
He destroys planets and kills people but he was awesome I think he&rsquo;s cooler than Goku.</p>
<p>So just a regular day.
Checking latest chapters of Mangas and Reddit for spoilers.</p>
<p>Well, recently I&rsquo;m seeing lot of stories about Isekai or moving to another world.
Usually by accidentally getting sucked by a portal or some thing, think of Jumanji.</p>
<p>I remember Fushigi Yuugi and The Vision of Escaflowne for this genre.
First one is more for girls and Escaflowne had robots and dragons and other cool stuff.
These were shown on our local tv (GMA 7), I am not sure what the story is but I remember the titles.</p>
<h4 id="anyway-to-get-to-the-point-i-thought-what-if-i-were-to-get-transported-to-an-anime-world">Anyway to get to the point, I thought what if I were to get transported to an anime world</h4>
<p>What should be good, a gaming world like <a href="https://myanimelist.net/anime/11757/Sword_Art_Online?q=sword%20art%20online">Sword Art Online</a> or something more messed up like <a href="https://myanimelist.net/manga/98820/Dungeon_Seeker?q=dungeon%20seeker">Dungeon Seeker</a>.</p>
<p>Then I stumbled into <a href="https://www.reddit.com/r/Animemes/comments/94vwbt/how_to_spot_the_hentai_protagonist/">this post</a>, I&rsquo;m not sure how, I forgot&hellip;</p>
<h4 id="thats-it">That&rsquo;s it!</h4>
<p>If there was some kind of magical phenomenon that transports me to another world.
It is clear, I know what I want if there is a choice.
I want to be in a different world where the main characters have their hair hiding their eyes, if you know what I mean.</p>
<p>There was a sudden inspiration, I want to do this.
I can edit my face to have hidden eyes hehehe.</p>
<h4 id="here-is-what-happened-next">Here is what happened next:</h4>
<ol>
<li>Took a selfie. Yeah I don&rsquo;t do this a lot, I think it&rsquo;s kind embarrassing but for the cause I got thru it.</li>
</ol>




<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_500/hugo/jcos.io/photo-to-gentai_tiwifo.jpg"
>

<ol start="2">
<li>
<p>Edit my photo, add a little more hair to cover the forehead and eyes then add the signature shadows. I have GIMP in hand so we&rsquo;ll go with that.</p>
</li>
<li>
<p>Edit the image with the all star main characters from above. I don&rsquo;t know most of these guys or seen their series.</p>
</li>
<li>
<p>Slap my main character face in there.</p>
</li>
<li>
<p>Write this blog post because why not.</p>
</li>
</ol>




<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_500/hugo/jcos.io/photo-to-gentai3_kyjjjm.png"
>

<p>I name this <strong>Sir Atbu</strong> sama. Here we have the first masterpiece of photo editing work for 2020.</p>
<p>I chuckled to that while typing. Great way to start updating this site again.</p>
<p>This was image was fun to make and something different from coding.</p>
<p>That&rsquo;s all. I can&rsquo;t think of anything else. Bye.</p>
<p>Oh and if you are here. Thanks a lot!</p>
<p>I don&rsquo;t think people actually go here, also according to analytics. hehehe</p>
]]></content>
        </item>
        
        <item>
            <title>Designing my logo</title>
            <link>https://jcos.io/posts/designing-my-logo/</link>
            <pubDate>Wed, 12 Jun 2019 07:08:09 +1011</pubDate>
            
            <guid>https://jcos.io/posts/designing-my-logo/</guid>
            <description>Made my logo using GIMP then Inkscape. Notice how it looks like a terminal icon then I’ve added my initials JC there?</description>
            <content type="html"><![CDATA[<h3 id="made-my-logo-using-gimp-then-inkscape">Made my logo using GIMP then Inkscape.</h3>
<p>These tools have been on a roll especially <a href="https://www.gimp.org/">GIMP</a>.</p>
<p>I use it all the time to edit my <a href="/tags/gimp/">Gundam photos</a> for example.</p>
<h4 id="gimp-is-like-photoshop">GIMP is like Photoshop.</h4>
<p>You can edit photos and add filters and stuff but it&rsquo;s <strong>FREE</strong>!</p>
<p>Adobe tools are great but the price is too high. I&rsquo;m only doing graphics from time to time mostly for hobbies.</p>
<p>It doesn&rsquo;t make sense to shell out money for that while GIMP does what I need.</p>
<p>I&rsquo;m only scratching the surface with basic stuff for now.</p>
<h4 id="inkscapehttpsinkscapeorg-is-for-creating-vector-graphics"><a href="https://inkscape.org/">Inkscape</a> is for creating vector graphics.</h4>
<p>Only used it for that to create an icon of this logo.</p>
<p>More experienced people might use it to its full potential but hey it&rsquo;s also <strong>FREE</strong>!</p>
<p>Can&rsquo;t complain about these tools.</p>
<p>So give them a try, who knows they might be useful to you too.</p>




<img
    class="post-image"
    srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/logo_inspiration_xfeokd.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/logo_inspiration_xfeokd.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/logo_inspiration_xfeokd.png
    '
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/logo_inspiration_xfeokd.png"
>

<p>Notice how it looks like a terminal icon then I’ve added my initials JC there?</p>
<p>I’m happy with it, feeling so creative here.</p>
<p>I don&rsquo;t know if there could be tons like that online.</p>
<p>Nothing much to see here.</p>
<p>Sharing a bit about my logo and how it fits the theme of this site.</p>
]]></content>
        </item>
        
        <item>
            <title>Switching from WordPress to Hugo</title>
            <link>https://jcos.io/posts/switching-from-wordpress-to-hugo/</link>
            <pubDate>Tue, 11 Jun 2019 07:08:09 +1011</pubDate>
            
            <guid>https://jcos.io/posts/switching-from-wordpress-to-hugo/</guid>
            <description>I&amp;rsquo;ve been busy lately with migrating my site from WordPress to Hugo. Here are some points on why I made the switch.</description>
            <content type="html"><![CDATA[<h3 id="hey-hows-it-going">Hey how&rsquo;s it going?</h3>
<p>I&rsquo;ve been busy lately with migrating my site from WordPress to Hugo.
Playing around with Digital Ocean droplets, Setting up Laradock,
Laravel projects with CI tools like Travis and Bitbucket Pipelines.</p>
<h3 id="how-did-i-come-to-the-decision-to-leave-wordpress">How did I come to the decision to leave WordPress</h3>
<p>Well I&rsquo;ve been doing a lot of WordPress for a long time.</p>
<p>Not entirely though since for now I am having second thoughts to recommend Hugo to clients even with Forestry.</p>
<p>There will still be lots of use for WordPress.</p>
<p>The problem is after you create a child theme, you are not sure if the parent will still be
updated unless they are really big.</p>
<p>I&rsquo;ve haven&rsquo;t touch my site that much after moving it to Digital Ocean and testing out the <a href="https://roots.io/">Roots</a> stack.</p>
<p>The theme I was using was Beans framework with <a href="https://roots.io/bedrock/">Bedrock</a> and <a href="https://roots.io/trellis/">Trellis</a>.</p>
<p>This was working for a while until editing something or updating plugins or WordPress itself became a hassle.</p>
<p>Everything has to go into composer then you do Trellis commands to push it to your server.
Something like <code>trellis deploy production xxx</code></p>
<p>Not to mention that the local environment for Trellis is <a href="https://www.vagrantup.com/">Vagrant</a> when almost everything nowadays is moving towards Docker.</p>
<p>This took me a couple of weeks to get working.
My setup was I am on a Lubuntu 18.04 laptop then Digital Ocean for server.</p>
<p>Alright I&rsquo;m getting out of topic.</p>
<h4 id="so-i-was-trying-to-make-a-new-droplet-with-laradock">So I was trying to make a new Droplet with Laradock.</h4>
<p>The plan was to have some WordPress sites also on Laradock along with new Laravel Projects.</p>
<p>Getting WordPress to work was successful but when I tried my site(This one) it does not work when changing to my theme.</p>
<p>Following standard debugging of WordPress to use default theme and turning off plugins the culprit was the theme itself.</p>
<p>This happens after I import my files. I am using the WordPress importer.</p>
<p>Ok so at this point I am tired of things not working. I may now know what I am doing.</p>
<p>I&rsquo;ve exhausted multiple solutions from Stack Overflow.</p>
<p>There is this option to look for a new base theme since Beans is not actively being updated anymore.
A bit sad since this was promising some years ago.</p>
<p>I&rsquo;m checking out <a href="https://roots.io/sage/">Sage</a> it uses blade templating same with Laravel.</p>
<p>The thing is when I go this route the things are still the same.</p>
<h4 id="then-while-surfing-the-vast-oceans-of-the-internetmostly-google-i-came-upon-static-site-generators-and-hugo">Then while surfing the vast oceans of the internet(mostly Google) I came upon static site generators and Hugo</h4>
<p>When reading the documentation there are a few points that got me interested.</p>
<ul>
<li>
<p>Hugo is using Go or Go Language</p>
<ul>
<li>Haven&rsquo;t heard of this before but looks like blade templates.</li>
<li>New language to learn and use, that&rsquo;s a plus</li>
</ul>
</li>
<li>
<p>Hugo has great themes ready to use</p>
</li>
<li>
<p>It is fast since they are static sites</p>
</li>
<li>
<p>Can be hosted anywhere</p>
</li>
<li>
<p>Writing posts and pages are done by using Markdown</p>
<ul>
<li>The new WordPress editor are doing that</li>
<li>Don&rsquo;t like the feel of new page builder like blocks so might as well give this a try</li>
<li>Markdown seems simpler to write as you get more familiar. Used in Github, Jira, etc.</li>
</ul>
</li>
</ul>
<p>After reading and installing it one weekend I got hooked.</p>
<p><a href="https://github.com/sudoist">



<img
    class="post-image"
    srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/hugo_github_c3vz7o.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/hugo_github_c3vz7o.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/hugo_github_c3vz7o.png
    '
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/hugo_github_c3vz7o.png"
>
</a></p>
<p>There are lots of things to do. Doing automatic deploys on commit and more.</p>
<h3 id="further-development">Further development</h3>
<p>I am using the issues in Github to add things needed in this site.</p>
<p>It is easier since the code and blog itself are in one place.</p>
<h3 id="quick-recap-of-my-setup">Quick recap of my setup</h3>
<p>These are what I used for this site. I think that&rsquo;s all but will update later when I forgot some.</p>
<p><a href="https://gohugo.io/">Hugo</a> +
<a href="https://m.do.co/c/83cff1ac53a7">Digital Ocean</a> +
<a href="http://laradock.io/">Laradock</a> +
<a href="https://themes.gohugo.io/hugo-theme-hello-friend-ng/">hello-friend-ng theme</a> +
<a href="https://www.fancyapps.com/fancybox/3/">Fancybox</a> +
<a href="https://cloudinary.com/invites/lpov9zyyucivvxsnalc5/j0ngsbsm3znc0tpfjaw2">Cloudinary</a> +
<a href="https://forestry.io/">Forestry</a> +
<a href="https://www.talkyard.io/">Talkyard</a> +
<a href="https://travis-ci.org/">Travis CI</a></p>
<p>Most can be authenticated with your Github account, with this my Github got a lot of important points.</p>
<p>I will be writing more details on the tools and other stuff I used but that will be on another post.</p>
<h3 id="commercial-time">Commercial time</h3>
<p>Thank you for reaching this part.</p>
<p>Not sure if this was interesting. Just rambling about my experience on switching.</p>
<p>So far, I&rsquo;m happy with Hugo and creating new posts and pages.</p>
<p>Would like to take this time to mention a couple of sites that would certainly support me run this blog.</p>
<h5 id="digital-ocean">Digital Ocean</h5>
<p>Easy cloud hosting for developers.</p>
<p>Create servers on 1 click they play around with them then delete if you messed it up without repair then repeat.</p>
<h5 id="cloudinary">Cloudinary</h5>
<p>Image management tools. We can upload our files here instead of making our repo bulky with cover and gallery images.</p>
<blockquote>
<p>☝️ <em>I receive a commission from Digital Ocean and incentives from Cloudinary
for purchases made through these links.</em></p>
</blockquote>
<blockquote>
<p><em>This comes with no additional cost and helps me with <del>food</del> Gundam money</em></p>
</blockquote>
<blockquote>
<p><em>Thank you</em></p>
</blockquote>
<h3 id="tldr">TLDR</h3>
<p>Not able to make old theme and updated WordPress to work so instead of redoing site with new theme,
moved over to hugo made a blog static.</p>
<p>Learned a couple of new stuff along the way.</p>
<p>To check out the messed up WordPress install you can visit <a href="https://wp.johncosio.com/">https://wp.johncosio.com/</a></p>
<p>I also backed up the whole working site as static thanks to [HTTrack](<a href="https://www.httrack.com/">https://www.httrack.com/</a>.</p>
<p>It can be visited at <a href="https://static.jcos.io/">https://static.jcos.io/</a></p>
<p>What do you think?</p>
<p>Are you considering moving to static site generators like VuePress, Jekyll and Hugo?</p>
<p>Let&rsquo;s talk in the comments below.</p>
]]></content>
        </item>
        
        <item>
            <title>Islas de Gigantes</title>
            <link>https://jcos.io/posts/islas-de-gigantes/</link>
            <pubDate>Fri, 10 May 2019 03:39:40 +0000</pubDate>
            
            <guid>https://jcos.io/posts/islas-de-gigantes/</guid>
            <description>Sharing my Islas de Gigantes photos on Unsplash</description>
            <content type="html"><![CDATA[<p><a href="https://unsplash.com/search/photos/islas-de-gigantes%2C-carles%2C-philippines">Islas de Gigantes, Carles, Philippines</a></p>
<p>Hello,</p>
<p>Just sharing this photo here since it’s getting some traction in <a href="https://unsplash.com/@jcosio">Unsplash</a>.</p>
<p>This is one of my photos taken when I was travelling to Ilo Ilo last year.</p>
<p>I was too lazy to write something about the trip with the other photos.</p>
<p>Feels good to see this being used by other people.</p>
<h3 id="please-do-check-out-anitas">Please do check out Anita&rsquo;s:</h3>
<h4 id="45-of-the-most-stunning-paradises-around-the-worldhttpsanitahendriekacom45-of-the-most-stunning-paradises-around-the-world"><a href="https://anitahendrieka.com/45-of-the-most-stunning-paradises-around-the-world">45 Of The Most Stunning Paradises Around The World</a></h4>
<p>Maybe I&rsquo;ll try to add some more blogs that use my photos.</p>
<p>Happy travelling!</p>
<p>Photo by <a href="https://unsplash.com/photos/xCZ8ynsCfrw?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">John Cosio</a> on <a href="https://unsplash.com/@jcosio?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Unsplash</a> 😉</p>
]]></content>
        </item>
        
        <item>
            <title>GIMP Complete: SD Gundam EX-Standard Sinanju</title>
            <link>https://jcos.io/posts/gimp-complete-sd-gundam-ex-standard-sinanju/</link>
            <pubDate>Thu, 25 Apr 2019 03:21:55 +0000</pubDate>
            
            <guid>https://jcos.io/posts/gimp-complete-sd-gundam-ex-standard-sinanju/</guid>
            <description>Photo editing SD Gundam EX-Standard Sinanju with GIMP. Playing around with changing the Gundam’s color.</description>
            <content type="html"><![CDATA[<!-- raw HTML omitted -->
<!-- raw HTML omitted -->
<pre><code>&lt;p&gt;
  Trying something different with the layouts.
&lt;/p&gt;

&lt;p&gt;
  Also playing around with changing the Gundam&amp;#8217;s color with this one.
&lt;/p&gt;
</code></pre>
<!-- raw HTML omitted -->
<h2 id="before">Before</h2>




<img
    class="post-image"
    srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/20190415_020144_oaoonp.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/20190415_020144_oaoonp.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/20190415_020144_oaoonp.jpg
    '
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/20190415_020144_oaoonp.jpg"
>

<h2 id="after">After</h2>




<img
    class="post-image"
    srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/scaled_sinanju_dddejn.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/scaled_sinanju_dddejn.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/scaled_sinanju_dddejn.png
    '
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/scaled_sinanju_dddejn.png"
>

<p>A quick edit with colors.</p>
<p>Changing from red to blue and the guns near the eyes.</p>
<p>More practice with glowing things like the gun scopes and eye.</p>
<p>Sometime in the future I would like to paint this.</p>
<p>Also I’ve recorded the editing so I can post some speed edit videos. Yey!</p>
<p>One more SD remaining from initial stocks (Might buy 1 last more).</p>
<p>Unicorn Phenex up next!</p>




<img
    class="post-image"
    srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/initial-kits_znobnw.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/initial-kits_znobnw.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/initial-kits_znobnw.jpg
    '
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/initial-kits_znobnw.jpg"
>

<p>Saving the Magnum for last in this set.</p>
<hr>
<p>If you would also like to build this kit you can get it on Amazon with the link below.</p>
<p><a href="https://amzn.to/37C5ms0">





<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/hugo/jcos.io/sinanju_b2b9fm.jpg"
>
</a></p>
<h4 id="model-kit-sd-gundam-ex-standard-sinanjuhttpsamznto37c5ms0"><a href="https://amzn.to/37C5ms0">Model Kit: SD Gundam EX-Standard Sinanju</a></h4>
<blockquote>
<p>☝️ <em>I receive a commission from Amazon for purchases made through these links.</em></p>
</blockquote>
<blockquote>
<p><em>This comes with no additional cost and helps me with <del>food</del> Gundam money</em></p>
</blockquote>
<blockquote>
<p><em>Thank you</em></p>
</blockquote>
]]></content>
        </item>
        
        <item>
            <title>GIMP Complete: SD Gundam Cross Silhouette Crossbone Gundam X1</title>
            <link>https://jcos.io/posts/gimp-complete-sd-gundam-cross-silhouette-crossbone-gundam-x1/</link>
            <pubDate>Wed, 24 Apr 2019 00:00:00 +0000</pubDate>
            
            <guid>https://jcos.io/posts/gimp-complete-sd-gundam-cross-silhouette-crossbone-gundam-x1/</guid>
            <description>Photo editing SD Gundam Cross Silhouette Crossbone Gundam X1 with GIMP.</description>
            <content type="html"><![CDATA[<p>Hello, here we are again with another GIMP Complete.</p>
<p>I finished over during the holidays. Had some problems using my Mother’s laptop. It was just shutting down without warning.</p>
<p>Can’t blame the laptop since it’s really old. Stopped running Windows XP and had to reformat with Linux.</p>
<p><a href="http://www.lxle.net/">LXLE</a> made it usable again but that’s a story for another time.</p>
<h2 id="setting-up">Setting up</h2>
<p>I need to get some base to pose the Gundam in the air.</p>
<p>I’ve tried with a pink background with a folder then to make it stand with a chopstick in between two dumbbell.</p>
<p>Well gotta improvise until a proper base.</p>


<style>
  div.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  div.gallery a {
    object-fit: cover;
    margin: 5px;
    display: flex;
  }

  div.gallery a img {
    height: 250px;
    object-fit: contain;
    flex-grow: 1;
  }

</style>

<script src="//code.jquery.com/jquery-3.3.1.min.js"></script>

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css" />
<script src="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.js"></script>

<div class="gallery">

  
  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/gimp-sd-xbones/xboneswbg_hwkqnm.png">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/gimp-sd-xbones/xboneswbg_hwkqnm.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/gimp-sd-xbones/xboneswbg_hwkqnm.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/gimp-sd-xbones/xboneswbg_hwkqnm.png
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/gimp-sd-xbones/xboneswbg_hwkqnm.png"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/gimp-sd-xbones/20190417_223657-e1556132094843_o9opgf.jpg">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/gimp-sd-xbones/20190417_223657-e1556132094843_o9opgf.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/gimp-sd-xbones/20190417_223657-e1556132094843_o9opgf.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/gimp-sd-xbones/20190417_223657-e1556132094843_o9opgf.jpg
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/gimp-sd-xbones/20190417_223657-e1556132094843_o9opgf.jpg"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/gimp-sd-xbones/20190417_223915_re5lxb.jpg">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/gimp-sd-xbones/20190417_223915_re5lxb.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/gimp-sd-xbones/20190417_223915_re5lxb.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/gimp-sd-xbones/20190417_223915_re5lxb.jpg
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/gimp-sd-xbones/20190417_223915_re5lxb.jpg"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/gimp-sd-xbones/20190417_225518_y25izu.jpg">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/gimp-sd-xbones/20190417_225518_y25izu.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/gimp-sd-xbones/20190417_225518_y25izu.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/gimp-sd-xbones/20190417_225518_y25izu.jpg
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/gimp-sd-xbones/20190417_225518_y25izu.jpg"
    >
    <br>

  </a>

  

</div>

<h2 id="before">Before</h2>




<img
    class="post-image"
    srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/gimp-sd-xbones/xbone1_xplaee.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/gimp-sd-xbones/xbone1_xplaee.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/gimp-sd-xbones/xbone1_xplaee.jpg
    '
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/gimp-sd-xbones/xbone1_xplaee.jpg"
>

<h2 id="after">After</h2>




<img
    class="post-image"
    srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/gimp-sd-xbones/xboneswbg_hwkqnm.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/gimp-sd-xbones/xboneswbg_hwkqnm.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/gimp-sd-xbones/xboneswbg_hwkqnm.png
    '
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/gimp-sd-xbones/xboneswbg_hwkqnm.png"
>

<p>There are some new things I’ve done here.</p>
<p>Multiple color changes of parts.</p>
<p>What I like the most was the chest since that ended up looking normal.</p>
<p>I’ve also did a lot of detailing especially in the face and the Crossbones.</p>
<p>Tried changing the gun to be a lightsaber but it doesn’t look so good.</p>
<p>This was take from the Sinanju to have a dual wielding effect.</p>
<p>Didn’t remove the background cleanly so I used the white background to make it look like it was very bright.</p>
<hr>
<p>If you would also like to build this kit you can get it on Amazon with the link below.</p>
<p>This kit only comes in SD frame, Cross Silhouette frame sold separately.</p>
<p>I don&rsquo;t have one yet. 😛</p>
<p><a href="https://amzn.to/2T0zqIO">





<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/hugo/jcos.io/affiliates/sdcrossbones_ir20cq.jpg"
>
</a></p>
<h4 id="model-kit-sd-gundam-cross-silhouette-crossbone-gundam-x1httpsamznto2t0zqio"><a href="https://amzn.to/2T0zqIO">Model Kit: SD Gundam Cross Silhouette Crossbone Gundam X1</a></h4>
<blockquote>
<p>☝️ <em>I receive a commission from Amazon for purchases made through these links.</em></p>
</blockquote>
<blockquote>
<p><em>This comes with no additional cost and helps me with <del>food</del> Gundam money</em></p>
</blockquote>
<blockquote>
<p><em>Thank you</em></p>
</blockquote>
]]></content>
        </item>
        
        <item>
            <title>Build Complete: SD Gundam EX-Standard Sinanju</title>
            <link>https://jcos.io/posts/build-complete-sd-gundam-ex-standard-sinanju-sd/</link>
            <pubDate>Tue, 23 Apr 2019 00:00:00 +0000</pubDate>
            
            <guid>https://jcos.io/posts/build-complete-sd-gundam-ex-standard-sinanju-sd/</guid>
            <description>Building SD Gundam EX-Standard Sinanju.</description>
            <content type="html"><![CDATA[<p>Completed another SD kit.</p>
<p>Getting the hang of it now.</p>
<p>My brother has been building an HG kit and he said it took him around 3 hours or more.</p>
<p>I&rsquo;m looking at 2 more SDs then going for an HG or straight to my MG on stand by.</p>
<hr>
<p>If you would also like to build this kit you can get it on Amazon with the link below.</p>
<p><a href="https://amzn.to/37C5ms0">





<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/hugo/jcos.io/sinanju_b2b9fm.jpg"
>
</a></p>
<h4 id="model-kit-sd-gundam-ex-standard-sinanjuhttpsamznto37c5ms0"><a href="https://amzn.to/37C5ms0">Model Kit: SD Gundam EX-Standard Sinanju</a></h4>
<blockquote>
<p>☝️ <em>I receive a commission from Amazon for purchases made through these links.</em></p>
</blockquote>
<blockquote>
<p><em>This comes with no additional cost and helps me with <del>food</del> Gundam money</em></p>
</blockquote>
<blockquote>
<p><em>Thank you</em></p>
</blockquote>
]]></content>
        </item>
        
        <item>
            <title>GIMP Complete: SD Gundam EX-Standard Gundam Deathscythe-Hell EW</title>
            <link>https://jcos.io/posts/gimp-complete-sd-gundam-ex-standard-gundam-deathscythe-hell-ew-sd/</link>
            <pubDate>Tue, 23 Apr 2019 00:00:00 +0000</pubDate>
            
            <guid>https://jcos.io/posts/gimp-complete-sd-gundam-ex-standard-gundam-deathscythe-hell-ew-sd/</guid>
            <description>Photo editing SD Gundam EX-Standard Gundam Deathscythe-Hell EW with GIMP.</description>
            <content type="html"><![CDATA[<p>This is my first take on painting with GIMP.</p>




<img
    class="post-image"
    srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/gimp-sd-deathscythe-ew/scaled_deathscythe-p1_kbhaah.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/gimp-sd-deathscythe-ew/scaled_deathscythe-p1_kbhaah.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/gimp-sd-deathscythe-ew/scaled_deathscythe-p1_kbhaah.png
    '
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/gimp-sd-deathscythe-ew/scaled_deathscythe-p1_kbhaah.png"
>

<p>Tried editing the background out and replacing with space.</p>
<p>Subject is the Gundam Deathscythe-Hell EW version.</p>
<p>Practicing adding glowing things to eyes and the scythe.</p>
<h2 id="before">Before</h2>




<img
    class="post-image"
    srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/gimp-sd-deathscythe-ew/scaled_deathscythe-p2-1.0-orig_jyzn5q.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/gimp-sd-deathscythe-ew/scaled_deathscythe-p2-1.0-orig_jyzn5q.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/gimp-sd-deathscythe-ew/scaled_deathscythe-p2-1.0-orig_jyzn5q.png
    '
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/gimp-sd-deathscythe-ew/scaled_deathscythe-p2-1.0-orig_jyzn5q.png"
>

<h2 id="after">After</h2>




<img
    class="post-image"
    srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/gimp-sd-deathscythe-ew/deathscythe-p2-1.0_lyx0uo.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/gimp-sd-deathscythe-ew/deathscythe-p2-1.0_lyx0uo.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/gimp-sd-deathscythe-ew/deathscythe-p2-1.0_lyx0uo.png
    '
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/gimp-sd-deathscythe-ew/deathscythe-p2-1.0_lyx0uo.png"
>

<p>I got some more posts coming up. Cleaning up the Gundam Crossbones and working on the SD Sinanju.</p>
<p>Still 2 more SD then moving on to my MG kit or get some HG for practice.</p>
<hr>
<p>If you would also like to build this kit you can get it on Amazon with the link below.</p>
<p><a href="https://amzn.to/2P5csyL">



<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_500/hugo/jcos.io/gimp-sd-deathscythe-ew/20190406_134725_isgzrg.jpg"
>
</a></p>
<h4 id="model-kit-sd-gundam-ex-standard-gundam-deathscythe-hell-ewhttpsamznto2p5csyl"><a href="https://amzn.to/2P5csyL">Model Kit: SD Gundam EX-Standard Gundam Deathscythe-Hell EW</a></h4>
<blockquote>
<p>☝️ <em>I receive a commission from Amazon for purchases made through these links.</em></p>
</blockquote>
<blockquote>
<p><em>This comes with no additional cost and helps me with <del>food</del> Gundam money</em></p>
</blockquote>
<blockquote>
<p><em>Thank you</em></p>
</blockquote>
<hr>
<p>This is actually quite relaxing. Haven’t opened Steam in a while.</p>
<p>Space background image in edited photo by <a href="https://unsplash.com/@alex_andrews?utm_medium=referral&amp;utm_campaign=photographer-credit&amp;utm_content=creditBadge">Alexander Andrews</a></p>
]]></content>
        </item>
        
        <item>
            <title>GIMP Complete: SD Gundam EX-Standard Wing Gundam Zero EW</title>
            <link>https://jcos.io/posts/gimp-complete-wing-gundam-ew/</link>
            <pubDate>Tue, 23 Apr 2019 00:00:00 +0000</pubDate>
            
            <guid>https://jcos.io/posts/gimp-complete-wing-gundam-ew/</guid>
            <description>Photo editing SD Gundam EX-Standard Wing Gundam Zero EW with GIMP.</description>
            <content type="html"><![CDATA[<h4 id="model-kit-sd-gundam-ex-standard-wing-gundam-zero-ew">Model Kit: <a href="#">SD Gundam EX-Standard Wing Gundam Zero EW</a></h4>
<p>So after looking around on how to paint and what best way to do this, I ended up coloring and working on this using my computer.</p>
<p>This is the previous SD we built – <a href="#">Wing Gundam EW</a></p>
<h2 id="before">Before</h2>




<img
    class="post-image"
    srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/wing-p1_fp1me2.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/wing-p1_fp1me2.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/wing-p1_fp1me2.png
    '
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/wing-p1_fp1me2.png"
>

<h2 id="after">After</h2>




<img
    class="post-image"
    srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/wing-p2_z9hazr.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/wing-p2_z9hazr.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/wing-p2_z9hazr.png
    '
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/wing-p2_z9hazr.png"
>

<p>Cleaned up some nubs, changes colors and a lot more easier done.</p>
<p>Pros of using computer</p>
<ul>
<li>Cheaper I didn’t have to buy any paint</li>
<li>Faster, it is seen asap. Does not need to wait for paint to dry.</li>
<li>Can look really good depending on skill level. (Still starting out, my second shot at this)</li>
<li>Can easily remove nubs as well</li>
</ul>
<p>Cons</p>
<ul>
<li>Can’t really display the finished product since only digital</li>
<li>Sometimes it’s hard to use mouse with drawings</li>
<li>That’s all I can think for now</li>
</ul>
<hr>
<p>If you would also like to build this kit you can get it on Amazon with the link below.</p>
<p><a href="https://amzn.to/2HLLR65">





<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/hugo/jcos.io/affiliates/10389441_fltkom.jpg"
>
</a></p>
<h4 id="model-kit-sd-gundam-ex-standard-wing-gundam-zero-ewhttpsamznto2hllr65"><a href="https://amzn.to/2HLLR65">Model Kit: SD Gundam EX-Standard Wing Gundam Zero EW</a></h4>
<blockquote>
<p>☝️ <em>I receive a commission from Amazon for purchases made through these links.</em></p>
</blockquote>
<blockquote>
<p><em>This comes with no additional cost and helps me with <del>food</del> Gundam money</em></p>
</blockquote>
<blockquote>
<p><em>Thank you</em></p>
</blockquote>
<hr>
<h3 id="helpful-video-i-saw-so-far-which-i-used-for-reference">Helpful video I saw so far which I used for reference</h3>

<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
  <iframe src="https://www.youtube.com/embed/8ZRbiXk-nJo" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" allowfullscreen title="YouTube Video"></iframe>
</div>

<p>He does toy photography tutorials and stuff.</p>
<p>Tools for editing</p>
<ul>
<li>GIMP</li>
</ul>
<p>GIMP because it’s free and this is only a hobby I do when there’s time to spare so no need for Photoshop.</p>
<p>Yeah that’s it for now. Just a lot of googling and see what looks good.</p>
]]></content>
        </item>
        
        <item>
            <title>Build Complete: SD Gundam Cross Silhouette Crossbone Gundam X1</title>
            <link>https://jcos.io/posts/build-complete-sd-gundam-cross-silhouette-crossbone-gundam-x1/</link>
            <pubDate>Sun, 14 Apr 2019 00:00:00 +0000</pubDate>
            
            <guid>https://jcos.io/posts/build-complete-sd-gundam-cross-silhouette-crossbone-gundam-x1/</guid>
            <description>Building SD Gundam Cross Silhouette Crossbone Gundam X1.</description>
            <content type="html"><![CDATA[<p>Here we go again with one of the last SD kits I’m building.</p>
<p>Would want to do some bigger and cooler kits but we’ll see.</p>
<p>Funding is a big constraint, the prices of model kits here are expensive as hell. It’s like they replaced the Yen with Pesos but same currency or more.</p>
<p>Maybe I can get one every payday. Maybe…. or more….</p>
<p>Anyway we have this Gundam Crossbones. He looks like a pirate, I’m not familiar with the story but he sure looks cool.</p>
<h3 id="building-process">Building Process</h3>
<p>These are really getting easier the more kits I work on.</p>
<p>Same old process of cutting the pieces then slapping them together. I didn’t bother taking extra care when removing the pieces since I’ll be editing them out with GIMP later.</p>
<p>A little different with the arms but overall it’s the same.</p>
<hr>
<h3 id="trying-out-something-different">Trying out something different</h3>
<p>I’ve intentionally not added the stickers except for the eyes.</p>
<p>I’ll try working on this later on the computer.</p>
<p>Photo editing the colors and details.</p>
<p>I’ll be calling this Photoshop since that’s what it’s commonly called but I’ll be using <a href="https://www.gimp.org/">GIMP</a> later.</p>
<h3 id="now-to-pose-and-take-some-photos">Now to pose and take some photos</h3>


<style>
  div.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  div.gallery a {
    object-fit: cover;
    margin: 5px;
    display: flex;
  }

  div.gallery a img {
    height: 250px;
    object-fit: contain;
    flex-grow: 1;
  }

</style>

<script src="//code.jquery.com/jquery-3.3.1.min.js"></script>

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css" />
<script src="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.js"></script>

<div class="gallery">

  
  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-xbones/20190415_014707-e1556128725996_dusd6b.jpg">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-xbones/20190415_014707-e1556128725996_dusd6b.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-sd-xbones/20190415_014707-e1556128725996_dusd6b.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-sd-xbones/20190415_014707-e1556128725996_dusd6b.jpg
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-xbones/20190415_014707-e1556128725996_dusd6b.jpg"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-xbones/20190414_233725-e1556128747187_krmrjj.jpg">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-xbones/20190414_233725-e1556128747187_krmrjj.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-sd-xbones/20190414_233725-e1556128747187_krmrjj.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-sd-xbones/20190414_233725-e1556128747187_krmrjj.jpg
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-xbones/20190414_233725-e1556128747187_krmrjj.jpg"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-xbones/320190415_014341_yaslyu.jpg">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-xbones/320190415_014341_yaslyu.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-sd-xbones/320190415_014341_yaslyu.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-sd-xbones/320190415_014341_yaslyu.jpg
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-xbones/320190415_014341_yaslyu.jpg"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-xbones/20190414_230615-e1556128761609_epszal.jpg">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-xbones/20190414_230615-e1556128761609_epszal.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-sd-xbones/20190414_230615-e1556128761609_epszal.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-sd-xbones/20190414_230615-e1556128761609_epszal.jpg
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-xbones/20190414_230615-e1556128761609_epszal.jpg"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-xbones/20190415_014602-e1556128736410_dsdrpl.jpg">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-xbones/20190415_014602-e1556128736410_dsdrpl.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-sd-xbones/20190415_014602-e1556128736410_dsdrpl.jpg,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-sd-xbones/20190415_014602-e1556128736410_dsdrpl.jpg
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-xbones/20190415_014602-e1556128736410_dsdrpl.jpg"
    >
    <br>

  </a>

  

</div>

<hr>
<p>If you would also like to build this kit you can get it on Amazon with the link below.</p>
<p>This kit only comes in SD frame, Cross Silhouette frame sold separately.</p>
<p>I don&rsquo;t have one yet. 😛</p>
<p><a href="https://amzn.to/2T0zqIO">





<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/hugo/jcos.io/affiliates/sdcrossbones_ir20cq.jpg"
>
</a></p>
<h4 id="model-kit-sd-gundam-cross-silhouette-crossbone-gundam-x1httpsamznto2t0zqio"><a href="https://amzn.to/2T0zqIO">Model Kit: SD Gundam Cross Silhouette Crossbone Gundam X1</a></h4>
<blockquote>
<p>☝️ <em>I receive a commission from Amazon for purchases made through these links.</em></p>
</blockquote>
<blockquote>
<p><em>This comes with no additional cost and helps me with <del>food</del> Gundam money</em></p>
</blockquote>
<blockquote>
<p><em>Thank you</em></p>
</blockquote>
]]></content>
        </item>
        
        <item>
            <title>Build Complete: SD Gundam EX-Standard Wing Gundam Zero EW</title>
            <link>https://jcos.io/posts/build-complete-wing-gundam-ew/</link>
            <pubDate>Sat, 13 Apr 2019 00:00:00 +0000</pubDate>
            
            <guid>https://jcos.io/posts/build-complete-wing-gundam-ew/</guid>
            <description>Building SD Gundam EX-Standard Wing Gundam Zero EW.</description>
            <content type="html"><![CDATA[<p>Series: <a href="https://en.wikipedia.org/wiki/Mobile_Suit_Gundam_Wing">Gundam Wing</a></p>
<p>We have another SD from Gundam Wing.</p>
<p>The Gundam of Heero Yuy. It’s really cool but I like the Deathscythe more, personal preference I guess.</p>
<p>I wanted to start painting but currently still looking and learning from tutorials online.</p>
<p>I’m not sure if this Endless Waltz batch of SD have all of the EW Gundams but it would be great to collect all.</p>


<style>
  div.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  div.gallery a {
    object-fit: cover;
    margin: 5px;
    display: flex;
  }

  div.gallery a img {
    height: 250px;
    object-fit: contain;
    flex-grow: 1;
  }

</style>

<script src="//code.jquery.com/jquery-3.3.1.min.js"></script>

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css" />
<script src="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.js"></script>

<div class="gallery">

  
  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-wing-gundam-ew/20190409_221035_kf2fbo.png">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-wing-gundam-ew/20190409_221035_kf2fbo.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-sd-wing-gundam-ew/20190409_221035_kf2fbo.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-sd-wing-gundam-ew/20190409_221035_kf2fbo.png
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-wing-gundam-ew/20190409_221035_kf2fbo.png"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-wing-gundam-ew/20190406_175645_ibip2x.png">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-wing-gundam-ew/20190406_175645_ibip2x.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-sd-wing-gundam-ew/20190406_175645_ibip2x.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-sd-wing-gundam-ew/20190406_175645_ibip2x.png
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-wing-gundam-ew/20190406_175645_ibip2x.png"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-wing-gundam-ew/20190409_222912_y0dgbd.png">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-wing-gundam-ew/20190409_222912_y0dgbd.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-sd-wing-gundam-ew/20190409_222912_y0dgbd.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-sd-wing-gundam-ew/20190409_222912_y0dgbd.png
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-wing-gundam-ew/20190409_222912_y0dgbd.png"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-wing-gundam-ew/20190406_180716_hpoj3s.png">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-wing-gundam-ew/20190406_180716_hpoj3s.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-sd-wing-gundam-ew/20190406_180716_hpoj3s.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-sd-wing-gundam-ew/20190406_180716_hpoj3s.png
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-wing-gundam-ew/20190406_180716_hpoj3s.png"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-wing-gundam-ew/20190406_181006_gyqzug.png">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-wing-gundam-ew/20190406_181006_gyqzug.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-sd-wing-gundam-ew/20190406_181006_gyqzug.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-sd-wing-gundam-ew/20190406_181006_gyqzug.png
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-wing-gundam-ew/20190406_181006_gyqzug.png"
    >
    <br>

  </a>

  

</div>

<hr>
<p>If you would also like to build this kit you can get it on Amazon with the link below.</p>
<p><a href="https://amzn.to/2HLLR65">





<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/hugo/jcos.io/affiliates/10389441_fltkom.jpg"
>
</a></p>
<h4 id="model-kit-sd-gundam-ex-standard-wing-gundam-zero-ewhttpsamznto2hllr65"><a href="https://amzn.to/2HLLR65">Model Kit: SD Gundam EX-Standard Wing Gundam Zero EW</a></h4>
<blockquote>
<p>☝️ <em>I receive a commission from Amazon for purchases made through these links.</em></p>
</blockquote>
<blockquote>
<p><em>This comes with no additional cost and helps me with <del>food</del> Gundam money</em></p>
</blockquote>
<blockquote>
<p><em>Thank you</em></p>
</blockquote>
]]></content>
        </item>
        
        <item>
            <title>Build Complete: SD Gundam EX-Standard Gundam Deathscythe-Hell EW</title>
            <link>https://jcos.io/posts/build-complete-sd-gundam-ex-standard-gundam-deathscythe-hell-ew/</link>
            <pubDate>Thu, 11 Apr 2019 00:00:00 +0000</pubDate>
            
            <guid>https://jcos.io/posts/build-complete-sd-gundam-ex-standard-gundam-deathscythe-hell-ew/</guid>
            <description>Building SD Gundam EX-Standard Gundam Deathscythe-Hell EW.</description>
            <content type="html"><![CDATA[<p>I enjoy building these kits then posing them around then taking photos.</p>
<p>Figured I can edit them to add details then clean up nubs.</p>
<h3 id="picture-time">Picture time!</h3>


<style>
  div.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  div.gallery a {
    object-fit: cover;
    margin: 5px;
    display: flex;
  }

  div.gallery a img {
    height: 250px;
    object-fit: contain;
    flex-grow: 1;
  }

</style>

<script src="//code.jquery.com/jquery-3.3.1.min.js"></script>

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css" />
<script src="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.js"></script>

<div class="gallery">

  
  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-deathscythe-ew/deathscythe-p1-1.0_aq8fem.png">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-deathscythe-ew/deathscythe-p1-1.0_aq8fem.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-sd-deathscythe-ew/deathscythe-p1-1.0_aq8fem.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-sd-deathscythe-ew/deathscythe-p1-1.0_aq8fem.png
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-deathscythe-ew/deathscythe-p1-1.0_aq8fem.png"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-deathscythe-ew/20190406_134725_t8r8pe.png">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-deathscythe-ew/20190406_134725_t8r8pe.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-sd-deathscythe-ew/20190406_134725_t8r8pe.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-sd-deathscythe-ew/20190406_134725_t8r8pe.png
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-deathscythe-ew/20190406_134725_t8r8pe.png"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-deathscythe-ew/20190406_174031_ikew1h.png">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-deathscythe-ew/20190406_174031_ikew1h.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-sd-deathscythe-ew/20190406_174031_ikew1h.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-sd-deathscythe-ew/20190406_174031_ikew1h.png
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-deathscythe-ew/20190406_174031_ikew1h.png"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-deathscythe-ew/20190407_211720_axmacz.png">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-deathscythe-ew/20190407_211720_axmacz.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-sd-deathscythe-ew/20190407_211720_axmacz.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-sd-deathscythe-ew/20190407_211720_axmacz.png
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-deathscythe-ew/20190407_211720_axmacz.png"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-deathscythe-ew/20190406_174351_x4tust.png">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-deathscythe-ew/20190406_174351_x4tust.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-sd-deathscythe-ew/20190406_174351_x4tust.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-sd-deathscythe-ew/20190406_174351_x4tust.png
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-deathscythe-ew/20190406_174351_x4tust.png"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-deathscythe-ew/20190406_150400_xkgd1w.png">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-deathscythe-ew/20190406_150400_xkgd1w.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/build-sd-deathscythe-ew/20190406_150400_xkgd1w.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/build-sd-deathscythe-ew/20190406_150400_xkgd1w.png
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/build-sd-deathscythe-ew/20190406_150400_xkgd1w.png"
    >
    <br>

  </a>

  

</div>

<p>You might want to see the <a href="build-complete-sd-gundam-ex-standard-gundam-deathscythe-hell-ew/">edited version</a></p>
<hr>
<p>If you would also like to build this kit you can get it on Amazon with the link below.</p>
<p><a href="https://amzn.to/2P5csyL">



<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_500/hugo/jcos.io/gimp-sd-deathscythe-ew/20190406_134725_isgzrg.jpg"
>
</a></p>
<h4 id="model-kit-sd-gundam-ex-standard-gundam-deathscythe-hell-ewhttpsamznto2p5csyl"><a href="https://amzn.to/2P5csyL">Model Kit: SD Gundam EX-Standard Gundam Deathscythe-Hell EW</a></h4>
<blockquote>
<p>☝️ <em>I receive a commission from Amazon for purchases made through these links.</em></p>
</blockquote>
<blockquote>
<p><em>This comes with no additional cost and helps me with <del>food</del> Gundam money</em></p>
</blockquote>
<blockquote>
<p><em>Thank you</em></p>
</blockquote>
<hr>
<p>See you again next build.</p>
]]></content>
        </item>
        
        <item>
            <title>New Hobby: Building little plastic Gundam models</title>
            <link>https://jcos.io/posts/building-little-plastic-gundam-models/</link>
            <pubDate>Wed, 10 Apr 2019 00:00:00 +0000</pubDate>
            
            <guid>https://jcos.io/posts/building-little-plastic-gundam-models/</guid>
            <description>Last week I got back from Japan. While I was there, the toys especially Gundam kits seems cheaper so I picked up a couple.</description>
            <content type="html"><![CDATA[<h3 id="some-info">Some info</h3>
<p>Last week I got back from Japan.</p>
<p>While I was there, the toys especially Gundam kits seems cheaper so I picked up a couple.</p>
<h3 id="built-my-first-gundam">Built my first Gundam</h3>
<p>The first Gundam series I saw was Gundam Wing in our local channel GMA 7 when I was a kid.</p>
<p>Duo’s Deathscythe was my favorite and was really lucky I got to pick this up.</p>
<h3 id="building-process">Building Process</h3>
<p>I’ve had some toys like this when I was a little so it was fairly easy.</p>
<p>Follow the instructions even if written in Japanese is clear.</p>
<p>We can follow the images on which parts go to where.</p>
<p>Here’s some pics I took when doing the pieces.</p>


<style>
  div.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  div.gallery a {
    object-fit: cover;
    margin: 5px;
    display: flex;
  }

  div.gallery a img {
    height: 250px;
    object-fit: contain;
    flex-grow: 1;
  }

</style>

<script src="//code.jquery.com/jquery-3.3.1.min.js"></script>

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css" />
<script src="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.js"></script>

<div class="gallery">

  
  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_145636_wuwam7.png">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_145636_wuwam7.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/building-little-plastic-gundam-models/20190406_145636_wuwam7.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/building-little-plastic-gundam-models/20190406_145636_wuwam7.png
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_145636_wuwam7.png"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_150522_s75iso.png">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_150522_s75iso.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/building-little-plastic-gundam-models/20190406_150522_s75iso.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/building-little-plastic-gundam-models/20190406_150522_s75iso.png
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_150522_s75iso.png"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_174858_lnwr12.png">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_174858_lnwr12.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/building-little-plastic-gundam-models/20190406_174858_lnwr12.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/building-little-plastic-gundam-models/20190406_174858_lnwr12.png
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_174858_lnwr12.png"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_144512_mw2gwu.png">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_144512_mw2gwu.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/building-little-plastic-gundam-models/20190406_144512_mw2gwu.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/building-little-plastic-gundam-models/20190406_144512_mw2gwu.png
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_144512_mw2gwu.png"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_135518_idv4ji.png">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_135518_idv4ji.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/building-little-plastic-gundam-models/20190406_135518_idv4ji.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/building-little-plastic-gundam-models/20190406_135518_idv4ji.png
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_135518_idv4ji.png"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_150400_xj24k3.png">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_150400_xj24k3.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/building-little-plastic-gundam-models/20190406_150400_xj24k3.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/building-little-plastic-gundam-models/20190406_150400_xj24k3.png
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_150400_xj24k3.png"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_142418_v4ayse.png">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_142418_v4ayse.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/building-little-plastic-gundam-models/20190406_142418_v4ayse.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/building-little-plastic-gundam-models/20190406_142418_v4ayse.png
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_142418_v4ayse.png"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_143643_srlmwe.png">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_143643_srlmwe.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/building-little-plastic-gundam-models/20190406_143643_srlmwe.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/building-little-plastic-gundam-models/20190406_143643_srlmwe.png
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_143643_srlmwe.png"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_134801_zn3b3u.png">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_134801_zn3b3u.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/building-little-plastic-gundam-models/20190406_134801_zn3b3u.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/building-little-plastic-gundam-models/20190406_134801_zn3b3u.png
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_134801_zn3b3u.png"
    >
    <br>

  </a>

  

  <a data-fancybox="gallery" href="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_141920_ozle4i.png">
    <img
      srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_141920_ozle4i.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/building-little-plastic-gundam-models/20190406_141920_ozle4i.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/building-little-plastic-gundam-models/20190406_141920_ozle4i.png
      '
      src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/building-little-plastic-gundam-models/20190406_141920_ozle4i.png"
    >
    <br>

  </a>

  

</div>

<h3 id="i-need-more">I need more</h3>
<p>I think I’m addicted to this new hobby.</p>
<p>I’ve been planning to collect Gundams before since I had one kit when I was a kid and then realized that they’re expensive.</p>
<p>Currently reading and watching tutorials on painting and other stuff.</p>
<p>I’m not contented with the stickers when looking at other cool builds on the internet.</p>
<p>Also haven’t played a game when I got back.</p>
<p>Working on other SDs to get the hang of it.</p>
<hr>
<p>If you would also like to build this kit you can get it on Amazon with the link below.</p>
<p><a href="https://amzn.to/2P5csyL">



<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_500/hugo/jcos.io/gimp-sd-deathscythe-ew/20190406_134725_isgzrg.jpg"
>
</a></p>
<h4 id="model-kit-sd-gundam-ex-standard-gundam-deathscythe-hell-ewhttpsamznto2p5csyl"><a href="https://amzn.to/2P5csyL">Model Kit: SD Gundam EX-Standard Gundam Deathscythe-Hell EW</a></h4>
<blockquote>
<p>☝️ <em>I receive a commission from Amazon for purchases made through these links.</em></p>
</blockquote>
<blockquote>
<p><em>This comes with no additional cost and helps me with <del>food</del> Gundam money</em></p>
</blockquote>
<blockquote>
<p><em>Thank you</em></p>
</blockquote>
<hr>
<h3 id="tldr">TLDR</h3>
<p>Got and built a Gundam kit and hooked.</p>
<p>Know where to buy Gundam that ships internationally? Any good tutorials for beginner on painting?</p>
<p>Want to share your builds?</p>
<p>I’d love to talk and hear your recommendations.</p>
]]></content>
        </item>
        
        <item>
            <title>Humble Freebie: LEGO Lord of the Rings</title>
            <link>https://jcos.io/posts/humble-freebie-lego-lord-of-the-rings/</link>
            <pubDate>Sat, 22 Dec 2018 03:21:55 +0000</pubDate>
            
            <guid>https://jcos.io/posts/humble-freebie-lego-lord-of-the-rings/</guid>
            <description>This time again for the Humble Bundle Freebie:LEGO Lord of the Rings. Get it free for a limited time</description>
            <content type="html"><![CDATA[<p>Hello, Christmas and giving season is still here.</p>
<p>We have a new <em><strong>FREE</strong></em> game from <a href="https://www.humblebundle.com/monthly?refc=gQ7hjJ">Humble Bundle</a>!</p>
<blockquote>
<p>☝️ <em>I receive a commission from Humble Bundle for purchases made through this link.</em></p>
</blockquote>
<blockquote>
<p><em>This comes with no additional cost and helps me get more games.</em></p>
</blockquote>
<blockquote>
<p><em>Thank you</em></p>
</blockquote>
<p>Get LEGO Lord of the Rings free for a limited time at <a href="https://www.humblebundle.com/store/lego-the-lord-of-the-rings">https://www.humblebundle.com/store/lego-the-lord-of-the-rings</a></p>
<p>LIMITED TIME OFFER ENDS DECEMBER 22 AT 10 A.M. PACIFIC TIME</p>
<p>Thank to Humble Bundle for another addition to our game library.</p>
<p>Game can be redeemed on Steam.</p>
<p>To get more updates on freebies and cool stuff like these, please subscribe to our newsletter.</p>
<p>Know any other special promotions?</p>
<p>Please let me know in the comments below.</p>
]]></content>
        </item>
        
        <item>
            <title>So many games so little time: Crashlands</title>
            <link>https://jcos.io/posts/so-many-games-so-little-time-crashlands/</link>
            <pubDate>Fri, 30 Mar 2018 10:50:08 +0000</pubDate>
            
            <guid>https://jcos.io/posts/so-many-games-so-little-time-crashlands/</guid>
            <description>Hey there! Just finished Crashlands. I really enjoyed every session and lost some sleep. Just one more recipeee!!! Crashlands was released in 2016, I was pretty late for the party but no worries still got to play it. It went on sale some time ago on Steam and Google play so I went with the Android version since I thought I might be able to play that more often(Also cheaper).</description>
            <content type="html"><![CDATA[<p>Hey there! Just finished Crashlands. I really enjoyed every session and lost some sleep. Just one more recipeee!!!
Crashlands was released in 2016, I was pretty late for the party but no worries still got to play it. It went on sale some time ago on Steam and Google play so I went with the Android version since I thought I might be able to play that more often(Also cheaper).</p>
<h2 id="gameplay"><strong>Gameplay</strong></h2>
<p>The game focuses on crafting and battles to get items needed for crafting. Seems really simple but there is a lot to it.</p>
<p>On later stages the game could get a little grindy but not to the point that it feels like a slog.</p>
<p>There are lots to do in the games. Craft stuff, craft weapons, furniture and more.</p>
<h2 id="story"><strong>Story</strong></h2>
<p>Main character is Flux Dabes, She is a she but I was it was in the middle of the game where I realized that.</p>
<p>Bet she’s hot under that infinisuit. She is a shipping expert and the story mostly revolves around delivering the packages.</p>
<p>Another important character is Juicebox the robot that allows follows you around. Juicebox’s dialogues are entertaining and hilarious.</p>
<p>I also like the pacing of the story. Feels about right.</p>
<h2 id="tldr"><strong>TLDR</strong></h2>
<p>If you are thinking about playing a new game with great fun story and can keep you entertained for hours get this game now. Even better when on sale but It’s worth it. There are also some achievements/perks among other ButterScotch games.</p>
<p>There’s also a nice story of how they start up working on Crashlands.</p>
<p>Thinking of adding gameplay videos here on another post.</p>
<p>That’s all for now.</p>
<p>Until next game, bye!</p>
]]></content>
        </item>
        
        <item>
            <title>Website updates: February 2018</title>
            <link>https://jcos.io/posts/website-updates-february-2018/</link>
            <pubDate>Mon, 26 Feb 2018 03:21:55 +0000</pubDate>
            
            <guid>https://jcos.io/posts/website-updates-february-2018/</guid>
            <description>This time again for the Humble Bundle Freebie:LEGO Lord of the Rings. Get it free for a limited time</description>
            <content type="html"><![CDATA[<p>Hello! I’m here again. Adding some updates and changing some stuff around here.</p>
<p>How are you doing?</p>
<p>So I was thinking about some stuff. When I first created my website it was just so I can create one for myself.</p>
<p>To be able to add to my resume. Thought it could come handy during interviews like “Hey I have experience with WordPress and stuff. Check my email I use my own domain” then I was learning a lot.</p>
<p>There were some ideas of monetizing it, adding some ads, selling stuff but now I’ve decided to just write stuff.</p>
<p>Maybe the readers and the ads will come in time but that is not the target now.</p>
<p>With this I think I’ll be able to add more stuff since I’m not concerned about how many words in a post, does it pass SEO checklists.</p>
<p>I’ve remove the ads. There are useless since there aren’t that many viewers and posts anyways. LOL</p>
<p>For now I’ll just make this like my personal page or something like my Facebook wall.</p>
<p>Post whatever I want without anymore guidelines to follow.</p>
<p>There were some stuff I was into back then like “How to get reader’s attention with titles”, “Make quality content to get followers”, “<a href="ways-make-money-website">How to monetize your website</a>” and so on.</p>
<p>Since I just use Facebook for messenger. (People are still easier to contact with Facebook/Messenger)</p>
<p>I have a feeling I’ll be able to update this more often now.</p>
<p>Also, I’ve updated the homepage. I really like it a lot better now with the skate park.</p>
<p>That’s all for now.</p>
<p>See ya</p>
<p>Photo by ME! That is our dog stuffing his mouth with my foot. He is Milo dog.</p>
]]></content>
        </item>
        
        <item>
            <title>Games that actually end</title>
            <link>https://jcos.io/posts/games-that-actually-end/</link>
            <pubDate>Mon, 20 Nov 2017 07:08:09 +1011</pubDate>
            
            <guid>https://jcos.io/posts/games-that-actually-end/</guid>
            <description>This time again for the Humble Bundle Freebie:LEGO Lord of the Rings. Get it free for a limited time</description>
            <content type="html"><![CDATA[<p>Well hello there! Got some new toys from <a href="https://www.humblebundle.com/monthly?refc=gQ7hjJ">Humble Bundle</a>. <em>This is a paid link</em></p>
<p>Pretty good deal at $15 you get 5-7 games.</p>
<p>First time in a while playing some games that actually have and ending.</p>
<p>For some time I was into MMORPGs, DoTA, mobile games(Clash of Clans, Summoners War) but sometimes it’s good to go back to basics.</p>
<p>Back in the day you play games until you see The End, Fin.</p>
<p>It was a really good feeling to watch the credits.</p>
<p>Got my first <strong>Humble Endless RPG Lands Bundle</strong> with 2 Borderlands and more.</p>




<img
    class="post-image"
    srcset='
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/humbleRPG_meuhzv.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1200/hugo/jcos.io/humbleRPG_meuhzv.png,
      https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_1500/hugo/jcos.io/humbleRPG_meuhzv.png
    '
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_800/hugo/jcos.io/humbleRPG_meuhzv.png"
>

<p>I’ll be busy playing the Borderlands series included in the bundle.</p>
<p>Feels refreshing to play single player story games again.</p>
<p>Now time to play. Starting with Borderlands.</p>
<p><a href="https://www.humblebundle.com/monthly?refc=gQ7hjJ">Get your bundles and start expanding your game collection.</a></p>
<blockquote>
<p>☝️ <em>I receive a commission from Humble Bundle for purchases made through these links.</em></p>
</blockquote>
<blockquote>
<p><em>This comes with no additional cost and helps me get more games.</em></p>
</blockquote>
<blockquote>
<p><em>Thank you</em></p>
</blockquote>
<p>Until next game!</p>
<p>Photo by <a href="https://unsplash.com/@nguyendqnhu?utm_medium=referral&amp;utm_campaign=photographer-credit&amp;utm_content=creditBadge">Nhu Nguyen</a></p>
]]></content>
        </item>
        
        <item>
            <title>La Union unwind</title>
            <link>https://jcos.io/posts/la-union-unwind/</link>
            <pubDate>Mon, 20 Nov 2017 07:08:09 +1011</pubDate>
            
            <guid>https://jcos.io/posts/la-union-unwind/</guid>
            <description>This time again for the Humble Bundle Freebie:LEGO Lord of the Rings. Get it free for a limited time</description>
            <content type="html"><![CDATA[<h3 id="good-time-to-go-to-beach">Good time to go to beach</h3>
<p>Was getting burnt out after a really hard project.</p>
<p>I didn’t like beaches because it’s hot and I don’t know how to swim.</p>
<p>Somehow when trying out surfing it was really fun.</p>
<p>It’s like skating but on waves!</p>
<p>Plus it doesn’t hurt as much when falling into water.</p>

<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
  <iframe src="https://www.youtube.com/embed/eWspzREHBU8" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" allowfullscreen title="YouTube Video"></iframe>
</div>

<p>Now on to catching bigger waves…</p>




<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_500/hugo/jcos.io/johannes-andersson-139350-unsplash_uet0am.jpg"
>

<p>Oh. Need to learn how to swim first.</p>
<p>Photo by <a href="https://unsplash.com/@thejoltjoker?utm_medium=referral&amp;utm_campaign=photographer-credit&amp;utm_content=creditBadge">Johannes Andersson</a></p>
]]></content>
        </item>
        
        <item>
            <title>I woke up like this</title>
            <link>https://jcos.io/posts/i-woke-up-like-this/</link>
            <pubDate>Sat, 03 Jun 2017 07:08:09 +1011</pubDate>
            
            <guid>https://jcos.io/posts/i-woke-up-like-this/</guid>
            <description>Waking up with a hangover then remembered the tranding topic this time.</description>
            <content type="html"><![CDATA[<p>One day, there was a boy who went to hang out with his friends.</p>
<p>There they had a couple of couple of beers.</p>
<p>After some time he got drunk and went home.</p>
<p>When he woke up he remembered the Ukelele they were playing.</p>
<p>He was still dizzy and could throw up but he went for his guitar then went into the wheatfield……</p>
<p>And poof! it became Koko Krunch………. Errr the video below. 😛</p>

<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
  <iframe src="https://www.youtube.com/embed/vp0Y2lKsqeE" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" allowfullscreen title="YouTube Video"></iframe>
</div>

<blockquote>
<p><em>Update: May 26, 2019</em></p>
</blockquote>
<blockquote>
<p><em>Not very pretty to watch when I think about it now.</em></p>
</blockquote>
<blockquote>
<p><em>Title should be drunk guy with hangover tries to play guitar 😵</em></p>
</blockquote>
<p>Photo by <a href="https://unsplash.com/@miklevasilyev?utm_medium=referral&amp;utm_campaign=photographer-credit&amp;utm_content=creditBadge">Mikhail Vasilyev</a></p>
]]></content>
        </item>
        
        <item>
            <title>Traveling to Singapore</title>
            <link>https://jcos.io/posts/traveling-to-singapore/</link>
            <pubDate>Mon, 13 Mar 2017 07:08:09 +1011</pubDate>
            
            <guid>https://jcos.io/posts/traveling-to-singapore/</guid>
            <description>Traveling to Singapore</description>
            <content type="html"><![CDATA[<p>Skate parks! There wasn’t one at home and it cool to just sit there.</p>
<p>Yeah… Lot’s of stuff to write here but I’m keeping this ready for now.</p>
]]></content>
        </item>
        
        <item>
            <title>Credit Card Death</title>
            <link>https://jcos.io/posts/credit-card-debt/</link>
            <pubDate>Thu, 06 Oct 2016 07:08:09 +1011</pubDate>
            
            <guid>https://jcos.io/posts/credit-card-debt/</guid>
            <description>It’s more pun: Credit Card Debt. Drawing Debt in the form Death</description>
            <content type="html"><![CDATA[<h2 id="its-more-pun-credit-card-debt">It’s more pun: Credit Card Debt</h2>
<p>This here is the credit card debt(Death).</p>
<p>The idea of puns and credit card debt(Death)</p>
<p>I wanted to start with drawing stuff like these for a long time and share it.</p>
<p>If my memory serves me right, I was talking about this idea with my friends and drew it for more details.</p>
<p>After all, a picture is worth a thousand words.</p>
<p>We know the bad of having credit cards and even worse if you are deep and maxed it.</p>
<p>What’s next?
Make a digital version of this draft.</p>
<p>I’m gonna do this in GIMP, paint or try to draw in my phone with some apps.</p>
]]></content>
        </item>
        
        <item>
            <title>Ways to make money from your website</title>
            <link>https://jcos.io/posts/ways-make-money-from-website/</link>
            <pubDate>Thu, 14 Apr 2016 07:08:09 +1011</pubDate>
            
            <guid>https://jcos.io/posts/ways-make-money-from-website/</guid>
            <description>We’ll be talking on ways to get some cash back from just having a website online.</description>
            <content type="html"><![CDATA[<p>You can also make money from your website.</p>
<p>While most of the time it is only used for displaying your products or your company information</p>
<p>We’ll be talking on ways to get some cash back from just having a website online.</p>
<p>Regarding how much and how big or small you get, your mileage may vary.</p>
<h3 id="back-on-topic-now-here-comes-my-list">Back on topic now, Here comes my list:</h3>
<p>Place advertisements
This is a very common way to get some income, you only need to get an advertiser and place their ads on your website. Google Adsense is one of the most popular ad networks. You can also sell ad space for fixed amount per month.</p>
<h3 id="1-affiliate-marketing">1. Affiliate Marketing</h3>
<p>“Affiliate marketing is a type of performance-based marketing in which a business rewards one or more affiliates for each visitor or customer brought by the affiliate’s own marketing efforts.”</p>
<p>Is what shows up when you search for it while in my definition, you simply help a company sell their products then they give you a commission.</p>
<p>This is done by placing ads or writing a review of a product and recommend it to customers.</p>
<h3 id="2-sponsored-reviews">2. Sponsored Reviews</h3>
<p>The same as Advertisements and Affiliate Marketing, you write a review for a company and you can charge before you do the writing.</p>
<p>You will be writing some good reviews to convince people to buy your sponsor’s products.</p>
<h4 id="3-sell-products">3. Sell Products</h4>
<p>Yes, this couldn’t be more obvious.</p>
<p>You can setup an online shop or just present a single product you are focused on.</p>
<h3 id="4-accept-tipsdonations">4. Accept Tips/Donations</h3>
<p>Some people don’t really intend to do this but if they have done something really cool, others want to give something.</p>
<p>I think you should provide something valuable like a really cool wallpaper, an amazing app for free or a website template to get people to send you money.</p>
<p>These can come in the form of Paypal Donate buttons, “Buy me a beer”, “Support us”, “Give lunch money”.</p>
<h3 id="5-using-it-as-a-marketing-tool">5. Using it as a marketing tool</h3>
<p>Out of all the items in the list here, this is what worked for me.</p>
<p>When I was looking for web development jobs sometime around 2013, I think having a website increased my chance to get hired.</p>
<p>What better way to show that you can do something by sending them over to your website.</p>
<p>Something like this: “You can view my resume and portfolio at my website.”</p>
<p>So, that’s it for now. These are some of the ways people make money online. I have experienced setting up most of these on websites I manage.
Did I miss something or you have other ways to share? I’d love to get some feedback.</p>
<blockquote>
<p><em>Update: May 26, 2019</em></p>
</blockquote>
<blockquote>
<p><em>As for me, for my 5 years of having a website I haven&rsquo;t earned anything.</em></p>
</blockquote>
<blockquote>
<p><em>So your mileage may really vary. 😛</em></p>
</blockquote>
<p>Photo by <a href="https://unsplash.com/@steve_j?utm_medium=referral&amp;utm_campaign=photographer-credit&amp;utm_content=creditBadge">Steve Johnson</a></p>
]]></content>
        </item>
        
        <item>
            <title>New toy: jcos.io URL shortener using YOURLS</title>
            <link>https://jcos.io/posts/url-shortener-using-yourls/</link>
            <pubDate>Thu, 07 Apr 2016 07:08:09 +1011</pubDate>
            
            <guid>https://jcos.io/posts/url-shortener-using-yourls/</guid>
            <description>A little introduction to URL shorteners. They make your links short.</description>
            <content type="html"><![CDATA[<p>Finding an unused domain name is hard, finding available short domains is even harder.</p>
<p>Last Christmas I got myself this new domain for my URL shortener. JCOS.IO yeah!</p>
<p>Nice present for myself.</p>
<p>I just finished setting it up again because I was busy with work and with life these past few months.</p>
<p>There was a problem with my previous install.</p>
<h3 id="a-little-introduction-to-url-shorteners-they-make-your-links-short-that-is-all-">A little introduction to URL shorteners. They make your links short. That is all. 😀</h3>
<p>Why would you want to do that???</p>
<p>For example on twitter, the number of characters per tweet is limited to 140 characters. So if you have a really cool link you need to share to your followers and friends no matter what.</p>
<p>“OMGSH!!! hey check out this really cool site. the squirrel is on a jet pack with laser guns and shoots when you click!!! <a href="http://www.omglasergunspewpewpew.com/">http://www.omglasergunspewpewpew.com/</a>”</p>
<p>This won’t do because this exceeds twitter’s tweet limit. By shortening our link we can be sure that the awesomeness will be shared.</p>
<p>“OMGSH!!! hey check out this really cool site. the squirrel is on a jet pack with laser guns and shoots when you click!!! url.jcos.io/omgpewpew – <a href="http://www.omglasergunspewpewpew.com/">http://www.omglasergunspewpewpew.com/</a>”</p>
<p>Above example also exceeds tweet limit but you get the point.</p>
<p>Usually we’ll go to Bitly or TinyURL for our shortening needs but YOURLS lets us do the same on our own server. It even means Your Own URL Shortener and it’s free!</p>
<p>I’m not going into details about how to set it up there are many other sites which provide detailed and easy to follow instructions like the following:</p>
<pre><code>url.jcos.io/2 – https://lifehacker.com/sucking-is-the-first-step-to-being-sorta-good-at-somet-1553829831

url.jcos.io/3 – https://code.tutsplus.com/tutorials/build-your-own-url-shortener-with-yourls–cms-22638

url.jcos.io/4 – https://raventools.com/blog/custom-url-shortener/

url.jcos.io/5 – https://trickspanda.com/install-yourls/
</code></pre><p>Even the instructions on yourls homepage is clear enough.</p>
<p>url.jcos.io/url/6 – <a href="http://yourls.org/#Install">http://yourls.org/#Install</a></p>
<p>I’ve also read that getting your own domain for URL shortener is great for branding.</p>
<p>That’s cool if you’re into that thing. Branding, marketing and stuff.</p>
<p>Let me know if you’d like some help with setting up your own yourls by leaving a comment below.</p>
<p>I get my domains for less at <a href="https://affiliate.namecheap.com/?affId=98310">Namecheap</a>.</p>
<p>They have some promos that you can get for $2 and below for first year.</p>
<!-- raw HTML omitted -->
<blockquote>
<p>☝️ <em>I receive a commission from Namecheap for purchases made through these links.</em></p>
</blockquote>
<blockquote>
<p><em>This comes with no additional cost and helps me with <del>food</del> Gundam money</em></p>
</blockquote>
<blockquote>
<p><em>Thank you</em></p>
</blockquote>
<p><strong>Or</strong> you can also reach me on twitter: url.jcos.io/twitter – <a href="https://twitter.com/sudoist">https://twitter.com/sudoist</a> or linkedin: url.jcos.io/linkedin – <a href="https://ph.linkedin.com/in/johncosio">https://ph.linkedin.com/in/johncosio</a></p>
<blockquote>
<p><em>Update:</em></p>
</blockquote>
<blockquote>
<p>As I’m moving to Digital Ocean and using jcos.io as primary domain, I think I won’t be needing to use a url shortener for now.</p>
</blockquote>
<blockquote>
<p>Added the original links and it really shortens stuff but I don’t even use twitter now so… Yeahhhh taking it down now.</p>
</blockquote>
]]></content>
        </item>
        
        <item>
            <title>On writing blog posts</title>
            <link>https://jcos.io/posts/writing-blog-posts/</link>
            <pubDate>Thu, 07 Apr 2016 07:08:09 +1011</pubDate>
            
            <guid>https://jcos.io/posts/writing-blog-posts/</guid>
            <description>A little introduction to URL shorteners. They make your links short.</description>
            <content type="html"><![CDATA[<p>When I started setting up my websites on <a href="http://wordpress.com/">wordpress.com</a> and <a href="http://blogspot.com/">blogspot.com</a> I have one goal in mind.</p>
<h3 id="to-earn-some-extra-money">To earn some extra MONEY.</h3>
<p>Yup that is correct, after reading so many articles, guides and tutorials on writing blog posts and making money from your blog; I decided to give it a try.</p>
<p>The problem is after having signing up with those blogging services and customizing how your site looks, you don’t have anything on it.</p>
<p>I find it hard to write something about anything.</p>
<p>This continued on my self-hosted WordPress sites.</p>
<p>I read this article at lifehacker: <a href="https://lifehacker.com/sucking-is-the-first-step-to-being-sorta-good-at-somet-1553829831">url.jcos.io/1</a> sometime ago.</p>
<p>It kind of makes sense, I suck at writing and I don’t have great and world changing topics to write about.</p>
<h3 id="here-is-what-usually-happens-when-trying-to-write-something-before">Here is what usually happens when trying to write something before:</h3>
<ul>
<li>You look for a topic with search keywords and stuff</li>
<li>You make a draft about it</li>
<li>It must be long for proper SEO and minimum words</li>
<li>You don’t publish until you think people will like it and it should be helpful and stuff for them views</li>
<li>It never gets published</li>
<li>When you look at it after a long time, you don’t want to publish it anymore</li>
<li>It is now forgotten. The end.</li>
</ul>
<h3 id="some-thoughts">Some thoughts</h3>
<p>When my other website expired with some of my posts(around 5) in a span of a year.</p>
<p>Really low publishing rate.</p>
<p>I got caught in the trap above.</p>
<p>So here is where “Sucking Is the First Step to Being Sorta Good at Something” comes in.</p>
<p>I can now write short and whatever posts.</p>
<p>It doesn’t have to be very good, it just have to be published.</p>
<p>Like prototyping and agile in programming, you get the product out and then you improve it based on customer feedback but in writing… maybe experience….</p>
<p>I stopped trying to write really good, perfect and helpful stuff, I just write….. anything.</p>
<p>Anything that I can think of. Look at this post for example, it’s all over the place.</p>
<p>Even the punctuation and the grammar could be wrong but whatever man.</p>
<p>I’m still writing anyway.</p>
<p>Short story long. Write and write until you improve then write some more.</p>
<p>As programmers say(I read it somewhere but I can’t find it when searching) You don’t become good, you just become less bad.</p>
<p>Oh and about that making money from blog.</p>
<p>I never made any anyway.</p>
<p>Site’s got no traffic, no ads = no income.</p>
<p>Well in a way, we can say I did. Indirectly.</p>
<p>When I showed it to people during interviews.</p>
<p>Make something to show that you can.</p>
<hr>
<p>My goal now is to flood this site with blog posts and make jcos.io show up in Google’s number 1 spot when searching John Cosio.</p>
<p>What will being on number 1 do? I don’t know, I just me to want to be there.</p>
<p>Maybe I can say that I’m an expert at SEO too.</p>




<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_500/hugo/jcos.io/google-search_knmibb.jpg"
>

<p>Oh and being sorta good at writing. That’s a start.</p>
<p>As you can see I’m still getting the hang of this, any tips, comments and suggestions are welcome.</p>
<p>Sige paalam</p>
]]></content>
        </item>
        
        <item>
            <title>Game storyline with false gods</title>
            <link>https://jcos.io/posts/game-storyline-with-false-gods/</link>
            <pubDate>Sat, 06 Feb 2016 07:08:09 +1011</pubDate>
            
            <guid>https://jcos.io/posts/game-storyline-with-false-gods/</guid>
            <description>The game storyline involves a God like figure at the beginning then ends up to be the main antagonist or false at the end</description>
            <content type="html"><![CDATA[<p>Hey there, I noticed this trend with some of the games I played recently and from some time ago.</p>
<p>The game storyline involves a God like figure at the beginning then ends up to be the main antagonist or false at the end.</p>
<p>Spoiler Alert: Some games only reveals this when on the last boss or at the later parts of the game.</p>
<p>The latest game that I’m currently playing is Path of Exile, I wanted to play some Action Role Playing Games after I finished the Star Craft 2: Legacy of the Void story.</p>
<p>Just played coop and single player. I suck big time with playing against other humans.</p>
<p>I feel that I’m really getting old, my reaction time has slowed down a lot in games like Star Craft where there are so many things happening.</p>
<h3 id="recent-games-with-this-example">Recent games with this example</h3>
<!-- raw HTML omitted -->
<pre><code> Back to topic, I was at ACT IV of Path of Exile when I realized that this does have the same theme.
 
 In ACT III, you would have to defeat the High Templar Dominus of the main city of Theopolis.
 
 By the name itself the place is bound by faith of some sort and maybe it is the central form of their government since Dominus is the one who sentenced criminals to be exiled instead of imprisonment or execution.
 
 They thought they could become God or are working for God but ended up doing shit for Nightmare.
 
 Also Emperor Voll in ACT IV is somewhat similar as he thought he was doing the right thing but ended up a farmable boss that gives lots of exp and loot.
</code></pre>
<!-- raw HTML omitted -->
<h3 id="other-games-i-played-before">Other games I played before</h3>
<!-- raw HTML omitted -->
<pre><code> In Final Fantasy Tactics, St. Ajora is the preacher known early in the game but in truth he is the host to the demon that is the final boss.

 In Alundra, the main antagonist is Melzas. He was worshipped by the people in town and was praying to him. Their prayers gives him powers and the village priest also helps him to deceive the people to worship him.

 Well, in Star Craft there was this Xel’Naga the Protoss believed to be helping them but in the end it was Amon. Also the last boss of the game.
</code></pre>
<!-- raw HTML omitted -->
<p>Some games on the top of my head are Warcraft, Final Fantasy Tactics, Alundra, Final Fantasy 7, Terranigma. Xenogears. Valkyrie Profile. Well I could be wrong with these, will need to play them again and will add more.</p>
<p>I’m just sure about Alundra, Tactics, Path of Exile, Warcraft and Star Craft</p>
<p>Think I missed some of your favorites?</p>
<p>Feel free to add your list on the comments and I might get to try out something new.</p>
<p>Credits:</p>
<p>Thanks to the artist of the Lucavi image. Found it on google images.</p>
<blockquote>
<p><em>Update: May 26, 2019</em></p>
</blockquote>
<blockquote>
<p><em>By the way thanks to <a href="https://stackoverflow.com/users/950039/gaurav-ramanan">Gaurav Ramanan</a> for his answer on <a href="https://stackoverflow.com/questions/32814161/how-to-make-spoiler-text-in-github-wiki-pages">how to do spoilers in html</a></em></p>
</blockquote>
<blockquote>
<p><em>Used this above on the spoilers. Got stuck on that on a while</em></p>
</blockquote>
<blockquote>
<p><em>I&rsquo;m migrating my site from WordPress to Hugo which now uses Markdown.</em></p>
</blockquote>
<blockquote>
<p><em>Have to write about that later.</em></p>
</blockquote>
]]></content>
        </item>
        
        <item>
            <title>How can we consider ourselves “Experts”</title>
            <link>https://jcos.io/posts/how-can-we-consider-ourselves-as-experts/</link>
            <pubDate>Fri, 05 Feb 2016 07:08:09 +1011</pubDate>
            
            <guid>https://jcos.io/posts/how-can-we-consider-ourselves-as-experts/</guid>
            <description>The game storyline involves a God like figure at the beginning then ends up to be the main antagonist or false at the end</description>
            <content type="html"><![CDATA[<p>I was checking out some job openings at Upwork(WHICH I NEVER GET HIRED EVEN BEFORE WHEN IT WAS ODESK) and other freelance/job post sites.</p>
<p>There were many people looking for “Experts”.</p>
<p>WordPress Experts, Design Experts, SEO Experts, PHP Experts, Rockstar Designers blah blah blah.</p>
<p>What the heck does that even mean?</p>
<p>Then they are looking for the cheapest and fastest that can deliver.</p>




<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_500/hugo/jcos.io/Project-Management-Speed-Cost-Quality_m5qgpn.png"
>

<p>Is that even possible?</p>
<p>Questions started to pop up one after another which I can’t even answer.</p>
<p>Am I an expert?</p>
<p>I’ve been customizing and building websites from some time but I can’t consider myself an expert.</p>
<p>Is there a gauge or a scale we can use to measure up our expertise? Maybe like a scouter in Dragon Ball which measures power/expertise levels.</p>
<p>A quick google search on expert gives us this “An expert, more generally, is a person with extensive knowledge or ability based on research, experience, or occupation and in a particular area of study.”</p>
<p>Well with that definition I can say that I’m an expert but for now I’d stick to “Experienced” or “Practiced” maybe.</p>
<p>That’s all for today, just a random rant out of a random thought.</p>
<p>How about you guys? Are you experts? Is there a certain level before you can consider someone an expert?</p>
<p>Please do let me know by leaving a comment below.</p>
]]></content>
        </item>
        
        <item>
            <title>So many games so little time: Plants vs Zombies</title>
            <link>https://jcos.io/posts/so-many-games-so-little-plants-vs-zombies/</link>
            <pubDate>Wed, 14 Oct 2015 07:08:09 +1011</pubDate>
            
            <guid>https://jcos.io/posts/so-many-games-so-little-plants-vs-zombies/</guid>
            <description>Quick summary and review of Plants vs Zombies.</description>
            <content type="html"><![CDATA[<p>Hello, I’ve decided to write about games I played. Sort of a review but not in-depth, there are many other sites that focus on that.</p>
<p>This time we’ll be talking about Plants vs Zombies.</p>
<p>It came out around 2009 when I was still in college, some of my friends introduced me to it.</p>
<p>At first I found it weird. Usual tower defense games have the camera position on top but this is like playing Mario and other side scrolling games. Before I knew it was playing for more than 8 hours straight in story mode.</p>
<p>Gameplay is simple, the plants are there in the lawn to stop the zombies from coming into your house and eat your brains. Just place plants for each lane to survive the zombie waves.</p>




<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_500/hugo/jcos.io/survival-endless-e1472618660843_ld5udl.png"
>

<p>I think the main feature that makes this game so addictive is the Survival Endless mini-game.</p>
<p>The goal is to survive as many rounds and to think of different setups of plants to last that long. I’ve seen some do thousands but my highest is only 78 Flags. 😀</p>




<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/w_500/hugo/jcos.io/zen-garden-e1472618492223_eprrop.png"
>

<p>There is the Zen Garden mode where you can collect the plants in the game and water it and grow it then just watch them move around.</p>
<p>Overall a fun and highly repeatable game to keep you entertained and busy for hours.</p>
<p>You can also share your highest survival scores and strategy with friends.</p>
<p>That’s all for now.</p>
<p>See you guys again, bye!</p>
]]></content>
        </item>
        
        <item>
            <title>Spore.. SporeCraft… What?</title>
            <link>https://jcos.io/posts/sporecraft/</link>
            <pubDate>Tue, 03 Mar 2015 07:08:09 +1011</pubDate>
            
            <guid>https://jcos.io/posts/sporecraft/</guid>
            <description>Spore lets you create vehicles, creatures and buildings and more. Here are some creatures I made.</description>
            <content type="html"><![CDATA[<p>Ever played Spore, StarCraft and Warcraft strategy games?</p>
<p>Spore lets you create vehicles, creatures and buildings and more.</p>
<p>It was really a good game and I enjoyed busting planets and evolving creatures and mixing body parts and whatever.</p>
<p>I’ve stumbled upon some of my creations when I played it before.</p>
<p>Doing some art in-game. Check it out.</p>






<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/hugo/jcos.io/Zacrong-2_jibepp.png"
>

<p>My spore version of the Hydralisk.</p>
<p>It kinda looks like a cuter imitation Hahaha</p>






<img
    class="post-image"
    src="https://res.cloudinary.com/langitlupakintoncloud/image/upload/hugo/jcos.io/Rigwarl_ofuii7.png"
>

<p>I really like the Quillboar race from Warcraft and when playing DotA I used Rigwarl a lot.</p>
<p>This is how he ended up in spore creature creator.</p>
<p>A little closer to how they really look.</p>
]]></content>
        </item>
        
        <item>
            <title>Lazing around</title>
            <link>https://jcos.io/posts/lazing-around/</link>
            <pubDate>Fri, 20 Feb 2015 07:08:09 +1011</pubDate>
            
            <guid>https://jcos.io/posts/lazing-around/</guid>
            <description>Nothing in particular just lazing around.</description>
            <content type="html"><![CDATA[<p>Not feeling good.</p>
<p>Brains not working well.</p>
<p>Just laying on the sofa.</p>
<p>Channel surfing until finding an interesting show.</p>
<p>Watching some <a href="https://www.youtube.com/watch?v=__d2FMCtgi4">Key &amp; Peele</a> skits.</p>
<p>Playing mobile games.</p>
<p>Browse <a href="http://www.lolcats.com/">lolcats</a>.</p>
<p>There are just days that things don’t seem to be productive as you’d like to.</p>
<p>I’ll just declare this day as a national day-off and might as well write something here.</p>
<p>I think cats can understand how I’m feeling right now.</p>
<p>Some of them look really bored, lazy and relaxed.</p>
<p>Anyway that’s all about it.</p>
<p>Relaxin’ and lazing around.</p>
<p>Doesn’t make sense?</p>
<p>Ummm yeah, doesn’t even have to.</p>
]]></content>
        </item>
        
        <item>
            <title>Hello world!</title>
            <link>https://jcos.io/posts/hello-world/</link>
            <pubDate>Sun, 15 Feb 2015 07:08:09 +1011</pubDate>
            
            <guid>https://jcos.io/posts/hello-world/</guid>
            <description>Hello! This is my first post.</description>
            <content type="html"><![CDATA[<p>Hello! This is my first post.</p>
<p>I used to have another blog and use this as my landing page but it is now inactive.</p>
<p>I’ll be trying to use this from now on.</p>
<p>I haven’t really thought about what to write here.</p>
<p>I just want to be able search myself correctly from Google results.</p>
<p>Maybe next time I’ll land on the number one spot.</p>
<p>By the way I really like black backgrounds with shiny life stream like images from <a href="http://en.wikipedia.org/wiki/Final_Fantasy_VII">FF7</a>.</p>
<p>Well that’s about it for the first post.</p>
<p>Hope I’ll be able to write again soon.</p>
]]></content>
        </item>
        
    </channel>
</rss>
