<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Khant's Kaleidoscope]]></title><description><![CDATA[I am Khant Zaw Hein.

Enjoy reading my articles relating tech and my life experiences ;)

Contact me  - contact@khantzawhein.me]]></description><link>https://khantzawhein.com</link><generator>RSS for Node</generator><lastBuildDate>Wed, 22 Apr 2026 00:49:32 GMT</lastBuildDate><atom:link href="https://khantzawhein.com/rss.xml" rel="self" type="application/rss+xml"/><language><![CDATA[en]]></language><ttl>60</ttl><item><title><![CDATA[Setup Laravel Pint in Git Pre-Commit Hook without using any dependencies]]></title><description><![CDATA[Laravel Pint is an opinionated automated code styling fixer. It is based on PHP-CS Fixer, but you don't need to worry about anything about what is going underneath.
You just need to install Pint, run ./vendor/bin/pint, and boom; your project is now f...]]></description><link>https://khantzawhein.com/setup-laravel-pint-in-git-pre-commit-hook-without-using-any-dependencies</link><guid isPermaLink="true">https://khantzawhein.com/setup-laravel-pint-in-git-pre-commit-hook-without-using-any-dependencies</guid><category><![CDATA[Laravel]]></category><category><![CDATA[Pint]]></category><category><![CDATA[laravel pint]]></category><category><![CDATA[Git]]></category><category><![CDATA[git-hooks]]></category><dc:creator><![CDATA[Khant Zaw Hein]]></dc:creator><pubDate>Sat, 13 May 2023 14:41:51 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1683988777067/e2cbbad4-cb85-47db-8219-a916fbff099a.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p><img src="https://github.com/laravel/pint/raw/HEAD/art/logo.svg" alt="Logo Laravel Pint" class="image--center mx-auto" /></p>
<p><a target="_blank" href="https://laravel.com/docs/pint">Laravel Pint</a> is an opinionated automated code styling fixer. It is based on <a target="_blank" href="https://github.com/PHP-CS-Fixer/PHP-CS-Fixer">PHP-CS Fixer</a>, but you don't need to worry about anything about what is going underneath.</p>
<p>You just need to install Pint, run <code>./vendor/bin/pint</code>, and boom; your project is now fixed with Laravel's code styling. It's that simple.</p>
<p>But what is not simple is that we need to ensure every developer in the project team uses Pint. However, it is not an easy job to enforce that every developer runs it manually each time they commit a change.</p>
<p>So what about using a node package like <a target="_blank" href="https://typicode.github.io/husky/#/">Husky</a> to add Pint to the pre-commit?</p>
<p>It might work, but it needs to run <code>npm install</code> on each developer's machine to setup the hook.</p>
<p>So what if the project doesn't use <code>npm</code> or even javascript at all?</p>
<p>That's when we have to think about alternatives. In this tutorial, I will use the bare-bone pre-commit hook to setup Pint.</p>
<h2 id="heading-setup">Setup</h2>
<h3 id="heading-install-laravel-pint">Install Laravel Pint</h3>
<p>Laravel Pint now comes out of the box with all new Laravel Applications.</p>
<p>If you are working on an old project, run the following:</p>
<pre><code class="lang-bash">composer require laravel/pint --dev
</code></pre>
<ol>
<li><p>Create a folder called <code>.hooks</code> in the project root</p>
</li>
<li><p>Then create a file called pre-commit and give appropriate execute permission by running the below command.</p>
<pre><code class="lang-bash"> <span class="hljs-built_in">cd</span> .hooks/
 sudo chmod 754 pre-commit
</code></pre>
</li>
<li><p>Add the following bash script to the pre-commit file. This script will run whenever you and anyone try to commit this project with git.</p>
<pre><code class="lang-bash"> <span class="hljs-comment">#!/bin/sh</span>

 <span class="hljs-comment"># Run Laravel Pint</span>
 <span class="hljs-comment"># This script will run Laravel Pint on newly staged PHP Files. </span>

 files=$(git diff --cached --name-only --diff-filter=AMCR | grep <span class="hljs-string">"\.php$"</span>)
 <span class="hljs-keyword">if</span> <span class="hljs-built_in">echo</span> <span class="hljs-string">"<span class="hljs-variable">$files</span>"</span> | grep --quiet <span class="hljs-string">"\.php$"</span>; <span class="hljs-keyword">then</span>
     <span class="hljs-built_in">echo</span> <span class="hljs-string">"Running Laravel Pint..."</span>
     ./vendor/bin/pint <span class="hljs-variable">$files</span> &amp;&amp; git add <span class="hljs-variable">$files</span>
 <span class="hljs-keyword">fi</span>
</code></pre>
</li>
<li><p>Then, we will register with the composer's <code>post-autoload-dump</code> hook to register this git hook when someone setup the project. Add this line to the <code>composer.json</code> file's <code>scripts.post-autoload-dump</code> of your project.</p>
<pre><code class="lang-bash"> git config core.hooksPath .hooks
</code></pre>
<p> It should look something like this in your <code>composer.json</code> file:</p>
<p> <img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1683987905152/5a2e261a-35e3-41f4-b91d-e749b288eb2e.png" alt class="image--center mx-auto" /></p>
</li>
<li><p>Just run the <code>composer install</code> command again, and the pre-commit hook will be registered. This should also automatically install this git hook in your teammates' machines whenever they run <code>composer install</code> or anything that triggers the <code>post-autoload-dump</code> hook such as <code>composer dump-autoload</code> command.</p>
</li>
<li><p>Now, you have successfully configured <code>pre-commit</code> hook when you see Laravel Pint running when committing something. :)</p>
</li>
</ol>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1683988609372/5aac8e04-ae6c-45d8-b13a-ead0b51f05e3.png" alt class="image--center mx-auto" /></p>
]]></content:encoded></item><item><title><![CDATA[Chiang Mai University - CMU အကြောင်းတစေ့တစောင်း - Part Three (Updated 2024)]]></title><description><![CDATA[Part Three - After Admission
Previous Parts
အရှေ့အပိုင်း ၁ မှာ CMU နဲ့ပတ်သက်ပြီး information အနည်းငယ်ကိုရေးပေးထားပါတယ်။
Part 1 - စီမူ (Chiang Mai University - CMU) အကြောင်းတစေ့တစောင်း - Part One
အပိုင်း ၂ မှာ CMU ဝင်ခွင့်နဲ့ပတ်သက်ပြီး ဖတ်ရှုနိုင်မှာဖ...]]></description><link>https://khantzawhein.com/chiang-mai-university-cmu-part-three-updated-2024</link><guid isPermaLink="true">https://khantzawhein.com/chiang-mai-university-cmu-part-three-updated-2024</guid><category><![CDATA[Chiang Mai University]]></category><category><![CDATA[myanmar]]></category><category><![CDATA[university]]></category><category><![CDATA[University In Thailand]]></category><dc:creator><![CDATA[Khant Zaw Hein]]></dc:creator><pubDate>Tue, 04 Apr 2023 14:44:57 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1680619327736/016f0556-a8b7-4d7a-8e47-73d3034e8bb7.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<h1 id="heading-part-three-after-admission">Part Three - After Admission</h1>
<h2 id="heading-previous-parts">Previous Parts</h2>
<p>အရှေ့အပိုင်း ၁ မှာ CMU နဲ့ပတ်သက်ပြီး information အနည်းငယ်ကိုရေးပေးထားပါတယ်။</p>
<p>Part 1 - <a target="_blank" href="https://khantzawhein.me/chiang-mai-university-cmu-part-one"><strong>စီမူ (Chiang Mai University - CMU) အကြောင်းတစေ့တစောင်း - Part One</strong></a></p>
<p>အပိုင်း ၂ မှာ CMU ဝင်ခွင့်နဲ့ပတ်သက်ပြီး ဖတ်ရှုနိုင်မှာဖြစ်ပါတယ်။</p>
<p>Part 2 - <a target="_blank" href="https://khantzawhein.me/chiang-mai-university-cmu-part-two">စီမူ (Chiang Mai University - CMU) အကြောင်းတစေ့တစောင်း - Part Two</a></p>
<p>ယခုအပိုင်း ၃ မှာတော့ CMU မှာတက်မယ်ဆိုရင် ကုန်ကျစရိတ်နဲ့ကြောင်းတွင်းအဆောင်အကြောင်းအဓိက ‌ရေးသားပေးထားပါတယ်</p>
<h2 id="heading-costs">Costs - ကုန်ကျစရိတ်?</h2>
<h3 id="heading-tuition-fee">Tuition Fee</h3>
<p>Tution Fee က တော့ ၂၀၂၄ ဝင်ခွင့်အတွက် တစ် semester ကို THB 55000 က စပါတယ်။<br />International Student အတွက် ဒီနှစ်က စပြီး THB 20000 တက်သွားတာပါ။</p>
<p>တချို့ Program မှာ ဆိုရင် Registration Fee ပေးရတာမျိုးရှိပါတယ်။</p>
<p>အောက်ကဇယားထဲမှာကြည့်လို့ရပါတယ်။ 👇</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1711646668907/3acef469-5e2c-46a4-997e-a4b0337c41f3.png" alt class="image--center mx-auto" /></p>
<h3 id="heading-living-costs">Living Costs ?</h3>
<p>ယေဘုယျ အခြေခံ ကုန်ကျစရိတ်တွေကို ကြည့်ရတာရှင်းအောင် အောက်မှာဇယားလေးနဲ့ဖော်ပြပေးထားပါတယ်။</p>
<p>Food cost ကို နေ့တိုင်း ‌Canteen သို့မဟုတ် သက်သာတဲ့နေရာမှာဝယ်စားတယ်လို့ ယူဆပြီးတွက်ပေးထားပါတယ်</p>
<div class="hn-table">
<table>
<thead>
<tr>
<td>What</td><td>Frequency</td><td>How much (in Baht)</td></tr>
</thead>
<tbody>
<tr>
<td>Breakfast / Lunch / Dinner</td><td>3 times / day</td><td>60 x 3 = 180 / day</td></tr>
<tr>
<td>Personal Monthly Costs</td><td>Monthly</td><td>1500</td></tr>
<tr>
<td>Accommodation (Non Renovated Dorm)</td><td>Per semester</td><td>2200</td></tr>
<tr>
<td>Visa Extension</td><td>Yearly</td><td>1900</td></tr>
<tr>
<td>Health Insurance</td><td>Yearly</td><td>4000-6000</td></tr>
<tr>
<td><strong><em>Average Monthly Cost</em></strong></td><td></td><td><strong><em>4000-6500</em></strong></td></tr>
</tbody>
</table>
</div><p>ကိုယ်ခြိုးခြံချွေတာနိုင်ရင် ချွေတာနိုင်သလို တစ်လကို ၃၅၀၀ - ၄၀၀၀ ကြား နဲ့ နေထိုင်လို့ရပြီး ‌သုံးရင်လဲသုံးသလောက် တစ်လကို 5000 အထက် ကုန်နိုင်ပါတယ်။</p>
<p>In-Campus Dormitory မရရင် တော့ တစ်လကို 7500 နှင့်အထက်ကုန်ကျနိုင်ပါတယ်။</p>
<h3 id="heading-scholarships">Scholarships?</h3>
<p>Entrance Scholarship နဲ့ Faculty Scholarship တွေရှိတတ်ပါတယ်။ များသော အားဖြင့် Humanitarian နဲ့ Engineering Faculty နဲ့သက်ဆိုင်တဲ့ ဘာသာတွေမှာ ပေးတာများပါတယ်။ (Eg. Social Science, Humanities, Mechanical Engineering.. etc)</p>
<p>စာရေးသူရဲ့ Software Engineering ရဲ့ Faculty ဖြစ်တဲ့ CAMT မှာတော့ ‌Entrance Scholarship ကော Faculty Scholarship ကော တစ်ခုမှမရှိဘူးလို့ မျက်ရည်နှစ်စက်နဲ့ပြောပြလိုက်ပါတယ် TT</p>
<p>ကျောင်း Scholarship မရှိလဲ NGO Scholarship တွေဖြစ်တဲ့ Child's Dreams, Prospect Burma, USAID DISP တို့ကိုတော့လျှောက်ထားနိုင်ပါသေးတယ်။</p>
<h2 id="heading-accommodation-dorm">Accommodation / Dorm</h2>
<p>ဒီနေရာမှာတော့ ကျောင်းရဲ့ Dorm တွေအကြောင်းပဲအဓိက ထားပြီးပြောပေးပါမယ်။ ဘာလို့ဆိုတော့ စာရေးသူတုန်းက ကျောင်းတွင်း အဆောင် (In-Campus Dorm) ရဖို့ကို နည်းနည်းတိုင်ပတ်ခဲ့လို့ပါ။ (ကျောင်းက staff တွေကလဲ dorm ကိစ္စအတွက် information provide မလုပ်ပေးကြပါဘူး)</p>
<p>Update: ကျောင်းတွင်း အဆောင်တွေက 2024 မှာ‌ ရနိုင်ဖို့ခက်ခဲပါသွားပါတယ်။ ထိုင်းကျောင်းသားတွေကို ဦးစားပေးတာနဲ့ အချို့အဆောင်တွေ renovation လုပ်ဖို့ပိတ်သွားလို့ပါ။</p>
<p>အပြင်မှာ တိုက်ခန်းငှားနေမယ်ဆိုရင်တော့ ကျောင်းနားတစ်ဝိုက် walking area မှာဆို အနည်းဆုံး ၂ယောက် နေလို့ရတဲ့ အခန်းကို ၃၅၀၀ ကနေ စပြီး ၆၀၀၀ - ၈၀၀၀ ထိ ရေမီး မပါ ကုန်ကျစရိတ်ရှိနိုင်ပါတယ်။</p>
<h3 id="heading-4ych4ycg4ycx4ycs4yce4yc64ycy4yca4yc64ycq4ycx4ycs4yc34ycf4ycc4yc74yc4ycx4ycs4yca4yc64ycc4yct4ycv4yc34ycb4ycc4ycypw">အဆောင်ဘယ်တော့စလျှောက်လို့ရလဲ?</h3>
<p>မိမိ လျှောက်တဲ့ Round ရဲ့ admission result ထွက်အပြီး ၂ပတ်လောက်အတွင်းမှာ လျှောက်ရပါမယ်</p>
<p>ရက်အတိအကျကို <a target="_blank" href="https://udo.oop.cmu.ac.th">udo.oop.cmu.ac.th</a> နဲ့ <a target="_blank" href="https://roombooking.reg.cmu.ac.th/">roombooking.reg.cmu.ac.th</a> မှာကြည့်လို့ရပါတယ် (ထိုင်းလိုတွေရေးထားမှာဖြစ်တဲ့အတွက် Google Translate နဲ့တော့ဖတ်ရပါလိမ့်မယ်)</p>
<h3 id="heading-in-campus-dorm">In-Campus Dorm ကဘယ်လိုမျိုးလဲ?</h3>
<h3 id="heading-shared-bathroom-no-ac">Shared Bathroom - No A/C</h3>
<p>ကျောင်းထဲက Dorm အကုန်နီးပါးက Shared Bathroom ဖြစ်ပြီး A/C မပါကြပါဘူး</p>
<p>ဒါပေမယ့် Non-Renovated Dorm တွေက ဈေးသင့်တော် လို့ မြန်မာတွေတော်တော်များများနေ ကြပါတယ်</p>
<p>Renovated Dorm ကတော့ Facility ကောင်းကောင်းနဲ့နေချင်တဲ့သူတွေအတွက်ပေါ့ ;)</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1680619424540/ccaf4d75-5bc1-46e7-97d1-16532704ca5b.jpeg" alt class="image--center mx-auto" /></p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1680619383418/ce07c230-5f0e-460f-9f15-2df36d2dec76.jpeg" alt class="image--center mx-auto" /></p>
<blockquote>
<p>Caption - Female Dormitory 6 - Renovated</p>
</blockquote>
<p>ဓာတ််ပုံတွေဒီမှာကြည့်လို့ရပါတယ် - <a target="_blank" href="https://udo.oop.cmu.ac.th/en/index.php?op=subcontent&amp;do=main">Room List - University Dormitory Office - CMU</a></p>
<div class="hn-table">
<table>
<thead>
<tr>
<td>Dorm</td><td>Bedding / Room</td><td>Cost / Semester / Person (Baht)</td></tr>
</thead>
<tbody>
<tr>
<td>Male Dorm 3/4 (Renovated)</td><td>2</td><td>8750 + 2000 (Deposit)</td></tr>
<tr>
<td>Male Dorm 5/6</td><td>3</td><td>2200 + 100 (Deposit)</td></tr>
<tr>
<td>Male Dorm 7</td><td>2</td><td>2200 + 100 (Deposit)</td></tr>
<tr>
<td>Female Dorm 1/2/3/8</td><td>3</td><td>2200 + 100 (Deposit)</td></tr>
<tr>
<td>Female Dorm 4/5/6/7 (Renovated)</td><td>2</td><td>8750 + 2000 (Deposit)</td></tr>
</tbody>
</table>
</div><h3 id="heading-private-bathroom-with-ac-twin-rooms">Private Bathroom with A/C (Twin Rooms)</h3>
<p>ဒီ new dorm တွေက တော့ walk-in သို့မဟုတ် facebook page က နေ စာရင်းပေးပြီးမှ နေလို့ရတာပါ။ တစ်လကို ဘတ် ၂၅၀၀ ရှိပြီး မီးဖိုး နဲ့ ရေဖိုးသက်သက်ထပ်ပေးရပါတယ်။</p>
<p>Facebook Page - <a target="_blank" href="https://www.facebook.com/newdormcmu">https://www.facebook.com/newdormcmu</a></p>
<p><img src="https://udo.oop.cmu.ac.th/img_dorm/dorm_pic/review/m1m2/bedroom.jpg" alt /></p>
<blockquote>
<p>Caption - Male Dormitory 1</p>
</blockquote>
<div class="hn-table">
<table>
<thead>
<tr>
<td>Dorm</td><td>Cost / Month / Person</td><td>Electricity / Unit</td><td>Water / Unit</td></tr>
</thead>
<tbody>
<tr>
<td>Male Dorm 1/2</td><td>2500 + 2500 (Deposit)</td><td>6 Baht</td><td>10 Baht</td></tr>
<tr>
<td>Female Dorm 11/12</td><td>2500 + 2500 (Deposit)</td><td>6 Baht</td><td>10 Baht</td></tr>
</tbody>
</table>
</div><h3 id="heading-4ycy4yca4yc64ycc4yct4ycv4ycc4yc74yc4ycx4ycs4yca4yc64ycb4ycz4yc4ycs4ycc4ycypw">ဘယ်လိုလျှောက်ရမှာလဲ?</h3>
<p>CMU က ‌အခုနှစ် (၂၀၂၃) ကစပြီး International Student ‌အနေနဲ့ register လုပ်ပြီး လျှောက်မယ်ဆိုရင် ကျောင်းအပြင်ဘက်က apartment တွေပဲပေးတော့ပါတယ်။ ‌သို့ပေမယ့် အဲ့အပြင် Apartment တွေဈေးကလဲမြင့်တာမို့ မြန်မာကျောင်းသားတွေကြားမှာ လူကြိုက်နည်းကြပါတယ်</p>
<p>International Student Dormitory E-Book - <a target="_blank" href="https://online.pubhtml5.com/pmyt/hqwy/">https://online.pubhtml5.com/pmyt/hqwy/</a></p>
<p>ဒါပေမယ့် လက်ရှိ In-Campus Dorm တွေမှာ 2567 Batch (2024) ကစပြီး Walk-in ပဲလျှောက်လို့ရပါတော့မယ်။ အချို့မိန်းကလေး အဆောင်တွေက renovation လုပ်နေတဲ့အတွက် အဆောင်အရေအတွက်လျော့သွားပြီး နေချင်တဲ့ကျောင်းသားတွေပိုများလာတာမို့ အဆောင်ရဖို့ ဆို ‌Waiting List ပေးပြီးစောင့်မှရနိုင်ပါတော့မယ်။</p>
<h3 id="heading-in-campus-vs-out-campus">In-Campus vs. Out-Campus</h3>
<p>အထက်မှာ ဇယားနဲ့ပြောပြခဲ့တဲ့ Dorm အကုန်လုံးက In-Campus Dorm တွေဖြစ်ပါတယ်။ In-Campus Dorm ဆိုတာနဲ့အညီီ ကျောင်းထဲမှာတည်ရှိပြီးတော့ သွားရလာရလွယ်ကုန်ပြီး ‌အခန်းစရိတ်လဲ အလွန်သက်သာတဲ့ထဲပါပါတယ်။</p>
<p>သို့ပေမယ့် In-Campus Dorm တွေမှာနိုင်ငံခြားကျောင်းသားအများစုမနေကြပါဘူး ထိုင်းကျောင်းသားတွေနဲ့ မြန်မာ ကျောင်းသား တွေပဲအဓိက နေထိုင်ကြပါတယ်။ ဒီနေရာမှာနိုင်ငံခြားကျောင်းသားဆိုတာ မြန်မာမဟုတ်တဲ့ကျောင်းသားတွေကိုပြောတာပါ :3</p>
<p>ထို့အတူ Pros and Cons လေးတွေတော့ရှိလာပါတယ်</p>
<p>Pros အနေနဲ့ပြောရရင် ကျောင်းထဲနေရတာက</p>
<ul>
<li><p>နေထိုင်စရိတ်အလွန်သက်သာတယ်</p>
</li>
<li><p>မီးနဲ့ရေဖိုးသက်သက်ထပ်ပေးစရာမလိုဘူး (A/C Dorm ကလွဲ)</p>
</li>
<li><p>ကုန်ကျစရိတ် fixed လုပ်ပြီးသားဖြစ်တယ်</p>
</li>
<li><p>Wifi ကကျောင်းထဲနေရာတိုင်းမှာရတဲ့ အပြင် Dorm တွေမှာလဲ လိုင်းကောင်းရင် 1Gbps ထိတက်တဲ့ wifi ‌hotspot တွေတပ်ဆင်ပေးထားတယ်</p>
</li>
<li><p>ရေသန့်စက်တွေနေရာတိုင်း အထပ်တိုင်း ထားပေးထားတာ</p>
</li>
<li><p>အကြွေစေ့ အဝတ်လျှော်စက်တွေရှိတာ</p>
</li>
<li><p>ကျောင်းထဲ သွားရလာရတာ နီးတာ</p>
</li>
<li><p>အဆောင်တိုင်းမှာ A/C Reading Room နဲ့ Computer Room ရှိတာ</p>
</li>
</ul>
<p>Cons အနေနဲ့ကတော့</p>
<ul>
<li><p>ထိုင်းကျောင်းသားအတွက်အဓိက ‌နေထိုင်ခွင့်ပေးတာဖြစ်တဲ့အတွက် Dorm Staff တွေက English လိုမရကြတာများပါတယ်</p>
</li>
<li><p>အဆောင်ပိတ်ချိန်ရှိတာ (ည ၁၂ ဆိုပိတ်ပါတယ်)</p>
</li>
<li><p>ပထမနှစ်ကိုသာ အဓိကပေးတဲ့အတွက် ဒုတိယနှစ်ကစပြီး လိုအပ်တဲ့သူတွေကိုပဲပေးတာမို့ ‌Interview ပြန်ဖြေရတာ</p>
</li>
<li><p>အပြင်လူ (လုံးဝ) အခန်းထဲ ခေါ်လို့မရပါဘူး</p>
</li>
<li><p>အခန်းအကျယ်ဝန်း နည်းတာ</p>
</li>
<li><p>ဟင်းချက် ဖို့အတွက် အဆင်မပြေတာ (ထမင်းအိုး ရေနွေးအိုးတော့တည်လို့ရပါတယ်)</p>
</li>
<li><p>အဆောင်ဖြစ်တဲ့အတွက် ‌အဆောင်စည်းကမ်းလိုက်နာရတာတွေ ရှိပါတယ်</p>
</li>
</ul>
<p>ခြုံပြောရမယ်ဆို ရင် ကျောင်းအဆောင်မှာနေတာက အိမ်ခန်းငှားခ ကို မရှိသလောက်နီးနီးလျော့ချပေးနိုင်တဲ့အတွက် Budget အနေနဲ့ ကျောင်းတက် မယ်ဆိုရင်တော့ ကျောင်းသားတစ်ယောက် အတွက်လိုအပ်တာ အကုန် လုံလုံလောက်လောက်ရှိတဲ့ အဆောင်မှာပဲနေဖို့အကြုံပြုလိုပါတယ်။</p>
]]></content:encoded></item><item><title><![CDATA[Chiang Mai University - CMU အကြောင်းတစေ့တစောင်း - Part Two (Updated 2024)]]></title><description><![CDATA[Part Two - How to get into CMU?
Previous Part
အရှေ့အပိုင်း ၁ မှာ CMU နဲ့ပတ်သက်ပြီး information အနည်းငယ်ကိုရေးပေးထားပါတယ်။ယခုအပိုင်း ၂ မှာ CMU ဝင်ခွင့်နဲ့ပတ်သက်ပြီး ဆက်လက်ဖတ်ရှုနိုင်မှာဖြစ်ပါတယ်။
Part 1 - စီမူ (Chiang Mai University - CMU) အကြောင်းတစေ...]]></description><link>https://khantzawhein.com/chiang-mai-university-cmu-part-two</link><guid isPermaLink="true">https://khantzawhein.com/chiang-mai-university-cmu-part-two</guid><category><![CDATA[Chiang Mai University]]></category><category><![CDATA[University In Thailand]]></category><category><![CDATA[myanmar]]></category><category><![CDATA[university]]></category><dc:creator><![CDATA[Khant Zaw Hein]]></dc:creator><pubDate>Mon, 03 Apr 2023 20:06:17 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1680619228863/28ba9e7a-cff8-41b0-be5f-19544d8edf39.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<h1 id="heading-part-two-how-to-get-into-cmu">Part Two - How to get into CMU?</h1>
<h2 id="heading-previous-part">Previous Part</h2>
<p>အရှေ့အပိုင်း ၁ မှာ CMU နဲ့ပတ်သက်ပြီး information အနည်းငယ်ကိုရေးပေးထားပါတယ်။<br />ယခုအပိုင်း ၂ မှာ CMU ဝင်ခွင့်နဲ့ပတ်သက်ပြီး ဆက်လက်ဖတ်ရှုနိုင်မှာဖြစ်ပါတယ်။</p>
<p>Part 1 - <a target="_blank" href="https://khantzawhein.me/chiang-mai-university-cmu-part-one">စီမူ (Chiang Mai University - CMU) အကြောင်းတစေ့တစောင်း - Part One</a></p>
<h2 id="heading-entrance-requirements">Entrance Requirements</h2>
<p>ဒီနေရာမှာ ‌ကျောင်းလျှောက်မယ်ဆိုရင် သတိထားစေချင်တာ က မြန်မာက ဆယ်တန်းအောင်ရုံနဲ့ ‌ဝင်ခွင့်မပေးပါဘူး။ ထိုင်းပညာရေးစနစ်က ၁၂တန်းဖြစ်တဲ့အတွက် တက္ကသိုလ်တစ်ခုခုက ပထမနှစ် သို့မဟုတ် GED ‌ဖြေပြီးမှလျှောက်လို့ရပါတယ်။ အသေးစိတ်ကိုဒီမှာ ကြည့်လို့ရပါတယ်</p>
<p><a target="_blank" href="https://admission.reg.cmu.ac.th/reg-ipas/main/index.php">CMU Entrance Announcement</a></p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1711646197708/79f44b61-7162-4588-9e0c-76eaa855e660.png" alt class="image--center mx-auto" /></p>
<blockquote>
<p>အပေါ် က Announcement Link မှာ တင်ပေးထားတဲ့ Official Announcement ကိုသေချာဖတ်စေချင်ပါတယ် အဲ့ဒီမှာ လိုအပ်တဲ့အချက်အလက်အကုန်နီးပါးထည့်ပေးထားပါတယ်။</p>
</blockquote>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1680544098754/7b66c1a6-18c4-4675-8ceb-c3da2fca94a7.png" alt class="image--center mx-auto" /></p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1680544127181/0ae2ac4d-74d1-42bc-b1e4-031442b6e523.png" alt class="image--center mx-auto" /></p>
<h2 id="heading-english-requirements">English Requirements</h2>
<p>English Qualification အတွက် IELTS, TOEFL စသဖြင့်ရှိပြီးသတ်မှတ်ထားတဲ့ အမှတ်မှီရင် ‌ထည့်လျှောက်လို့ရသလို မရှိပါက English Entrance ဖြေပြီးလျှောက်လို့ရပါတယ်။</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1711646368146/8ffe033e-5756-49a0-9fac-744a91602647.png" alt class="image--center mx-auto" /></p>
<h2 id="heading-3-rounds-for-application">3 Rounds for Application</h2>
<p>CMU မှာ entrance application တင်ဖို့ ရက်အပိုင်းအခြား (Round) ၃ခုရှိပါတယ် Round တစ်ခုနဲ့တစ်ခု အချိန်မတူသလို လျှောက်လို့ရနိုင်တဲ့မေဂျာတွေလဲမတူပါဘူး</p>
<p>Schedule ကို ဒီလင့်ကနေကြည့်လို့ရပါတယ်။</p>
<p><a target="_blank" href="https://admission.reg.cmu.ac.th/reg-ipas/main/index.php">CMU Entrance Schedules</a></p>
<h2 id="heading-entrance-exam-amp-interview">Entrance Exam &amp; Interview</h2>
<h3 id="heading-a-special-track">a. Special Track</h3>
<p>CMU Entrance Application မှာ Regular Track နဲ့ Special Track ဆိုပြီးနှစ်မျိုးရှိပါတယ်။ Special Track ဆိုတာ SAT ‌ဖြေဆိုထားတဲ့သူတွေအတွက်ပါ။ SAT Score ရှိရင်လဲ သက်ဆိုင်ရာ Major အလိုက်အမှတ်မှီရပါဦးမယ်။ Special Track သမားတွေက Entrance Exam ဖြေဆိုစရာမလိုအပ်ပါဘူး။</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1711647400379/0cf6987c-4a2f-4533-b94a-922531aa5c03.png" alt class="image--center mx-auto" /></p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1711647411326/4d53c804-ceba-4939-9487-7c29af2b4c07.png" alt class="image--center mx-auto" /></p>
<h3 id="heading-b-regular-track">b. Regular Track</h3>
<p>Regular Track မှာတော့ လျှောက်ထားတဲ့ မေဂျာ အလိုက် ဖြေရတဲ့ Entrance Exam တွေမတူကြပါဘူး စာရေးသူကတော့ SE ‌ကိုလျှောက်ခဲ့တဲ့အတွက် SE Aplitude Test + Mathematics ဖြေရပါတယ်။ ဘာတွေဖြေရမလဲသိချင်ရင် သက်ဆိုင်ရာ faculty ကို email နဲ့ပို့ပြီးမေးလို့ရပါတယ်။</p>
<p>သက်ဆိုင်ရာ Entrance Exam အောင်သွားရင် Zoom Interview ဖြေရပါတယ်။ Zoom Interview မှာ မေးတဲ့သူတွေက သက်ဆိုင်ရာ Faculty က Professor တွေဖြစ်ပြီး ဘာသာရပ်နဲ့သက်ဆိုင်တဲ့မေးခွန်း တချို့ကိုမေးတတ်ပါတယ်။</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1711647309341/ffc17d99-bb79-4589-a456-59dfcdf36c93.png" alt class="image--center mx-auto" /></p>
<h2 id="heading-document-checklist">Document Checklist</h2>
<ol>
<li><p>ဆယ်တန်းအောင်လက်မှတ် + Notary</p>
</li>
<li><p>ဆယ်တန်းအမှတ်စာရင်း + Notary</p>
</li>
<li><p>ပထမနှစ် အမှတ်စာရင်း သို့မဟုတ် Internationally Recognized Test Result</p>
</li>
<li><p>နောက်ခံအဖြူ ၂x၂ ဓာတ်ပုံ</p>
</li>
<li><p>Passport Front Page Scan</p>
</li>
<li><p>Application Fee - 1200 Baht</p>
</li>
<li><p>English Test Fee (IELTS, TOEFL etc မရှိမှသာ) - 400 Baht</p>
</li>
<li><p>ဘာသာရပ်အလိုက် ထပ်ဆောင်းလိုအပ်တဲ့ documents များ</p>
</li>
</ol>
<h1 id="heading-part-three">Part Three</h1>
<p>နောက်တစ်ပိုင်းမှာ Living Cost နဲ့ Accomodation အကြောင်းကိုဆက်လက်ဖတ်ရှုနိုင်ပါတယ်</p>
<p><a target="_blank" href="https://khantzawhein.me/chiang-mai-university-cmu-part-three">https://khantzawhein.me/chiang-mai-university-cmu-part-three</a></p>
]]></content:encoded></item><item><title><![CDATA[Chiang Mai University - CMU အကြောင်းတစေ့တစောင်း - Part One (Updated 2024)]]></title><description><![CDATA[Part One - Intro To CMU
နိဒါန်း
အခုဆိုရင် စာရေးသူ ချင်းမိုင်(ဇင်းမယ်) တက္ကသိုလ် ဆိုတာကြီးမှာ တက်လာတာ တစ်နှစ်ပြည့်လို့ အိမ်ပြန်ချိန်တစ်ဖန်ရောက်ခဲ့ပြီပေါ့ဗျာ။ အခုဆိုရင် စာရေးသူလဲဲ ချင်းမိုင်တက္ကသိုလ် ဆိုတာဘယ်လိုမျိုးလဲ ဘာလဲ ဒီမှာ ကျောင်းလာတက်ရတာ အကျိုး...]]></description><link>https://khantzawhein.com/chiang-mai-university-cmu-part-one-updated-2024</link><guid isPermaLink="true">https://khantzawhein.com/chiang-mai-university-cmu-part-one-updated-2024</guid><category><![CDATA[myanmar]]></category><category><![CDATA[university]]></category><category><![CDATA[Chiang Mai University]]></category><category><![CDATA[University In Thailand]]></category><category><![CDATA[CMU]]></category><dc:creator><![CDATA[Khant Zaw Hein]]></dc:creator><pubDate>Mon, 03 Apr 2023 19:57:03 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1680551717201/55f4b8a6-ce62-414b-b31d-668d6046de19.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<h1 id="heading-part-one-intro-to-cmu">Part One - Intro To CMU</h1>
<h2 id="heading-4ycu4yct4ycs4ycr4ycu4yc64yc4">နိဒါန်း</h2>
<p>အခုဆိုရင် စာရေးသူ ချင်းမိုင်(ဇင်းမယ်) တက္ကသိုလ် ဆိုတာကြီးမှာ တက်လာတာ တစ်နှစ်ပြည့်လို့ အိမ်ပြန်ချိန်တစ်ဖန်ရောက်ခဲ့ပြီပေါ့ဗျာ။ အခုဆိုရင် စာရေးသူလဲဲ ချင်းမိုင်တက္ကသိုလ် ဆိုတာဘယ်လိုမျိုးလဲ ဘာလဲ ဒီမှာ ကျောင်းလာတက်ရတာ အကျိုးရှိရဲ့လား ကုန်ကျစရိတ်နဲ့ ပြန်ရတဲ့ ပညာရေးအဆင်အတန်း စသဖြင့် ရီဗျူးလေးတွေပေးလို့ရသင့်သလောက်တော့ရနေပါပြီ။</p>
<p>အခုနောက်ပိုင်း မြန်မာနိုင်ငံရဲ့ ဆိုးဝါး လာနေတဲ့အခြေအနေ ကြောင့် မြန်မာနိုင်ငံက Uni Student တွေ ဒီကျောင်းကို စိတ်ဝင်စားမှုများလို့ အခုလို Article လေးတစ်ခု သေသေချာချာရေးဖို့ဖြစ်လာခဲ့တာပါ။</p>
<h2 id="heading-quick-facts">Quick Facts ;)</h2>
<p>ဒီအပိုင်းကတော့ Google မှာရှာလဲရတာမို့ တိုတိုတောင်းတောင်းပဲထည့်ပေးပါတော့မယ်</p>
<p>ချင်းမိုင် တက္ကသိုလ် က ထိုင်းမှာ အဆင့် ၃ ရှိပြီး (Mahidol University, Chulalongkorn University ပြီးရင်) QS World Ranking မှာ #571 ရှိပါတယ်။</p>
<p>Campus ကလဲ တစ်ခုတည်းရှိတာမဟုတ်ပဲ Main Campus, Suandok Campus (Medical ပိုင်း နဲ့ Nursing အတွက်) နဲ့ Mae-Hia Campus (Agriculture အတွက်) ဆိုပြီးရှိပါတယ်။</p>
<p>သင်ကြားပေးတဲ့ Course တွေထဲမှာဆိုရင် Thai Program ထဲမှာ ဆို ပါးစပ်ထဲကရွတ်သမျှ course တိုင်း (Medical, Dentist, Nursing က စလို့ Science, Art &amp; Literature, Engineering, IT) CMU မှာရှိပါတယ်</p>
<p>International Program အနေနဲ့ Art &amp; Literature, Engineering, IT နဲ့ ဒီနှစ်မှထပ်တိုးထားတဲ့ Accountancy Major အပါအဝင် မေဂျာ ၁၅ ခုရှိပါတယ်။ အသေးစိတ်ကိုတော့ဒီမှာသွားကြည့်လို့ရပါတယ်။ - <a target="_blank" href="https://admission.reg.cmu.ac.th/reg-ipas/main/index.php?action=p">International Programs - CMU</a></p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1711646035116/c0bf4693-19af-4797-a00c-a55ab900f7de.png" alt class="image--center mx-auto" /></p>
<blockquote>
<p>အထက်ပါ Program များအပြင် Bachelor in Accountancy ဆိုတဲ့ Program အသစ်ထပ်တိုးထားပါတယ်</p>
</blockquote>
<h2 id="heading-education-quality">Education Quality - သင်ကြားမှုအဆင့်အတန်း</h2>
<p>ဒီအကြောင်းကို ပြောရမယ်ဆိုရင် စာရေးသူက Faculty က College of Arts and Media (CAMT) အောက်က Software Engineering (SE) Program ကိုတက်ရောက်နေတာပါ။</p>
<p>စာရေးသူက ဒီ faculty တစ်ခုမှာပဲတက်ဖူးတာ ဆိုတော့ ဒီ faculty အကြောင်းပဲ ‌ပြောပြပါမယ်</p>
<p>Teaching Facilities အပိုင်းမှာတော့ ချင်းမိုင်က မြန်မာနိုင်ငံနဲ့နယ်စပ်ထိနေပေမယ့် မြန်မာကကျောင်းတွေ နဲ့ လားလားမှမဆိုင်ပဲ နိုင်ငံတကာ အဆင့်အတန်းကိုမှီပါတယ်။</p>
<p>ထို့အတူ Course Content တွေမှာလဲပြောစရာမရှိပါဘူး သင်ကြားရမယ့် ဘာသာရပ်အတွက် သေချာပြင်ဆင်ပေးထားပါတယ်</p>
<p>သို့ပေမယ့် International Program ရဲ့ Thai Lecturer အချို့ (အချို့) တွေမှာတော့ English အနည်းငယ် အားနည်းတာတော့တွေ့ရပါတယ်။ ‌English အားနည်းတယ်ဆိုတဲ့နေရာမှာ တချို့ဆရာတွေမှာ Pronunciation ပိုင်းလောက်ပဲ အားနည်းတာရှိပေမယ့် အချို့ဆရာတွေက‌ Pronunciation ကော ပြောတဲ့ Grammar, ရေးတဲ့ Language Usage ကအစ အဆင်မပြေတာမျိုး ကြုံဖူးပါတယ်။</p>
<p>ဒါပေမယ့်လဲ ဒီလိုမျိုးအရာတွေက အင်္ဂလိပ်စကားကို Primary Language အနေနဲ့မသုံးတဲ့နိုင်ငံတိုင်းမှာ အနည်းနဲ့အများတော့ ကြုံရမှာပါ။</p>
<h2 id="heading-campus">Campus အခြေအနေကော?</h2>
<p>Campus အကြောင်းပြောရရင်တော့ ကိုယ်တိုင်လာလည်ကြည့်တာပိုကောင်းမယ်ဆိုပေမယ့် Main Campus အကြောင်း အနည်းငယ် တော့ ချီးမွှမ်းလိုက်ပါဦးမယ်</p>
<h3 id="heading-4ycq4yck4yc64ycu4ycx4ycb4ycs">တည်နေရာ</h3>
<p>ချင်းမိုင်မြို့ရဲ့ မြို့တွင်း ဧရိယာထဲမှာ တည်ရှိပါတယ် Main Campus က Doi Suthep တောင်ခြေမှာ တည်ဆောက်ထားတာဖြစ်ပြီး ‌campus ‌ရဲ့ တောင်ဘက်နဲ့ မြောက်ဘက်မှာ ညဆိုလူစည်ကားလှတဲ့ ညဈေး နှစ်ခု ရှိပါတယ်။</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1680543616546/d53d090b-2383-485c-ab6d-af4ec58d4736.jpeg" alt class="image--center mx-auto" /></p>
<h3 id="heading-main-campus">Main Campus အကျယ်အဝန်း</h3>
<p>တိတိကျကျပြောရရင် 725 ‌ဧက ကျယ်ပါတယ်။ ပြောကောင်းပြောနိုင်ပါတယ် -</p>
<blockquote>
<p>"ဟ မင်း တို့ ကျောင်းက ငါတို့ မြန်မာက ဒဂုံတက္ကသိုလ်လောက်တောင် မကျယ်ပဲနဲ့"</p>
</blockquote>
<p>အဲ့လိုထင်ရင်မှားသွားပါလိမ့်မယ် ကျောင်း ထဲမှာ အင်းယားကန်ဘောင် အသေးစားလေး နဲ့ မနက်ခင်း လမ်းလျှောက် လေ့ကျင့်ခန်းလုပ်လို့ရမယ့် ရေကန် အသေးလေးနဲ့ သေချာထိန်းသိမ်းပြင်ဆင်ထားတဲ့ပန်းခြံ တွေရှိပါတယ် ဒါ့အပြင် ကျောင်း ဧရိယာ တစ်ခုလုံးမှာ နေရာလွတ်မရှိသလောက်ကို Building တွေအပြည့် ရှိပါတယ်။ ဒါ့အပြင် သစ်ပင် တွေများလွန်းလို့ ချင်းမိုင် မြို့တွင်း ရဲ့ Green Area ဆိုလဲမမှားပါဘူး</p>
<p><img src="https://cmutefl.com/wp-content/uploads/2021/01/20597668_10213765367385655_1137600657_o-3-1024x575.jpg" alt /></p>
<h1 id="heading-part-two">Part Two</h1>
<p>CMU အကြောင်း တစေ့တစောင့် ပဲ ရေးဖို့လုပ်ထားပေမယ့် ရေးရင်း နဲ့ ရေးစရာတွေ ထပ်ပေါ်လာလို့ အပိုင်း ၃ ပိုင်းခွဲရေးဖြစ်သွားပါတယ် 😂</p>
<p>အပိုင်း ၂ မှာတော့ CMU ကို လာဖို့ဆိုရင် ဘာတွေလုပ်ရမလဲပြင်ဆင်ရမလဲဆိုတာတွေ ဆက်လက်ဖတ်ရှုနိုင်ပါတယ်</p>
<p><a target="_blank" href="https://khantzawhein.me/chiang-mai-university-cmu-part-two">စီမူ (Chiang Mai University - CMU) အကြောင်းတစေ့တစောင်း - Part Two</a></p>
<p>အပိုင်း ၃ မှာတော့ CMU မှာတက်မယ်ဆိုရင် ကုန်ကျစရိတ်နဲ့ကြောင်းတွင်းအဆောင်အကြောင်းအဓိက ‌ရေးသားပေးထားပါတယ်</p>
<p><a target="_blank" href="https://khantzawhein.me/chiang-mai-university-cmu-part-three">စီမူ (Chiang Mai University - CMU) အကြောင်းတစေ့တစောင်း - Part Three</a></p>
]]></content:encoded></item></channel></rss>