March 10th, 2010 . Posted in
viirak.
well, what a feeling now hmm.. just a deep breath and a bit relax with ice mocha at a cafe in the crowding mall, something has remind me of what I was doing last few years on blogging workshop tour, cloggers, and what I should be doing next. feeling like ashame that I was always walking away from the path where I should be heading hikhik..it’s kinda hard to keep ourself along huh?
maybe it’s just too many thing in the heAd
been keeping myself so busy getting into a new thing that I never really doing it before of Linux hacking. from a creative UI designer and front end enginneer to a really hardcore programmer and Linux sysadmin it’s really a lot of things n fun and to be really a hackaholic uhoh! but there’s still long way to go.
actually m not really a sysadmin, howevere, to answer to most people of what I am really doing, I am doing web stuff! and enjoy moving around. but almost forgetting that lately since so many things to be done. hmm…
almost keep this blog dead hikhik.. maybe I just can’t really focus on the topic or probably m de worst story teller
however there’s some changes now to the tittle now to ” around Cambodia & technology” cos feeel like it’s what I can tell better about, and hopefully I’ll be around in de next few months.
so yeah, there’s a lot more thing to talk about, travelling And hacking. so will continue in de next kafe time.
now gotta signoff to get some stuff done!
:[] v?r^k
1 Comment »
This might be good to try while if you are looking for a tool to manage your blog (wordpress) or reblogging since I feel it is also a motivated way, from iPhone or iPod touch. Automatic, company that made wordpress, has also just made the version 2.0 of their wordpress iPhone app which what I am trying to tell and using to write this now. It is a nice free app to manage the wordpress blog even the self hosted one or at wordprss.com.
Making a new post, replying to new comments, and managing old posts are quite easy and look really motivated with the iPhone os interface. I can feel it’s quite comfortable to work with and love as the gmail app that I’ve using. But the little problem might be it’s a bit difficult to type with iPhone os keyboard.
Anyway this is just a first test post to see if it’s really cool new thing to spend time with and start writing more this and that, because normally I am bad/lazy to write long paragraph since it requires to really focus and normally it would not take that short. So that is why Twitter and facebook commenting sharing is the two big thig people having fun with. 140 characters is easy/fun to write while many paragraph would make people bore to write as they’re not writer. Well this just mean I enjoy tweeting than writting this post.
However, I am finding it’s fun again to do with this wordpress app on iPhone os. Let’s see hopefully my blog will then again alive
Cheers!
Comment now »
April 13th, 2009 . Posted in
Travel.
can’t believe ‘that ‘its new year time again! as happenning every year from 13-15 april, cambodian are celebrating new year, while normally its the best time to catch up with all family – relative members. so we take a chance to go back to where we’re originally from, home town ya! so do i. while m telling this to u, m on the bus back to kampong cham, srok tbong Kmom (roeng tom & teav). so if you were in phnom penh you will see everyone are busy traveling out of town. or somehow you might found everyone gathering at pagoda (wat) n many public and tourism places to play traditional game (not gambling). so its happy time, wish u all safe trip travelling and happy new year, year of cow. don’t eat cow! best wishes!
Posted from Shozu
Comment now »
April 7th, 2009 . Posted in
Event.

I’ve snapped some shot during the trip and event and it can be viewed more at BarcampKL2009
No word to say, because it’s been a while again disconnected. Last weekend i had a great time in Kuala Lumpur (KL) joining BarcampKL and meeting a lot of new people from around SEA, not just in Malaysia ifself that host the event.
Technorati Tags: barcampkl, barcamp
Comment now »
I’ve always got confuse (4get neng na) when mostly starting a new rails app and have it configured to work with git. So here’ s a quick note to remember:
new rails app:
1
| $> sudo rails my_new_app |
Then add a git to it:
1
2
| $> cd my_new_app
$> sudo git init |
Then just tell git who were are:
1
| $>git config --global user.name "Your Name"; git config --global user.email "your@email.com" |
Tell git to ignore some files and folders
at application root create .gitignore file containing:
1
2
| $> sudo touch .gitignore
$> sudo vim .gitignore |
and you may add the following to .gitignore
1
2
3
4
5
| log/*.log
tmp/**/*
.DS_Store
doc/api
doc/app |
Create some more .gitignore files so the empty directories get tracked:
1
2
| $> touch log/.gitignore
$> touch tmp/.gitignore |
and commit:
1
2
| $ git add .
$ git commit -m "initial Rails app" |
That’s it!
Comment now »