Loading
Showing posts with label Myself. Show all posts
Showing posts with label Myself. Show all posts

年末年始

  • 2010年はあまり落ち着いていない年でした。2011はもっといい年にしたいです。
  • 年末も会社で飲み会でしめ、年始も夕方から会社でみんな飲んでました。
  • 年末休みのとき四字熟語勉強しようとおもったですが、なかなかできなくて150字ぐらいしか勉強できなかった。
  • IPadで漢検のアプリと四字熟語HDというアプリを買いました。練習はちょっとしか出来ていません。
  • ドラッカーの時代を超えるという本も買ったですけど、まだ読みきれていない。
  • そのほかi文庫HDも買って夏目漱石など300冊ぐらいまったく読めていない。
  • EAのゲームは割引で結構買った。後ゲームロフトもなぁ。
  • テレビでやっているような四字熟語のクイズみたいなものを作ってみました。



  • 穴埋めクイズ


  • 答えはこんな感じ(まぁタイマーをいろいろいじってるだけだけどねぇ)

  • まあ、IPadでアプリ作るまではやる気はなかったので今は写真だけ
  • 年末KoMinnKyawさんからwxPyDictのAyarバージョンの依頼があったので一応作成中。ほぼ完了ですけど。。。AyarTextToolsも更新予定あり。。。今月中かなぁ
  • 会社でもルータのコンフィグ解析と手順書作成ツール開発中。。。評判はいいけど、なかなかやる気がない。。。
  • まぁPythonは今後もお世話になるかなぁ。。。OSPFのグラフを2Dで表現出来ればかっこいいだけどなぁ、ただグラフィックは大の苦手
  • IPad上にPythonで直アプリ書けたらいいけどなぁ。まぁそれはないかぁ。。。アップルはそんなの許可しないだろう。。。
  • 今一番見ているテレビ番組は放送大学だ。なんかほかの見て価値があまりない気がしてきたかなぁ。太陽系科学とか科学系は好きだなぁ。普通の番組はQさまとかあとクイズ番組系はあったら見るという感じ。
  • まぁ、今日はこんな感じで。。。

iPad & Pocket Wifi

Pocket wifi from emobile
and iPad is

being great collaboration for me, since I don't need 3G version of iPad.

Moving Job from PER side to BackBone side

Moving Job from PER Side


to BackBone side

#Memo - Bought a Ruby book this morning and Just Realized Today is Ruby Day!

I've got some times this morning and walked around along the street.
I've found a book shop near the station, went there to look around.
After reading some books, I've got one good book, called Ruby Recipe.

And Now,

One of my friend just told me, today is Ruby's day.

Wow! That's Greaaaaaaaaaaaaaaat!

Kind of Serendipity :-)

Ruby is for me too :-)

Paid 420k Yen (approx. 4600 USD) to Embassy for the so-called tax, to extend the passort

Paid 420k Yen (approx. 4600 USD) to Myanmar Embassy for the so-called tax, to extend the passort.

Detail: 10k Yen per month for 3 year and few months => 420k Yen


420 000 Japanese yen = 4 679.22 U.S. dollars


I asked Chinese, Indians, Phillipinos, even Bangladesh, they don't have such things.

So this kind of tax is only for Myanmar Citizens who working in foreign.

#Memo - Myself - 2009 Oct 19

Today,

1) I have Ported My Roman to Number, Python one liner to C, Speed becomes unbeatable. :-)

Python
R,r={'I':1,'V':5,'X':10,'L':50,'C':100,'D':500,'M':1000},lambda x:reduce(lambda T,x:T+R[x]-T%R[x]*2,x,0)

C
int R[]={100,500,0,0,0,0,1,0,0,50,1000,0,0,0,0,0,0,0,0,5,0,10};int r(char*s){int x=0;while(*s)x+=R[*s-'C']-x%R[*s-'C']*2,s++;return x;}

2) I Found New Python IDE, called Spyder

http://code.google.com/p/spyderlib/

# I am currently using Pyscripter and sometimes notepad++, previously I use Wing (its not free), Eric IDE, ...

3) I found Python to C++ Code Generator called shedskin, it supports limited syntax only though.

http://code.google.com/p/shedskin/

# I am sometimes using psyco, its quite good actually, psyco use JIT when It can, just skip if cannot, for shedskin, it cannot proceed at all for unsupported syntaxes. Well, It make sense though.

4) I have learn something new on new languages and new ideas, new writing styles.

http://myanmaritpros.com/forum/topics/challenge-on-programming-or

# Challenging is good, I believe :-)

Cheers,
Mark

The Reasons Why I like Python - Part 1

- python hash/dict {} is super fast

- you can save every variables and objects from memory to file and from file to memory as variables, (pickle)

- No Need to close the code block with brackets "}" or "end", its better for reading because less lines and clear tabs

- no operator overrides, so you wont see strange syntaxes when learning other codes

- Python data objects are almost same as JSON, so most of the case you dont need any special program to convert each others

- python has wonderful lambda functions too.

- its relatively fast, if you dont satisfy its speed, you still can tweak it through C,C++

- you can call C/C++ functions from python and can use from C/C++ functions to Python functions too.

- develop and maintain by many many super geeks and gurus, so its just impressive to use python :D

- python is good for text processing, web, cross platform GUI, shell scripts, almost everything you can do with python.

- you can do 9999**9999 (power) easily in python (result around 40000 length digits), i believe its better than complied languages

- array/lists [], dict/hash {}, tuple() can easily convert each others, and all of them are easy to iterate.

- sets object can save lots of your works. you can do intersections, combinations, difference objects very easily.

- i like this syntax for looping an all iterable objects [x for x in x] :-)

- adding/removing items from/to array/lists are super fast

- regular expressions are full featured

- some modules (eg, io) are rewritten eventually with C for speed by super geeks, so performance are no worries

- its now upto versions 3.*, and its very compact and not bloated one.

- my own code is readable after 6months, others languages i cannot, because python syntax is unique way and very cleared

- python comes built in with most linux machine these days, and many hosting supports python.

 - most of the python authors works in big companies, and python is in use by top companies, its mean you have more chance to improve your life with python :-)

- many hacking/exploits scripts avaible in python these days, its mean you can learn lots of tricky and nice codes from that :P

- most of the cases, python codes has less characters / less lines than other languages. I am very much fun with this :-)

- its easy to write own web server, if you just need to run python based web sites, its very easy :-)

- python itself compile very fast, and very easy, if you do custom build

- you can just use g++ or mingw32-g++ to compile almost all C/C++ extensions, on almost all OSes.

- python is good friend for network engineers too. I can get PE Router configurations with python easily, and I can analyze PE Router config for each users and each circuits very effectively :D

To be continued

#ps there is many many left, i can only recall those now, cheers

Mark

My ToDO List or Not ToDO

Here is what I am doing now.

My Hobby Projects
- Zawgyi 2009 (not yet finished)
- KeyMaster for Zawgyi 2009 - Windows (not yet finished)
- Myanmar Search Engine (not even started yet)
- wxPyDict - Dictionary Lookup program - Windows (currently no updates)
- Myanmar Text Tools - Windows (dont have time to touch it)
- Burglish Systems (currently no updates)

Old Projects (being suspended)
- Prince Kanaung Converter Engine (never touch now)

Paid Projects (almost done)
- one web based engine (taking too much time)
- one myanmar text related program (i like this)

My Works
- My Current Cisco Network Engineering work for MPLS (its my profession, so same as ever)
- New Juniper Router configurations for IPSec Tunnels, Static, BGP to MPLS Networks (starts from 1 Oct, 2009) (a new exciting technology)

What I like to do / research
- Zawgyi 2009 for Mac OS X (imm, i need one Mac, or Emulator to run at my one)
- KeyMaster for other OSes (no idea yet)
- wxPyDict, Myanmar Text Tools to works in other OSes (its able to run but not going to release for now)
- to upgrade Burglish Systems to Zawgyi 2009 (no idea now)
- CAPTCHA Cracking (i really want to try this)
- Myanmar OCR (I like to do this)
- Myanmar Text Analyzer, Word Breaker (like to continue this)
- My Own Web Server, My Own Database Server, A Fast Search Engine (this is fun)
- Some certificates on Cisco, and Juniper (lazy though, need to learn/take at sometimes)
- learn more on FreeBSD (I need to improve this field more)

Wah, There's a lot. what should I do first or last? or Forget Everything?

Just NO IDEA, there is lots of other stuffs and personal related things left to do so.

I need to postponed or suspend or stop half of them at least.

/mark

My Blog Converted to New Zawgyi Now

My Blog Converted to New Zawgyi Now.

ကီးမာစတာ 0.4.1 မွာ ထည့္ေပးထားတဲ့ Font Converter ကို အသံုးျပုျပီး ေျပာင္းထားပါတယ္။

Cheers,

#ps, sorry for person, "may 31 born", who gave me a comment during I am export/importing the blog.
I've got your comment as email. thank you.

Everything Converted to Unicode 5.1

Everything Converted to Unicode 5.1 including Old Posts and Old Comments also.

# I did Export and Import All Posts.
# In case If my posts flood your RSS reader, please kindly use "read all" function.

Soe Min

Blog Template Converted to Unicode 5.1 and Myanmar3 Font Embedded

Blog Template Converted to Unicode 5.1 and Myanmar3 Font Embedded

ဘာျဖစ္လို့ ေျပာင္းသလဲ ဆိုရင္ ေျပာင္းခ်င္လို့ေျပာင္းပါတယ္။ အပ်င္းေျပေပါ့။
အခ်ိန္မေရြး အျခားတစ္ခုကို ထပ္ေျပာင္းရင္လဲ ေျပာင္းမွာပါ။ :-)

ေလာေလာဆယ္ေတာ့ Template ပဲေျပာင္းထားပါတယ္။ က်န္တာေတြ ေတာ့ ေျဖးေျဖးေပါ့ :D

အဓိက ေခါင္းစဉ္နဲ့ လက္သံုးစကားပဲ အေရးျကီးတာ။ :P

Cheers,

#Memo - Added Feed Burner Link

#Memo - Added Feed Burner Link

now there is two feed link,

one is original

- http://www.soemin.net/feeds/posts/default

and another one is

- http://feeds.feedburner.com/soemin-mark



They are different, feedburner will count as per reader and other one will not

Me & Lawka Ahla

Me & Lawka Ahla Magazine (Interview about my Projects)

http://www.lawka-ahla.com/news.php?item.763

ေနမေကာင္းဘူး

နေမကာေင်းဘူး။ လည်ခာေျင်းနာနေတယ်။ တုပ်ကွးေလားမသိဘူး။ ဝက်တုပ်ကွးေတာ့ေ မဟုတ်လာေက်ဘူး။ :D ဘယ်မမသွားဖြဈတာ မဖြဈသင့်ဘူး။

完璧主義-The Perfectionist

http://ja.wikipedia.org/wiki/%E5%AE%8C%E7%92%A7%E4%B8%BB%E7%BE%A9

http://en.wikipedia.org/wiki/Perfectionism_%28psychology%29


Perfectionist is the kind of Personality Disorders, and its not good, 

So I write the codes not to be Perfect, and left lots of Bugs.

LoL!

Soe Min

#Just Joke, I am Not really left bugs intentionally.

က်ေနာ္ဖတ္ေသာ အျခား ဘေလာ့ / ဆိုဒ္မ်ား