Share This

Wednesday, November 16, 2011

WordPress for Beginners

This article is intended for those who are new to WordPress or for those who are wondering about where to get started. The answer is very simple, just read the official online manual for WordPress including the WordPress information and documentation individually for users and developers, no kidding but seriously :D.

For those WordPress beginner bloggers, users or developer, I'd recommend one to try getting started with WordPress.com. Creating a WordPress.com account is simple and setting up a blog should be very straightforward getting through a few steps. The step by step instructions are available here.

Friday, August 26, 2011

Understanding Javascript Prototype, Static members and Instance

Since javascript is a prototype-based language, sometime it's confusing for anyone with the background from the class-based languages like C#, Java etc... to implement javascript in OOP way or to comply with software architectural patterns such as MVC, MVP or MVVM.

Today I found some useful snippets while looking for some meaningful explanation.
Here's the one explained by someone on stackoverflow,

// constructor function
function MyClass () {
  var privateVariable; // private member only available within the constructor fn

  this.privilegedMethod = function () { // it can access private members
    //..
  };
}

// A 'static method', it's just like a normal function 
// it has no relation with any 'MyClass' object instance
MyClass.staticMethod = function () {};

MyClass.prototype.publicMethod = function () {
  // the 'this' keyword refers to the object instance
  // you can access only 'privileged' and 'public' members
};

var myObj = new MyClass(); // new object instance

myObj.publicMethod();
MyClass.staticMethod();

You shall read the original thread here, for a more detail similar to the above example you can find it here.

Wednesday, May 12, 2010

Team GIGABYTE

The is the very first Flash animation project I have ever made while I was working for Media Lane. All trademarks mentioned in the clip belong to their respective owners. You shall view the swf version here.

http://www.swfcabin.com/swf-files/1399390177.swf

Tuesday, October 13, 2009

Creating a MySQL Database from Command Line

It seems easy but a bit dizzy one for a novice, so let me share a simple guide.
If you don't have MySql installed, you can download it from
http://dev.mysql.com/downloads/,
one should also read the documentation here http://dev.mysql.com/doc/.
During installation, you will have to configure the server instance, optionally the port number (default is 3306) and the root password.

Tuesday, July 22, 2008

Bouncing Ball

This is a small Flash example I created for a friend attending a university, a kind of school project LOL.
You will see a few buttons below the clip to control the movement of the bouncing ball.
Here's another one.

Monday, June 30, 2008

My first flash animation.

This is my very first Flash animation clip created in 2008 named "Crab Attack", it's just for fun and to tease a friend, enjoy XD

Wednesday, June 11, 2008

Welcome to my site.


Hello everyone, My name is Aung Myo Linn and KoLuNar is the nickname given to me myself. I am a software engineer and this is my very first post on blogger.com.