<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Thu Htet Tun</title>
    <description>The latest articles on DEV Community by Thu Htet Tun (@thuhtetdev).</description>
    <link>https://dev.to/thuhtetdev</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F580207%2Fa5ece17c-519b-46b9-9e8b-5b765841f61f.jpeg</url>
      <title>DEV Community: Thu Htet Tun</title>
      <link>https://dev.to/thuhtetdev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/thuhtetdev"/>
    <language>en</language>
    <item>
      <title>My 100 days of IOS Projects</title>
      <dc:creator>Thu Htet Tun</dc:creator>
      <pubDate>Thu, 08 May 2025 08:46:04 +0000</pubDate>
      <link>https://dev.to/thuhtetdev/my-100-days-of-ios-projects-5c47</link>
      <guid>https://dev.to/thuhtetdev/my-100-days-of-ios-projects-5c47</guid>
      <description>&lt;p&gt;from today I will start learning and building IOS projects.&lt;br&gt;
will keep posted on this dev.to daily or weekly.&lt;/p&gt;

&lt;p&gt;I am going to create a lot of posts as my daily/weekly journey for my ios learning path.&lt;/p&gt;

&lt;p&gt;today is just starting a course. &lt;br&gt;
I got my xcode and some fundamental for swiftUI 6 and swift 6.&lt;/p&gt;

&lt;p&gt;My end goal is to build a notification application to cover my website. Let's see the progress within this 3 months. May June July&lt;/p&gt;

&lt;p&gt;Alright, maybe I could not do this daily but will try my best. at least I got a tracker for my progress, haha.. &lt;/p&gt;

&lt;p&gt;lets do it&lt;/p&gt;

&lt;p&gt;May 8&lt;/p&gt;

</description>
      <category>ios</category>
      <category>swift</category>
      <category>mobile</category>
      <category>learning</category>
    </item>
    <item>
      <title>My leap day wish Feb 29</title>
      <dc:creator>Thu Htet Tun</dc:creator>
      <pubDate>Thu, 29 Feb 2024 15:38:13 +0000</pubDate>
      <link>https://dev.to/thuhtetdev/my-leap-year-wish-50b8</link>
      <guid>https://dev.to/thuhtetdev/my-leap-year-wish-50b8</guid>
      <description>&lt;p&gt;&lt;strong&gt;2024&lt;/strong&gt; &lt;br&gt;
I am working as a Software Engineer in Singapore.&lt;br&gt;
I will have an AWS SA certification in this year.&lt;br&gt;
I will try to release one small web product on production. &lt;br&gt;
I will try to do web full stack development additional Vue or React in my full-time job.&lt;br&gt;
I will try to get a solid discipline on my daily schedule to achieve the above goals. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;At the end of 2024, I want to become a AWS certified full-stack engineer.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2025&lt;/strong&gt; &lt;br&gt;
I will be still working as a Software Engineer in Singapore. &lt;br&gt;
I will try to upgrade my requirements in my professional career.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2026&lt;/strong&gt;&lt;br&gt;
I will be still working as Software Engineer in Singapore. &lt;br&gt;
I will try to promote the next level at my professional career job.&lt;br&gt;
3 years later, I want to become a solid senior software engineer at my professional career job.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2027&lt;/strong&gt;&lt;br&gt;
I might stay working as software engineer in Singapore or might relocate to USA or might train the Big tech interview questions alone to get the full-time job at Big tech companies.&lt;/p&gt;

&lt;p&gt;At 2027 next leap year, I will review myself again to become a better person than this leap year 2024.&lt;/p&gt;

&lt;p&gt;Anyways, I love to live in this moment 2024 Feb 29.&lt;br&gt;
previous 4 years ago, I started working as junior web developer and learned the new things, found my passion and live my life step by step. now I am here and all is going well for me. I am still living in my dream , breathing in and out, stay knowing myself.&lt;/p&gt;

&lt;p&gt;All is well, I love to breath every single day. &lt;br&gt;
Good luck to me!&lt;/p&gt;

</description>
      <category>productivity</category>
    </item>
    <item>
      <title>Freecodecamp Backend Development &amp; APIs (Timestamp Task My Answer)</title>
      <dc:creator>Thu Htet Tun</dc:creator>
      <pubDate>Mon, 03 Oct 2022 07:39:30 +0000</pubDate>
      <link>https://dev.to/thuhtetdev/freecodecamp-backend-development-apis-timestamp-task-my-answer-ge4</link>
      <guid>https://dev.to/thuhtetdev/freecodecamp-backend-development-apis-timestamp-task-my-answer-ge4</guid>
      <description>&lt;p&gt;`app.get("/api/:date?", function (req, res) {&lt;br&gt;
  let date = req.params.date;&lt;/p&gt;

&lt;p&gt;let unixTimeStamp, utc;&lt;/p&gt;

&lt;p&gt;if(new Date(date) == 'Invalid Date')&lt;br&gt;
  {&lt;br&gt;
     if( (new Date(parseInt(date))).getTime() == parseInt(date))&lt;br&gt;
      {&lt;br&gt;
        unixTimeStamp = parseInt(date);&lt;br&gt;
        utc = new Date(parseInt(date)).toGMTString()&lt;br&gt;
        return res.json({unix:unixTimeStamp,utc:utc});&lt;br&gt;
      }&lt;br&gt;
  }&lt;/p&gt;

&lt;p&gt;if(date === undefined){&lt;br&gt;
    unixTimeStamp = new Date().getTime()&lt;br&gt;
    utc = new Date().toGMTString()&lt;br&gt;
  }else{&lt;br&gt;
    unixTimeStamp = new Date(date).valueOf()&lt;br&gt;
    utc = new Date(date).toGMTString()&lt;br&gt;
  }&lt;/p&gt;

&lt;p&gt;if(isNaN(unixTimeStamp) &amp;amp;&amp;amp; utc === 'Invalid Date')&lt;br&gt;
  {&lt;br&gt;
    return res.json({ error : "Invalid Date"});&lt;br&gt;
  }&lt;/p&gt;

&lt;p&gt;return res.json({unix:unixTimeStamp,utc:utc});&lt;br&gt;
});`&lt;/p&gt;

</description>
      <category>programming</category>
      <category>javascript</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Want to start 100 days of Code again?</title>
      <dc:creator>Thu Htet Tun</dc:creator>
      <pubDate>Thu, 04 Aug 2022 05:28:00 +0000</pubDate>
      <link>https://dev.to/thuhtetdev/want-to-start-100-days-of-code-again-76h</link>
      <guid>https://dev.to/thuhtetdev/want-to-start-100-days-of-code-again-76h</guid>
      <description>&lt;p&gt;Hello devs,&lt;/p&gt;

&lt;p&gt;I did my first 100 days of code once.&lt;br&gt;
It got me some progress in my career.&lt;/p&gt;

&lt;p&gt;Now, I wish I could do it again to level up my career.&lt;br&gt;
I would post my 100 days of code progress in dev.to as well.&lt;/p&gt;

&lt;p&gt;month 8,9,10 will be my average challenging months to reach 100 days target.&lt;/p&gt;

&lt;p&gt;Mostly I will focus on Code structure, design patterns and AWS certified learning.&lt;/p&gt;

&lt;h2&gt;
  
  
  My Rules
&lt;/h2&gt;

&lt;p&gt;At least 1 hour studying time will be taken each day.&lt;br&gt;
After studying, will post on social media like Facebook, dev.to.&lt;br&gt;
Will track my daily progress with some app&lt;br&gt;
Will Review every week (at the end of week, mostly like Sunday night)&lt;br&gt;
Will Keep Notes&lt;br&gt;
After finishing 100 days of code, I will review myself and let everyone know about my 100 days journey&lt;/p&gt;

&lt;p&gt;Everyone, Give me energy and Wish me luck!&lt;/p&gt;

&lt;p&gt;Thanks!!&lt;/p&gt;

</description>
      <category>programming</category>
      <category>webdev</category>
      <category>tutorial</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Ways to Make Money?</title>
      <dc:creator>Thu Htet Tun</dc:creator>
      <pubDate>Sat, 02 Oct 2021 09:49:07 +0000</pubDate>
      <link>https://dev.to/thuhtetdev/ways-to-make-money-19gc</link>
      <guid>https://dev.to/thuhtetdev/ways-to-make-money-19gc</guid>
      <description>&lt;p&gt;hello guys!&lt;/p&gt;

&lt;p&gt;I won't explain you with long and complicate words for that coz everybody can make money on their own way,&lt;br&gt;
so here's the key points to modify your mind.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Don't ever think about making money is hard&lt;/li&gt;
&lt;li&gt;You can make money right now but amount will be based on yours.&lt;/li&gt;
&lt;li&gt;You can't make money right now .. it takes time to make money.. but amount will be based on yours preparation.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That's all. &lt;br&gt;
Making money is not hard. Choose your way.&lt;/p&gt;

&lt;p&gt;For me, I'm not that rich now. But I can live on my own and currently follow that No.3 rule to set up my mind. I wanna make more income streams as much as I can. I'm currently working on a full time job but I wanna expand my income by teaching and sharing. &lt;br&gt;
After that, making passive incomes will be my final target.&lt;/p&gt;

&lt;p&gt;Think about what's your method to make money.&lt;br&gt;
Share in this comment section&lt;/p&gt;

&lt;p&gt;Thanks for your time.&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>webdev</category>
      <category>career</category>
      <category>programming</category>
    </item>
    <item>
      <title>Show Custom Lat/Long Location using Google Map API</title>
      <dc:creator>Thu Htet Tun</dc:creator>
      <pubDate>Thu, 23 Sep 2021 11:59:52 +0000</pubDate>
      <link>https://dev.to/thuhtetdev/show-custom-lat-long-location-using-google-map-api-39dh</link>
      <guid>https://dev.to/thuhtetdev/show-custom-lat-long-location-using-google-map-api-39dh</guid>
      <description>&lt;p&gt;Today, I am assigned a task from my today work (Jira).&lt;br&gt;
That was I have to query available shop location and nearby rider location from database and show them on a map with its own information. &lt;/p&gt;

&lt;p&gt;For this, I used google map api. The host application is used Laravel and yes, JavaScript is a must to involve in this case.&lt;/p&gt;

&lt;p&gt;I won't tell you all my process coz it'll be boring and long. &lt;br&gt;
So, I'm going to tell you only basic steps you can follow.&lt;/p&gt;

&lt;p&gt;First step, &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Go to google developer console and get an api key.&lt;br&gt;
&lt;a href="https://developers.google.com/maps/documentation/javascript/get-api-key"&gt;https://developers.google.com/maps/documentation/javascript/get-api-key&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;add div tag in your blade template.&lt;br&gt;
map data will be render into that document using that id (map).&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;   &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;div&lt;/span&gt; &lt;span class="nx"&gt;id&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;map&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span class="sr"&gt;/div&lt;/span&gt;&lt;span class="err"&gt;&amp;gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;import google map script tag.
You've got api key from step 1 right?.
Add that api key to {your_api_key} place.
'myMap' will be the callback function name that we'll add later.
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;   &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;script&lt;/span&gt; &lt;span class="nx"&gt;src&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;https://maps.googleapis.com/maps/api/js?key={your_api_key}&amp;amp;callback=myMap&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span class="sr"&gt;/script&lt;/span&gt;&lt;span class="err"&gt;&amp;gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Add myMap function.
In this case, we add a pair of lat/long location as center and marker on map. In order to show on map, we render on map data on our div using document.getElementById('map'). It has a lot of cool features google.maps so if you are interested to test, you can do more research on this.
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;  &lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;myMap&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;

            &lt;span class="kd"&gt;var&lt;/span&gt; &lt;span class="nx"&gt;center&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="na"&gt;lat&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mf"&gt;16.81265991142744&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="na"&gt;lng&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mf"&gt;96.12810673385788&lt;/span&gt;&lt;span class="p"&gt;};&lt;/span&gt;
            &lt;span class="kd"&gt;var&lt;/span&gt; &lt;span class="nx"&gt;map&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;new&lt;/span&gt; &lt;span class="nx"&gt;google&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;maps&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;Map&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;getElementById&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;map&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;),&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
                &lt;span class="na"&gt;zoom&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;12&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
                &lt;span class="na"&gt;center&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;center&lt;/span&gt;
            &lt;span class="p"&gt;});&lt;/span&gt;
            &lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;marker&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="k"&gt;new&lt;/span&gt; &lt;span class="nx"&gt;google&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;maps&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;Marker&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt;
                 &lt;span class="na"&gt;position&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="na"&gt;lat&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mf"&gt;16.81265991142744&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="na"&gt;lng&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mf"&gt;96.12810673385788&lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;
                &lt;span class="na"&gt;map&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;map&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
              &lt;span class="na"&gt;icon&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;http://maps.google.com/mapfiles/ms/icons/green-dot.png&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;
             &lt;span class="p"&gt;});&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Yeah, you can test with multiple locations and markers and so on. That'll be pretty fun.&lt;/p&gt;

&lt;p&gt;Thanks for your time. &lt;br&gt;
See you on another blog.&lt;/p&gt;

</description>
      <category>laravel</category>
      <category>javascript</category>
      <category>webdev</category>
      <category>programming</category>
    </item>
    <item>
      <title>1 thing that got me software developer job</title>
      <dc:creator>Thu Htet Tun</dc:creator>
      <pubDate>Sun, 12 Sep 2021 06:19:41 +0000</pubDate>
      <link>https://dev.to/thuhtetdev/1-thing-that-got-me-software-developer-job-1epf</link>
      <guid>https://dev.to/thuhtetdev/1-thing-that-got-me-software-developer-job-1epf</guid>
      <description>&lt;p&gt;Hello dev!&lt;/p&gt;

&lt;p&gt;There is one important thing that got me first software developer job.&lt;/p&gt;

&lt;p&gt;I'm not going to explain with long letters. But will tell you the key point. It is not hard work or dedication or any others.&lt;/p&gt;

&lt;p&gt;For me, it was that I coded programs for free. &lt;/p&gt;

&lt;p&gt;I learned first. I applied it with small projects.&lt;br&gt;
Then, I asked for real-world projects from my friends' family businesses and others sources.&lt;/p&gt;

&lt;p&gt;Actually, I did not get paid from it. &lt;br&gt;
I did not ask for it also.&lt;br&gt;
But I got a lot of experience from building that projects.&lt;br&gt;
Also, I'm more confident to apply software developer job application.&lt;/p&gt;

&lt;p&gt;&lt;br&gt;&lt;br&gt;
The key point to get a job for me is doing real-world projects with FREE. &lt;br&gt;
&lt;br&gt;&lt;br&gt;
In this way, I got client networks, developer networks, experiences, and jobs. &lt;/p&gt;

&lt;p&gt;I hope this will help you to see my way to get a job. &lt;/p&gt;

&lt;p&gt;Pls Share us How you get your first job in this comment section.&lt;/p&gt;

&lt;p&gt;Thanks for your time.&lt;/p&gt;

</description>
      <category>programming</category>
      <category>webdev</category>
      <category>career</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>How About Your 100 daysOfCode?</title>
      <dc:creator>Thu Htet Tun</dc:creator>
      <pubDate>Sun, 05 Sep 2021 09:34:34 +0000</pubDate>
      <link>https://dev.to/thuhtetdev/how-about-your-100-daysofcode-516i</link>
      <guid>https://dev.to/thuhtetdev/how-about-your-100-daysofcode-516i</guid>
      <description>&lt;p&gt;Hello devs,&lt;/p&gt;

&lt;p&gt;Have you ever done 100daysOfCode in your life?&lt;br&gt;
If yes or doing, share your experiences in this comment section for everyone. &lt;/p&gt;

&lt;p&gt;Hope we can discuss and get something from this section.&lt;br&gt;
Comment down here.&lt;/p&gt;

&lt;p&gt;Thanks for your time!&lt;/p&gt;

</description>
      <category>programming</category>
      <category>webdev</category>
      <category>codenewbie</category>
      <category>computerscience</category>
    </item>
    <item>
      <title>I bought new Macbook Air M1 (one of my goals completed)</title>
      <dc:creator>Thu Htet Tun</dc:creator>
      <pubDate>Sun, 27 Jun 2021 12:36:56 +0000</pubDate>
      <link>https://dev.to/thuhtetdev/i-bought-new-macbook-air-m1-one-of-my-goals-completed-2kbb</link>
      <guid>https://dev.to/thuhtetdev/i-bought-new-macbook-air-m1-one-of-my-goals-completed-2kbb</guid>
      <description>&lt;p&gt;Hello Guys!&lt;/p&gt;

&lt;p&gt;Buying a new macbook is one of my goals in this year.&lt;br&gt;
And I got it. This is my very first macbook. &lt;br&gt;
I'm ready to use this for my educational &amp;amp; career purposes.&lt;/p&gt;

&lt;p&gt;I uploaded vlog on my YouTube Channel.&lt;br&gt;
If you want to see my happiness, please go for it. &lt;/p&gt;
&lt;h1&gt;
  
  
  YouTube link
&lt;/h1&gt;

&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/neagi_Pej1g"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

</description>
      <category>watercooler</category>
    </item>
    <item>
      <title>How To Deploy NodeJS Express App On Heroku (Free Hosting)</title>
      <dc:creator>Thu Htet Tun</dc:creator>
      <pubDate>Sat, 22 May 2021 13:15:46 +0000</pubDate>
      <link>https://dev.to/thuhtetdev/how-to-deploy-nodejs-express-app-on-heroku-free-hosting-1f3b</link>
      <guid>https://dev.to/thuhtetdev/how-to-deploy-nodejs-express-app-on-heroku-free-hosting-1f3b</guid>
      <description>&lt;p&gt;Hello guys,&lt;br&gt;
Today I am going to show you how to deploy your NodeJs (Express) app on Heroku as Free.&lt;/p&gt;

&lt;p&gt;First, I want to write an article about it but I prefer to show you with practical video. So, I recorded and uploaded on my YouTube Channel.&lt;/p&gt;

&lt;p&gt;It only takes about 10 minutes to watch. If you interested, You can watch here: &lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=wFFZ2nl067c"&gt;https://www.youtube.com/watch?v=wFFZ2nl067c&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks a lot guys.&lt;br&gt;
See you on next article.&lt;/p&gt;

</description>
      <category>programming</category>
      <category>heroku</category>
      <category>webdev</category>
      <category>node</category>
    </item>
    <item>
      <title>Why You Should Meditate Daily (As Developer)</title>
      <dc:creator>Thu Htet Tun</dc:creator>
      <pubDate>Fri, 30 Apr 2021 13:32:33 +0000</pubDate>
      <link>https://dev.to/thuhtetdev/why-you-should-meditate-daily-as-developer-247f</link>
      <guid>https://dev.to/thuhtetdev/why-you-should-meditate-daily-as-developer-247f</guid>
      <description>&lt;p&gt;Hello My Devs Friends,&lt;/p&gt;

&lt;p&gt;About Six years ago, I started my meditation journey because of an accident of mine. Some books helped me to become meditating. It helps me a lot in my daily life.&lt;/p&gt;

&lt;p&gt;Today, I decide to write an article about why you should meditate daily (as developer).&lt;/p&gt;

&lt;p&gt;Let's get started.&lt;/p&gt;

&lt;h2&gt;
  
  
  Meditation
&lt;/h2&gt;

&lt;p&gt;Simply, Meditation is awareness of yourself.&lt;br&gt;
Meditation practices you to know yourself in every seconds of your life.&lt;/p&gt;
&lt;h2&gt;
  
  
  Why You Need Meditation
&lt;/h2&gt;

&lt;p&gt;Formally, when you meditate, you have to be sitting down and focus on one thing. And Control your mind tightly. But that's misunderstanding. we need more understanding of what real meditation is. &lt;/p&gt;

&lt;p&gt;Whenever you are sitting down or walking or lying down, it is all about being aware and stay in the present moment (second by second).&lt;/p&gt;

&lt;p&gt;Don't control your mind tightly. Let it be flow. But keep knowing along with your current thoughts. Once you've known your are thinking about the past, drag those thoughts to the present moment. Sometimes, you may think about the future. Just aware it and drag those thoughts to the present softly. &lt;/p&gt;

&lt;p&gt;You don't have to worry about them. It is nature that our thoughts are jumping from one place to another. In general, we have multiple of thoughts changing in every 5 minutes. Thoughts are mostly bad for us. They give us many emotional such as pain, anger, anxiety, depression and so much more. We called it the negative thoughts.&lt;br&gt;
Then, thoughts become actions, Right? Your negative thoughts will make you to act unstable actions.&lt;/p&gt;

&lt;p&gt;How do we reduce and avoid those negative thoughts and actions?&lt;br&gt;
Meditation can solve those problems of our daily lives.&lt;/p&gt;

&lt;p&gt;It is like a filter of mind. if you have awareness, You will be knowing every things of your mind. In this way, Negative thoughts are not becoming your action. On the other hand, you don't also have to think about positive thoughts so hard.&lt;/p&gt;

&lt;p&gt;Be awareness of something in the present. &lt;br&gt;
And maintain that awareness. &lt;/p&gt;

&lt;p&gt;If you are walking, you could aware of your foot steps.&lt;br&gt;
If you are sitting down, you could aware of your breathing (in and out).&lt;br&gt;
If you are working, you could aware of your work.&lt;br&gt;
If you are driving, you could aware that your are driving.&lt;br&gt;
If you are in anger, you could aware of your angry mind.&lt;br&gt;
If you are talking to someone, you could aware of listening or speaking.&lt;br&gt;
Whatever you do, you can apply meditation in daily life.&lt;/p&gt;

&lt;p&gt;That is meditation.&lt;/p&gt;

&lt;p&gt;As a developer, &lt;br&gt;
You need to relax your mind without screen time.&lt;br&gt;
Also, sleeping is not the best way to reset your mind.&lt;br&gt;
Sleeping and meditation are not same. They are a lot of different.&lt;br&gt;
Try to clear your mind with meditation.&lt;br&gt;
Only practical lesson will teach you. &lt;br&gt;
So, just do it.&lt;/p&gt;
&lt;h2&gt;
  
  
  Bonus Tips
&lt;/h2&gt;

&lt;p&gt;&lt;b&gt;"To know and not to do is not yet to know"&lt;/b&gt;&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;Let me know your meditation experience in this comment section.&lt;/p&gt;

&lt;p&gt;If you prefer to watch this content,&lt;br&gt;
I also uploaded it on my YouTube Channel with nice editing.&lt;br&gt;
Watch Here:&lt;br&gt;
&lt;a href="https://www.youtube.com/watch?v=CkLb9jqjf8o"&gt;https://www.youtube.com/watch?v=CkLb9jqjf8o&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I hope you got some awareness from this article.&lt;br&gt;
If you enjoy this article, follow me to get new updates from me.&lt;/p&gt;

&lt;p&gt;I have also plan to write about my personal experience of meditation in one of my coming articles.&lt;/p&gt;

&lt;p&gt;See you in the next article.&lt;/p&gt;

</description>
      <category>motivation</category>
      <category>webdev</category>
      <category>productivity</category>
      <category>programming</category>
    </item>
    <item>
      <title>Sharing Dev's Useful Sites &amp; Tools that I applied</title>
      <dc:creator>Thu Htet Tun</dc:creator>
      <pubDate>Sat, 24 Apr 2021 10:42:14 +0000</pubDate>
      <link>https://dev.to/thuhtetdev/sharing-dev-s-useful-sites-tools-that-i-applied-3o9g</link>
      <guid>https://dev.to/thuhtetdev/sharing-dev-s-useful-sites-tools-that-i-applied-3o9g</guid>
      <description>&lt;p&gt;Hello my dev friends,&lt;/p&gt;

&lt;p&gt;Today, I would like to share some useful sites and tools that I used in dev field.&lt;/p&gt;

&lt;p&gt;Let's get started...&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;CSS Loading Site&lt;br&gt;
Sometime, this site helps me to get CSS's loading stuff easy and fast.&lt;br&gt;
&lt;a href="https://loading.io/"&gt;https://loading.io/&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Illustrations&lt;br&gt;
I used Undraw's illustrations in many sites and personal case.&lt;br&gt;
It is so useful for me.&lt;br&gt;
&lt;a href="https://undraw.co/illustrations"&gt;https://undraw.co/illustrations&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;LeetCode (Code Practice)&lt;br&gt;
I had told to use this site to improve my coding skills. Then, I used it and found fun and benefits for me. Recommend you this one.&lt;br&gt;
You can practice your coding skills in there.&lt;br&gt;
&lt;a href="https://leetcode.com/"&gt;https://leetcode.com/&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Fake Rest API&lt;br&gt;
For testing in order to get json api, I used this site often.&lt;br&gt;
Hell yeah, You can play with this site fake rest api data.&lt;br&gt;
&lt;a href="https://www.instantwebtools.net/fake-rest-api"&gt;https://www.instantwebtools.net/fake-rest-api&lt;/a&gt;&lt;br&gt;
Wanna test with real data to get Real feeling?&lt;br&gt;
Bonus Site: &lt;a href="https://www.themoviedb.org/"&gt;https://www.themoviedb.org/&lt;/a&gt;&lt;br&gt;
To test, my fav env is postman.&lt;br&gt;
Test Environment Software: &lt;a href="https://www.postman.com/"&gt;https://www.postman.com/&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Draw.io (Data Diagram Tool)&lt;br&gt;
This site helps me to design quick Database Diagrams, Use Case, Data Flow, ERD, EERD etc.&lt;br&gt;
&lt;a href="https://www.draw.io/"&gt;https://www.draw.io/&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Backlog (Project Management Tool)&lt;br&gt;
In my work, every day I have to use this software which is intended for team project management.&lt;br&gt;
If you have a team, try it once. It has a lot of features.&lt;br&gt;
&lt;a href="https://backlog.com/"&gt;https://backlog.com/&lt;/a&gt; &lt;br&gt;
&lt;br&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;To Do List&lt;br&gt;
For my personal, I am using Tick Tick everyday. It is kind of crazy. Check it.&lt;br&gt;
&lt;a href="https://ticktick.com/"&gt;https://ticktick.com/&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Google Calendar&lt;br&gt;
To manage my timeline, I have to touch Google Calendar every second of my weekdays.&lt;br&gt;
Actually, We all must touch Google, right? &lt;br&gt;
Haha.. But this one is crazy to control our seconds.&lt;br&gt;
&lt;a href="https://calendar.google.com/"&gt;https://calendar.google.com/&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Programming Stuff that I used (past and present)&lt;br&gt;
-C &amp;amp; C++ &lt;br&gt;
-PHP For Laravel&lt;br&gt;
-JavaScript For VueJS, ReactJs, NestJs&lt;br&gt;
-SQL For Database Management Software&lt;br&gt;
-Dart For Flutter&lt;br&gt;
&lt;br&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Text Editors&lt;br&gt;
I know most developer use VS Code every day of their dev lives. &lt;br&gt;
But I just want to mention it while I am writing.&lt;br&gt;
For me, I started my development from note++ and currently using VS Code.&lt;br&gt;
Note++  : &lt;a href="https://notepad-plus-plus.org/downloads/"&gt;https://notepad-plus-plus.org/downloads/&lt;/a&gt;&lt;br&gt;
Sublime : &lt;a href="https://www.sublimetext.com/"&gt;https://www.sublimetext.com/&lt;/a&gt;&lt;br&gt;
VS Code : &lt;a href="https://code.visualstudio.com/"&gt;https://code.visualstudio.com/&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Currently, those 10 things are coming from my head randomly.&lt;br&gt;
So, I can freely write it down for my dev friends and followers. &lt;/p&gt;

&lt;p&gt;In future articles, I may share this kind of some random tools that are useful for our daily developer lives. &lt;/p&gt;

&lt;p&gt;Thanks for reading till the end.&lt;br&gt;
If you like this article, don't forget to follow me.&lt;br&gt;
&lt;br&gt;&lt;/p&gt;

&lt;p&gt;Ah... I almost forgot to tell you. Haha..&lt;br&gt;
Don't forget to visit my new YouTube Channel.&lt;br&gt;
&lt;a href="https://www.youtube.com/channel/UCdFvcfxmXGwOGkH0bh-y8LQ"&gt;https://www.youtube.com/channel/UCdFvcfxmXGwOGkH0bh-y8LQ&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks guys!&lt;br&gt;
See you in the next article.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>productivity</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
