<?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: NeulChan Gong</title>
    <description>The latest articles on DEV Community by NeulChan Gong (@neulchance).</description>
    <link>https://dev.to/neulchance</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%2F200796%2Fabd4a8bf-9157-435e-8fe0-728341d6ef44.png</url>
      <title>DEV Community: NeulChan Gong</title>
      <link>https://dev.to/neulchance</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/neulchance"/>
    <language>en</language>
    <item>
      <title>[Dev on Mac]</title>
      <dc:creator>NeulChan Gong</dc:creator>
      <pubDate>Mon, 26 Dec 2022 13:18:02 +0000</pubDate>
      <link>https://dev.to/neulchance/dev-on-mac-3m3i</link>
      <guid>https://dev.to/neulchance/dev-on-mac-3m3i</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;┌
│&lt;span class="nv"&gt;$ &lt;/span&gt;&lt;span class="nb"&gt;sudo &lt;/span&gt;xcode-select &lt;span class="nt"&gt;--reset&lt;/span&gt;
└─────
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>watercooler</category>
    </item>
    <item>
      <title>[Linux Commands] Check what well-known "port number" are there.</title>
      <dc:creator>NeulChan Gong</dc:creator>
      <pubDate>Thu, 22 Dec 2022 16:44:35 +0000</pubDate>
      <link>https://dev.to/neulchance/linux-commands-check-what-well-known-port-numbers-are-there-2oa2</link>
      <guid>https://dev.to/neulchance/linux-commands-check-what-well-known-port-numbers-are-there-2oa2</guid>
      <description>&lt;p&gt;&lt;strong&gt;Notice: Printed output does not means to assigned and operating in system. It may or not.&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;┌ Print all of services
│&lt;span class="nv"&gt;$ &lt;/span&gt;&lt;span class="nb"&gt;cat&lt;/span&gt; /etc/services
│      ────┬────────
│          └&lt;span class="s1"&gt;'has well-known port info'&lt;/span&gt;
└─────
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;┌ Print specific service
│&lt;span class="nv"&gt;$ &lt;/span&gt;&lt;span class="nb"&gt;grep&lt;/span&gt; &lt;span class="nt"&gt;-w&lt;/span&gt; 7000 /etc/services
│          ─┬──
│           └&lt;span class="s1"&gt;'port-number you interested in'&lt;/span&gt;
└─────
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;┌ Print specific service
│&lt;span class="nv"&gt;$ &lt;/span&gt;egrep &lt;span class="nt"&gt;-w&lt;/span&gt; &lt;span class="s1"&gt;'7000/(tcp|udp)'&lt;/span&gt; /etc/services
│            ─┬────────────
│             └&lt;span class="s1"&gt;'port-number &amp;amp; protocol-type'&lt;/span&gt;
└─────
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>api</category>
      <category>tooling</category>
    </item>
    <item>
      <title>[Linux Commands] Print os info</title>
      <dc:creator>NeulChan Gong</dc:creator>
      <pubDate>Wed, 21 Dec 2022 18:07:23 +0000</pubDate>
      <link>https://dev.to/neulchance/linux-commands-print-os-info-2ocg</link>
      <guid>https://dev.to/neulchance/linux-commands-print-os-info-2ocg</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;┌
│&lt;span class="nv"&gt;$ &lt;/span&gt;&lt;span class="nb"&gt;cat&lt;/span&gt; /etc/os-release
│&lt;span class="nv"&gt;$ &lt;/span&gt;lsb_release &lt;span class="nt"&gt;-a&lt;/span&gt;
│&lt;span class="nv"&gt;$ &lt;/span&gt;hostnamectl
│&lt;span class="nv"&gt;$ &lt;/span&gt;&lt;span class="nb"&gt;uname&lt;/span&gt; &lt;span class="nt"&gt;-r&lt;/span&gt;
└─────
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>gratitude</category>
    </item>
    <item>
      <title>[Rust commands] Start project</title>
      <dc:creator>NeulChan Gong</dc:creator>
      <pubDate>Sun, 18 Dec 2022 08:57:50 +0000</pubDate>
      <link>https://dev.to/neulchance/rust-commands-start-project-2eil</link>
      <guid>https://dev.to/neulchance/rust-commands-start-project-2eil</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;┌ Start project with subcommand 'new'
│$ cargo new &amp;lt;directory_name&amp;gt;
└─────
┌ Start project with subcommand 'init'
│$ mkdir &amp;lt;directory_name&amp;gt; &amp;amp;&amp;amp; cd $_
│$ cargo init
└─────
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;┌ Cargo run with watch
│$ cargo install cargo-watch
│↳ cargo watch -q -c -x 'run'
└─────
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>emptystring</category>
    </item>
    <item>
      <title>[Git commands] config</title>
      <dc:creator>NeulChan Gong</dc:creator>
      <pubDate>Thu, 22 Oct 2020 09:01:32 +0000</pubDate>
      <link>https://dev.to/neulchance/git-commands-cbg</link>
      <guid>https://dev.to/neulchance/git-commands-cbg</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;┌Check the current config with listing.
│$ git config --list
└──────────
┌Change the user info.
│$ git config user.name "&amp;lt;desired-name&amp;gt;"
│$ git config user.email "&amp;lt;desired-email&amp;gt;"
└──────────
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>git</category>
    </item>
    <item>
      <title>Why i think to important the being of code organization.</title>
      <dc:creator>NeulChan Gong</dc:creator>
      <pubDate>Sun, 04 Oct 2020 09:36:33 +0000</pubDate>
      <link>https://dev.to/neulchance/why-i-think-to-important-the-being-of-code-organization-2d6</link>
      <guid>https://dev.to/neulchance/why-i-think-to-important-the-being-of-code-organization-2d6</guid>
      <description>&lt;p&gt;코드의 구성에 구조와 패턴이 적용되면, 작업 엔트리포인트를 유추해 내기 좋다.&lt;/p&gt;

</description>
      <category>codeorganization</category>
    </item>
    <item>
      <title>UI-Implementation procedures</title>
      <dc:creator>NeulChan Gong</dc:creator>
      <pubDate>Wed, 18 Sep 2019 10:10:51 +0000</pubDate>
      <link>https://dev.to/neulchance/ui-implementation-procedures-5a2i</link>
      <guid>https://dev.to/neulchance/ui-implementation-procedures-5a2i</guid>
      <description>&lt;p&gt;&lt;sup&gt;① Settle up the frame with one of two between mobile first and desktop. (recommend mobile first)&lt;br&gt;
② Settle up the frame of rest one that remained from above.(at me typically desktop)&lt;br&gt;
③ Check working with responsive.&lt;/sup&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
