Being Coldfusion developer

So far I'm not sure whether being coldfusion developer is good or not in IT development. There are so many advantages and disadvantages for being coldfusion developer. It's because of when I trying to hunt CF jobs, there are a few jobs vacancy for CF developers sometimes no jobs at all. Another one is when I talking with my IT friends about IT development, they don't know what is Coldfusion and not even know which it's programming language. At that time, I feel sad of being coldfusion developer and want to change other programmings like .NET, PHP and Ruby on Rails. Then, I don't know so far PHP and Ruby on Rails can be used for enterprise level like Coldfusion. In Singapore, some of the software of Healthcare industry are based on Coldfusion, including our projects and others are Java and .Net.

[More]

How to write clean code

Yesterday, I've read "Clean Code" book by Robert C. Martin. It's very useful for programmers like me to read this book because which describes how to write clean code and useful code. I'll show few part of this book.

Ok, this book shows how to give a name for variables, functions, etc. Before, I gave a short name to most of my using variables and functions like "sname, gPersonInfo, etc". Once I've read this book, I've got a lot of knowledge how to write and give a name for variables and functions.

Here is example when I developed before.

view plain print about
1component {
2    public struct function gPerson(required String pName, required String pDOB){
3        sPerson = structNew();
4        sPerson.fName = arguments.pName;
5        sPerson.DOB = arguments.pDOB;
6        return sPerson;
7    }
8}

[More]

Drought problem in Myanmar

Our country, Myanmar encounter drought problem in this summer because of lack of raining and some trees have been ruined by Nargis. Unfortunately, several people have been killed and some are struggling for water because of this problem. We, behave of Myanmar citizen need your hand to get out of drought problem and any helps will be deeply appreciated in advance.

We are the world

Send them your heart So they'll know that someone cares And their lives will be stronger and free As God has shown us by turning stone to bread So we all must lend a helping hand

Embedding windows media player WMV

I'm now creating misspeople2008 section for www.people.com.mm. In these days, I need to do one video file into index page. First of all, I was thinking about how about embed flv player into my site. But, it's problem that my server hasn't installed Flash Player Server. That's why I decided to use with window media player. Blow is coding how to embed Video Player in HTML Page.

view plain print about
1<invalidTag
2     id="MediaPlayer"
3    width=253
4    height=204
5    classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95"
6    standby="Loading Windows Media Player components..."
7    type="application/x-oleobject"
8    codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112">

9     <param name="filename" value="URL File">
10     <param name="Showcontrols" value="True">
11     <param name="autoStart" value="True">
12     <invalidTag
13         type="application/x-mplayer2"
14        src="URL File"
15        name="MediaPlayer"
16        width=253
17        height=204>
</embed>
18 </object>

How? It's easy, isn't it?

ppshein is on Connect Tech Fashion Journal

Last week, one of the editor of Connect journal request me to interview me about how to create web development and feeling of being web developer for awhile. In this interview, I've answered about the current IT situation in Myanmar, Web development and web developers. 

  • Which kinda of websites are popular in Myanmar.
  • Which kinda of web based languages are popular in Myanmar.
  • And how to prevent our websites not to be attacked by SQL injection and so on.

Google Page Creator is no longer accepting new sign-ups

We are no longer accepting new sign-ups for Page Creator because we have shifted our focus to developing Google Sites, which offers many of the capabilities of Page Creator along with new features like site-level navigation, site-level headers, control over who can see and edit your site, and rich embeddings like calendars, videos, and Google docs.

If you are currently a Page Creator user, you can continue to use Page Creator and your pages will automatically be transitioned to Google Sites later this year. We are committed to making this transition as smooth and easy as possible, and we will post more details as we get closer to the transition time. You can also manually move your web pages from Page Creator to Google Sites or other service providers at any time.

Top of Page