「ARTWORK」Muslimah (Muslim Girl)

*The final result

YO! I've finally got time to finish up this piece that I've started few weeks ago.

This speedpainting was also done in Adobe Photoshop. ‎I started this piece at ‎October ‎8. Though I only draw an eye.I've always started with an eye when I'm drawing a portrait. It's easy to decide how the face(expression) would be.

*This has nothing to do with Illuminati.

Then at October 9, I continued drawing the face. But I get stuck when I'm trying to draw 'The Other Eye'. This part is always the hardest... -.-

* 'The Other Eye'

Annnddd..... At November 4, I've finally got time to continue & finished it.
(I've been busy with assignments... -.-)
I decided that I should try and draw Hijab (I don't always draw girls with Hijab).

*Final tweaking & editting

I spent 3 days(in total) to complete this piece. And again, I only used the regular round brush.
Hope y'all like it. ;)

「ARTWORK」SHISHAMO - Matsumoto Aya

*The final result.

SHISHAMO Matsumoto Aya

YO! This is a tribute to Matsumoto Aya, the former bassist of the band SHISHAMO (a three person band from Japan). I've been a fan of this band...especially Aya-chan... they are good and kawaii... hoho...

This speedpainting or should I say 'lazypainting' was done in Photoshop CC.
*This is not her actual face though... but close enough.. ;)

*I used their music video for the song, 行きたくない as reference.

Took me two days in total (8&10 Oct) to finish this artwork. I use only the regular round brush and about 38 layers to finish this artwork. Since I'm using mouse, I use as many layers as possible. 

By the way, Aya-chan left the band last September and was replaced by Matsuoka Aya... yeah... both is Aya-chan... Anyway, Goodluck to them.

Sayonara Aya-chan~!

「HOW TO」 Add Code Syntax Highlighter To Blogger

YO! I've finally figured out how to add code syntax highlighter to my blog using SyntaxHighlighter 3.0.83 and I thought I would share it here. :)



Step 1) From your Blogger's dashboard, navigate to "Template" section, and click "Edit HTML".

Step 2) Find your template's </head> tag.

Step 3) Add the following codes a line BEFORE the </head> tag.
(Add only the brushes that you want, for example, shBrushJScript.js for JavaScript, as too much external js files would decrease page load speed).

<!-- SyntaxHighlighter START -->
<link href="http://alexgorbatchev.com/pub/sh/current/styles/shCore.css" rel="stylesheet" type="text/css" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shCore.js" type="text/javascript" />

<!-- Theme-->
<link href="http://alexgorbatchev.com/pub/sh/current/styles/shThemeDefault.css" rel="stylesheet" type="text/css" />

<!-- Brushes -->
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushAS3.js" type="text/javascript" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushBash.js" type="text/javascript" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushColdFusion.js" type="text/javascript" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushCSharp.js" type="text/javascript" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushCpp.js" type="text/javascript" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushCss.js" type="text/javascript" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushDelphi.js" type="text/javascript" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushDiff.js" type="text/javascript" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushErlang.js" type="text/javascript" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushGroovy.js" type="text/javascript" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushJScript.js" type="text/javascript" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushJava.js" type="text/javascript" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushJavaFX.js" type="text/javascript" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPerl.js" type="text/javascript" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPhp.js" type="text/javascript" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPlain.js" type="text/javascript" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPowerShell.js" type="text/javascript" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPython.js" type="text/javascript" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushRuby.js" type="text/javascript" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushScala.js" type="text/javascript" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushSql.js" type="text/javascript" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushVb.js" type="text/javascript" />
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushXml.js" type="text/javascript" />

<script language="javascript" type="text/javascript">
 SyntaxHighlighter.config.bloggerMode = true;
 SyntaxHighlighter.all();
</script>
<!-- SyntaxHighlighter END-->

Step 4) Click "Save Template" and you are good to go.

Step 5) Create a new post in HTML mode using the following markup.

<pre class="brush: php;">
&lt;?php
$example = range(0, 9);
foreach ($example as $value)
{
   echo $value;
}
</pre>

Step 6) Click "Publish" and you are done!

Here's an example for JavaScript code syntax highlighter :

<pre class="brush:js;">
/**
 *  SyntaxHighlighter
 */
function foo()
{
   if (counter <= 10)
      return;
   // it works!
} 
</pre>

This will render as:
    
/**
 *  SyntaxHighlighter
 */
function foo()
{
   if (counter <= 10)
      return;
   // it works!
}

Additional information on SyntaxHighlighter can be found at their homepage.
See also the list of all available brushes and themes.

「ARTWORK」Traffic Environment with Houdini Fx


Just a simple short video produced by me for the course I'm taking this semester.
All the models, animations, and renders are done in Houdini Fx. And I used Cyberlink PowerDirector to edit the video. Houdini Fx is cool and all but for me, modelling with it is a pain.

By the way, Houdini Fx is not free but there is a free version of it, Houdini Apprentice, which can be used to create personal non-commercial projects but has watermark on renderings and other minor limitations.


Hello World!

So I started a blog(yet again).
I'm not a writer.. so.. here's a potato instead.