<?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: Yuto </title>
    <description>The latest articles on DEV Community by Yuto  (@orange-na).</description>
    <link>https://dev.to/orange-na</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%2F1076980%2F20f8d272-56d1-4c19-9485-1dfb4f14d161.png</url>
      <title>DEV Community: Yuto </title>
      <link>https://dev.to/orange-na</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/orange-na"/>
    <language>en</language>
    <item>
      <title>My Journey as a Tech Learner</title>
      <dc:creator>Yuto </dc:creator>
      <pubDate>Sun, 16 Jul 2023 23:12:07 +0000</pubDate>
      <link>https://dev.to/orange-na/my-journey-as-a-tech-learner-4jnh</link>
      <guid>https://dev.to/orange-na/my-journey-as-a-tech-learner-4jnh</guid>
      <description>&lt;p&gt;Hi there!!&lt;br&gt;
I’m here to share my story of how am I learning web develop. I hope you’d find some inspirations.&lt;/p&gt;

&lt;p&gt;As an aspiring developer with a passion for technology, I have embarked on an exciting journey of learning and growth. This coding journal serves as a valuable record of my experiences, triumphs, and hurdles as I delve into the world of programming. Through this journal, I hope to embrace challenges, celebrate my progress, and document the invaluable lessons I learn along the way.&lt;/p&gt;

&lt;p&gt;・Facing the Learning Curve&lt;br&gt;
As a newcomer to the tech world, I found myself faced with a steep learning curve. Concepts like HTML, CSS, and JavaScript seemed daunting at first, but I realized that every successful developer started from a similar place. Instead of being discouraged, I used this as motivation to dive headfirst into my studies.&lt;/p&gt;

&lt;p&gt;・Embracing Challenges&lt;br&gt;
Throughout my coding journey, I encountered numerous challenges. From debugging errors in my code to understanding complex algorithms, each obstacle taught me the importance of patience and persistence. By seeking guidance from online communities and coding forums, I learned to view challenges as opportunities for growth rather than roadblocks.&lt;/p&gt;

&lt;p&gt;・Celebrate the Little Victories&lt;br&gt;
My coding journal became a source of celebration for the small victories I achieved along the way. Whether it was successfully creating my first webpage or building a basic JavaScript application, each step forward was a cause for joy. Acknowledging these achievements boosted my confidence and fueled my passion for coding.&lt;/p&gt;

&lt;p&gt;・Learning Plan and Goal Setting&lt;br&gt;
To ensure consistent progress, I developed a learning plan that outlines my goals and milestones. Breaking down my objectives into manageable tasks allowed me to track my progress and stay focused on my long-term aspirations. Through this journal, I reflect on my plan regularly and make adjustments as needed.&lt;/p&gt;

&lt;p&gt;・Recording New Discoveries&lt;br&gt;
As a tech learner, my coding journal has become a treasure trove of new discoveries and creative ideas. From exploring various frameworks to experimenting with different coding techniques, I use this space to document the things that inspire me. These records serve as a reference for future projects and personal growth.&lt;/p&gt;

&lt;p&gt;・Navigating Unanswered Questions&lt;br&gt;
Throughout my coding journey, I have encountered countless questions that remain unanswered. However, rather than being disheartened, I have learned to view these questions as opportunities for further exploration. This curiosity drives me to seek knowledge beyond the basics, helping me become a well-rounded developer.&lt;/p&gt;

&lt;p&gt;・Future Aspirations&lt;br&gt;
As I continue my journey as a tech learner, my coding journal reflects my aspirations to specialize in web development and explore the vast field of mobile app development. I am eager to learn new technologies, contribute to open-source projects, and collaborate with like-minded individuals in the tech community.&lt;/p&gt;

&lt;p&gt;・Conclusion&lt;br&gt;
In conclusion, my coding journal has become an integral part of my learning process, offering a glimpse into my growth and progress as a tech learner. Through the challenges, celebrations, and new discoveries, I am constantly evolving and inching closer to my dream of becoming a proficient developer. This journal will remain a cherished companion, guiding me through the dynamic and ever-changing world of technology. As I look forward to the future, I am filled with excitement and determination to continue this journey with passion and purpose.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>programming</category>
      <category>career</category>
    </item>
    <item>
      <title>Setup Next.js</title>
      <dc:creator>Yuto </dc:creator>
      <pubDate>Tue, 30 May 2023 04:47:29 +0000</pubDate>
      <link>https://dev.to/orange-na/setup-nextjs-2o4f</link>
      <guid>https://dev.to/orange-na/setup-nextjs-2o4f</guid>
      <description>&lt;p&gt;I've learned how to setup Next.js. I put together it for myself in this blog.&lt;br&gt;
(2023/05/29)&lt;/p&gt;

&lt;p&gt;・You can move from &lt;code&gt;Docs&lt;/code&gt; to &lt;code&gt;Installation&lt;/code&gt; on official site of Next.js.&lt;/p&gt;

&lt;p&gt;▼ Official site of Next.js&lt;/p&gt;

&lt;p&gt;&lt;a href="https://nextjs.org/docs/getting-started/installation"&gt;https://nextjs.org/docs/getting-started/installation&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;・Following Automatic Installaiton, execute the command on your terminal.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# npm&lt;/span&gt;
npx create-next-app@latest
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;・Put your project name following the instruction.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;✔ What is your project named? … &lt;span class="o"&gt;[&lt;/span&gt;Project name]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;・Answer the several questions with Yes or No.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;✔ Would you like to use TypeScript with this project? … No / Yes
✔ Would you like to use ESLint with this project? … No / Yes
✔ Would you like to use Tailwind CSS with this project? … No / Yes
✔ Would you like to use &lt;span class="sb"&gt;`&lt;/span&gt;src/&lt;span class="sb"&gt;`&lt;/span&gt; directory with this project? … No / Yes
✔ Use App Router &lt;span class="o"&gt;(&lt;/span&gt;recommended&lt;span class="o"&gt;)&lt;/span&gt;? … No / Yes
✔ Would you like to customize the default import &lt;span class="nb"&gt;alias&lt;/span&gt;? … No / Yes
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  ※There exists no file of ".next" yet.
&lt;/h3&gt;

&lt;p&gt;・Move to the file that you just made with your terminal and open an editor.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Move to new project file &lt;/span&gt;
&lt;span class="nb"&gt;cd&lt;/span&gt; &lt;span class="o"&gt;[&lt;/span&gt;project name]
&lt;span class="c"&gt;# Open an editor&lt;/span&gt;
code &lt;span class="nb"&gt;.&lt;/span&gt; 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;・Once executing DEV mode, &lt;code&gt;.next&lt;/code&gt; directory and the local path will be made.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# DEV mode&lt;/span&gt;
npm run dev
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>beginners</category>
      <category>nextjs</category>
      <category>setup</category>
      <category>react</category>
    </item>
    <item>
      <title>Self-introduction:)</title>
      <dc:creator>Yuto </dc:creator>
      <pubDate>Fri, 05 May 2023 01:39:05 +0000</pubDate>
      <link>https://dev.to/orange-na/self-introduction-2b8n</link>
      <guid>https://dev.to/orange-na/self-introduction-2b8n</guid>
      <description>&lt;p&gt;Hi there!!!&lt;/p&gt;

&lt;p&gt;I'm here for the first time. I'm Yuto, who is originally from Japan. Currently, I'm taking 2 years off the college in Japan where I go because I had always wanted to study abroad as soon as possible. So, I came in Vancouver last month. And then, I'm a student. To tell the truth, I feel like my dream has already come true since living in abroad was one my things that I want to do until my life is end.&lt;/p&gt;

&lt;p&gt;Now, I'm taking Web Develop corse even though I majored in electrical engineer corse being in college. I'm having a blast so far. Obviously, I do not have any experiences in web develop. So, I have been studying much harder than I was a student in Japan.&lt;/p&gt;

&lt;p&gt;Actually, I have been hitting at least two walls ever since I came here in Vancouver. One of them is language. To be honest, I knew I would struggle with communicating with people in English. However, it was more tough than I expected in reality. I often get stuck for words. For instance, the time ordering in restaurant, asking for direction and taking with my host family and so on. Another one is experiences. I was just a student before coming here. I have a bit of work experiences as part time like everybody. But, Almost all of the people who came in Vancouver like me are have tons of experiences as engineer or other industry. I know that I should not compare myself to other people. But I unintentionally think that I need to be in in a harry and catch up with them as soon as possible even though I know that's impossible. At the same time, I thought that it is really advantages for me to learn because There are a lot of specialist of kind industry.&lt;br&gt;
Staying positive is my personality.&lt;/p&gt;

&lt;p&gt;Hopefully I can get a job as engineer here and work on my English in the future.&lt;/p&gt;

&lt;p&gt;Nice to meet you!&lt;/p&gt;

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