<?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: Orion F.</title>
    <description>The latest articles on DEV Community by Orion F. (@iamdesigniso).</description>
    <link>https://dev.to/iamdesigniso</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%2F194237%2Faa375c48-bab8-4835-90d7-f8f60f484e24.jpg</url>
      <title>DEV Community: Orion F.</title>
      <link>https://dev.to/iamdesigniso</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/iamdesigniso"/>
    <language>en</language>
    <item>
      <title>Py Project: Key Logger</title>
      <dc:creator>Orion F.</dc:creator>
      <pubDate>Sat, 25 Apr 2020 14:32:10 +0000</pubDate>
      <link>https://dev.to/iamdesigniso/py-project-key-logger-7ek</link>
      <guid>https://dev.to/iamdesigniso/py-project-key-logger-7ek</guid>
      <description>&lt;p&gt;Greetings,&lt;/p&gt;

&lt;p&gt;So I wanted to create a project within Python then break down the code to gain understanding while doing. The goal is to become a great software engineer, but I don’t want to be caught in tutorial hell. Great advice from several of the developers were to break each line of code down. Then do some “googling” if you aren’t understanding what you see. It makes total sense and with that I went online to find a project .A great project that was showing a bit in forms to start with was a logger program. With the logger program, it will allow you to type some keys on your screen via keyboard. While pressing the keys, the program should log your keystrokes via a text file. The concept was easy to grasp however when doing projects you don’t want to just write the code, get the concept, and then move on. No… way Jose! lol. So instead I decided to come back this AM to review what the basic project was broken down to via comments. So heads up great people when seeing the projects posted going forward. It’s all about the learning and growth, not just a copy and paste scenario. I hope you enjoy and learn much! &lt;/p&gt;

&lt;p&gt;Keep coding great devs!&lt;/p&gt;

&lt;p&gt;Key Logger Program : &lt;a href="https://github.com/DesignisOrion/Keylogger-Program/blob/master/main.py"&gt;https://github.com/DesignisOrion/Keylogger-Program/blob/master/main.py&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Learning Python</title>
      <dc:creator>Orion F.</dc:creator>
      <pubDate>Fri, 24 Apr 2020 22:57:55 +0000</pubDate>
      <link>https://dev.to/iamdesigniso/learning-python-2ln</link>
      <guid>https://dev.to/iamdesigniso/learning-python-2ln</guid>
      <description>&lt;p&gt;Greetings,&lt;/p&gt;

&lt;p&gt;Learning a new language may be daunting to many. A great deal of developers would say, "master one language, then go to another". I say that you should learn a great deal of basics then continue to go forward if you like. If not, then go with another. Moral... just keep learning. So today I am jumping into the learning of Python. Throughout the learning of python, I will blog about the practices of such. Well with that being said, let's not waste anytime.&lt;/p&gt;

&lt;p&gt;Day 001/100:&lt;/p&gt;

&lt;p&gt;Python3:&lt;/p&gt;

&lt;p&gt;A programming language used to work with Machine Learning, Automation, and AI. You can also use it for Mobile Apps, Desktop programming and more. It's easy to learn and you don't need to know any programming language prior to understand. It's that simple. The code is short and clean while others are a bit complex. It's a high level language, cross - platform (Win, Mac and Linux), huge community and also a large ecosystem within the library of docs and all. It's been around for 20 years so that's even greater. To be honest, Python is the number one language that employers are looking for. Salary can be as much as $116,000 a year for becoming a developer of Python.&lt;/p&gt;

&lt;p&gt;I wanted to start the python course. The training that I wanted to start the learning with is the awesome channel of MOSH. Here is the course link: &lt;a href="https://www.youtube.com/watch?v=f79MRyMsjrQ"&gt;https://www.youtube.com/watch?v=f79MRyMsjrQ&lt;/a&gt;. I like how his delivery is when giving content and advise and other courses. The notes below are what I am learning within the course. Enjoy!&lt;/p&gt;

&lt;p&gt;Installation:&lt;/p&gt;

&lt;p&gt;To install, you would want to visit : Python.org&lt;/p&gt;

&lt;p&gt;Code Editor: &lt;/p&gt;

&lt;p&gt;You can use an IDE or an Editor. The most popular are VS CODE, Atom, Sublime. for IDE options: PyCharm. You can download either or which is comfortable. I chose VS Code of course.&lt;/p&gt;

&lt;p&gt;Extensions for VS Code:&lt;/p&gt;

&lt;p&gt;Python:&lt;/p&gt;

&lt;p&gt;PyLint: uses by default.&lt;/p&gt;

&lt;p&gt;What is Linting? When your code isn't valid of Python 3 standards, it will show you a indicator "red line" under the issue. Then it will allow you to hoover your mouse over it to see what the issue is. Good tool when you don't need to run the program and see the error before doing so.&lt;/p&gt;

&lt;p&gt;Command Palette:  Shortkey: Shift + Ctrl + P. Different developers like different linters as well. Different linters include ones such as "flake8", "mypy", and etc. It's truly up your choice. I like "pylint" cause that's what MOSH chose. The differences of them is that the error messages are delivered different. They still do the same thing.&lt;/p&gt;

&lt;p&gt;Problems: If you want to see the problems of your code while coding. Press the shortkeys : Shift + Ctrl + M. It's a window that will appear. Great tool to use while doing the code.&lt;/p&gt;

&lt;p&gt;Formatting Python Code:&lt;/p&gt;

&lt;p&gt;PEPs : Python Enhancement Proposals: The most popular is the PEP 8 which is the Style Guide. If you visit the site you can learn the way to style your code that will keep your code consistent with other developers. Very great tool for being on the right track with your coding. A good tool to install is autopep8. Then once installed. Change your settings for format on save. : File &amp;gt; Pref &amp;gt; settings &amp;gt;type: formatonsave. Check the box then exit.&lt;/p&gt;

&lt;p&gt;Running Python Code&lt;/p&gt;

&lt;p&gt;To run the python code without having to go in the terminal each time (which is tedious) another way to run is by using the extension : code runner. (pic should show of the words ".run" in comic font. When you install that extension, you then can code in python via the editor. Once coding and need to run, you simply press : Ctrl + Alt + N. Very easy way to run the py code.&lt;/p&gt;

&lt;p&gt;Python Implementations&lt;/p&gt;

&lt;p&gt;Python language: Set of rules for writing the code&lt;/p&gt;

&lt;p&gt;Python Implementation : A program that understands how to use the rules&lt;/p&gt;

&lt;p&gt;Cpython: A program written in the language C#. This is one the most popular implementations.They do the same thing, but just run different. Just like operating systems, browsers, or even languages. Choose whats best for you. I choose Cpython.&lt;/p&gt;

&lt;p&gt;Others include:&lt;/p&gt;

&lt;p&gt;Jython: written in Java&lt;br&gt;
IronPython: Written in C#&lt;br&gt;
PyPy: A subset of Python.&lt;/p&gt;

&lt;p&gt;How is Python code executed.&lt;/p&gt;

&lt;p&gt;C compiler: Allows you to convert C language to Machine Code.&lt;/p&gt;

&lt;p&gt;Python &amp;gt; CPython &amp;gt; Python Bytecode &amp;gt; Python Virtual Machine &amp;gt; Machine Code. (This is how Cpython works)&lt;/p&gt;

&lt;p&gt;Well you all. That's the notes for the first section. If you are interested in learning Python3 then don't wait. As you see, I am diving right on in and I advise you to do the same. I mean hey, the worst that could happen is that you just sit there wondering what it will feel like to be a great software engineer. I will post projects via my github and share links. I hope you enjoyed the notes. Until next time. Peace and Light!&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.DesignIsOrion.com"&gt;www.DesignIsOrion.com&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Don't Stress: REACTJS | Components</title>
      <dc:creator>Orion F.</dc:creator>
      <pubDate>Sun, 22 Dec 2019 00:16:52 +0000</pubDate>
      <link>https://dev.to/iamdesigniso/don-t-stress-reactjs-components-1hjn</link>
      <guid>https://dev.to/iamdesigniso/don-t-stress-reactjs-components-1hjn</guid>
      <description>&lt;p&gt;Hi readers,&lt;/p&gt;

&lt;p&gt;Okay I am back with another post. This one will be about the ReactJS components. Let's go right into the notes I've taken for the components. Hope it helps. Enjoy!&lt;/p&gt;

&lt;p&gt;*Components&lt;br&gt;
    - A part of the web interface. &lt;br&gt;
    - Header, SideNav, Main Content, Footer, and one component to contain the prior 4 components. They come together to make the app.&lt;br&gt;
    - Components are reusable. ie: The LEFT sideNav can also be the RIGHT sideNav.&lt;br&gt;
    - Building blocks of any ReactJS app.&lt;/p&gt;

&lt;p&gt;*Component in Code&lt;br&gt;
    - a component is usually the code placed in App.js&lt;br&gt;
    - You can also have component files with the .jsx extension.&lt;/p&gt;

&lt;p&gt;*Component Two Types&lt;br&gt;
    - Stateless Functional Component&lt;br&gt;
        (- JavaScript Functions)&lt;br&gt;
    - Stateful Class Component&lt;br&gt;
        (-Class extending Component class)&lt;br&gt;
        (-Render method returning HTML)&lt;/p&gt;

</description>
      <category>react</category>
      <category>designisorion</category>
      <category>uiweekly</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Don't Stress: REACTJS (Folder Structure)</title>
      <dc:creator>Orion F.</dc:creator>
      <pubDate>Sun, 22 Dec 2019 00:04:12 +0000</pubDate>
      <link>https://dev.to/iamdesigniso/don-t-stress-reactjs-folder-structure-2j76</link>
      <guid>https://dev.to/iamdesigniso/don-t-stress-reactjs-folder-structure-2j76</guid>
      <description>&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fthepracticaldev.s3.amazonaws.com%2Fi%2Fzodyfbbyz5cu9rdw86rz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fthepracticaldev.s3.amazonaws.com%2Fi%2Fzodyfbbyz5cu9rdw86rz.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Folder Structure&lt;/p&gt;

&lt;p&gt;Hi readers,&lt;/p&gt;

&lt;p&gt;In this post, I wanted to give insight about the folder structure of a ReactJs App. I wanted to create separate post the so you can get insight in a gradual way. Again, I try not to be lengthy on the steps, but get right to the info. Hope you enjoy!&lt;/p&gt;

&lt;p&gt;Folder Structure Breakdown&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;package.json:  Includes the dependencies and the scripts used to create a project.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;package-lock.json:  Ensure the installation of the dependencies.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;.gitignore &amp;amp; readme:  Don't worry about these files.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;node_modules:  All the dependencies are installed in the folder. It's generated when you run the "create-react-app" command.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;public folder&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;manifest.json: Used for Progressive Web Apps (PWA's)&lt;/li&gt;
&lt;li&gt;favicon.ico: Nothing specific, just the icon for the title.&lt;/li&gt;
&lt;li&gt;index.html:Typically you won't change anything in the body. Maybe the head tag but that's all. This contains the root DOM node.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;

&lt;p&gt;src folder: The folder you will work with the most for the development. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;index.js: specify the 'root' element which is controlled by React.&lt;/li&gt;
&lt;li&gt;app.js: Responsible for showing the UI (view) within the browser.&lt;/li&gt;
&lt;li&gt;app.css: Used for styling the app UI.&lt;/li&gt;
&lt;li&gt;app.test.js: Used for testing&lt;/li&gt;
&lt;li&gt;index.css: applies styling to the body tag.&lt;/li&gt;
&lt;li&gt;logo.svg: refrenced in the app component.&lt;/li&gt;
&lt;li&gt;serviceWorker: used for PWA's only.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

</description>
      <category>designisorion</category>
      <category>react</category>
      <category>coding</category>
      <category>design</category>
    </item>
    <item>
      <title>Don't Stress: REACTJS | Start!</title>
      <dc:creator>Orion F.</dc:creator>
      <pubDate>Sat, 21 Dec 2019 23:40:30 +0000</pubDate>
      <link>https://dev.to/iamdesigniso/don-t-stress-reactjs-01-1dkg</link>
      <guid>https://dev.to/iamdesigniso/don-t-stress-reactjs-01-1dkg</guid>
      <description>&lt;p&gt;Don't Stress: ReactJS (Day 01)&lt;/p&gt;

&lt;p&gt;Hi Readers,&lt;/p&gt;

&lt;p&gt;For a while now I wanted to start learning ReactJS, but was in fear. Not any more and for the year of 2020, I decided to take a step forward into React making major upgrades in the skillset. Yes there are frameworks that are compared to React such as Vue and Angualar, but my interest kept leaning towards this library. I am writing these collection of post for ones whom are starting React, but don't know where to start. If you are like me, you've probably visited the Reactjs.org site millions of times never really understanding. Hope this helps your Reactjs journey.&lt;/p&gt;

&lt;p&gt;Hope you enjoy!!!&lt;/p&gt;

&lt;p&gt;*What is ReactJS?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Open source library for building user interfaces&lt;/li&gt;
&lt;li&gt;Not a framework&lt;/li&gt;
&lt;li&gt;Focus on building amazing UI&lt;/li&gt;
&lt;li&gt;Rich ecosystem&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;*Why learn ReactJS?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Created and maintained by Facebook&lt;/li&gt;
&lt;li&gt;More than 100K Stars on Github&lt;/li&gt;
&lt;li&gt;Huge Community&lt;/li&gt;
&lt;li&gt;High Demand skillset&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;*Component Based Architecture&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A website can be broken down into: Header, SideNav, Main Content and Footer.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;*Reusable Code&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Components are allowed to be reused. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;*React is declarative&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Tell React what you want and React will build the actual UI&lt;/li&gt;
&lt;li&gt;React makes it painless to make the complex UI&lt;/li&gt;
&lt;li&gt;React will handle efficiently updating and rendering of the components&lt;/li&gt;
&lt;li&gt;DOM updates are handles gracefully in React.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;*More on why React?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Seamlessly integrate react into any of your applications.&lt;/li&gt;
&lt;li&gt;Portion of your page or complete page or even an entire application itself.&lt;/li&gt;
&lt;li&gt;React native for mobile applications.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Prerequisites&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;HTML, CSS and JS fundamentals&lt;/li&gt;
&lt;li&gt;ES6 &lt;/li&gt;
&lt;li&gt;JavaScript - 'this' keyword, filter, map and reduce&lt;/li&gt;
&lt;li&gt;ES6 - let &amp;amp; const, arrow functions, template literals, default parameters, object literals, rest and spread operators and destructing assignment. 
( The review should take an hour or so max and you won't need any additional studies if this is known to learn React)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Let's begin Simple ReactJS Hello World! App&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Create a folder to hold the React project(s). My folder is called "ReactJs". &lt;/li&gt;
&lt;li&gt;Within the VSCode Terminal type the following: npx create-react-app "app name"
-This may take a moment due to packages being installed.&lt;/li&gt;
&lt;li&gt;Then type: cd-my-app&lt;/li&gt;
&lt;li&gt;Then type: npm run build&lt;/li&gt;
&lt;li&gt;Once you so, the default browser will display a webpage showing the React logo. The page is locally hosted at : &lt;a href="http://localhost:3000/"&gt;http://localhost:3000/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;To edit you will have to navigate to the .src/App.js file. To do so, you will go into code editor folder menu.&lt;/li&gt;
&lt;li&gt;Within the src/App.js file, change the wording in between the paragraph tags to "Hello World!". &lt;/li&gt;
&lt;li&gt;Navigate back to the browser showing the localhost React site. Refresh. Congrats "Hello World!" should appear. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You've created your first Reactjs App!&lt;/p&gt;

</description>
      <category>designisorion</category>
      <category>react</category>
      <category>javascript</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Chromebook Dev Setup</title>
      <dc:creator>Orion F.</dc:creator>
      <pubDate>Sat, 21 Dec 2019 16:19:44 +0000</pubDate>
      <link>https://dev.to/iamdesigniso/development-on-chromebook-3n2c</link>
      <guid>https://dev.to/iamdesigniso/development-on-chromebook-3n2c</guid>
      <description>&lt;p&gt;Greetings All!&lt;/p&gt;

&lt;p&gt;I only had a few dollars to my name and needed a new laptop. That's when I purchased an Acer Chromebook 15. The cost was only $150 + tax! Once I received it, I went right away trying to download developer tools such as code editor, fonts and etc. When trying to do so I felt disappointed because many things to begin my front end development journey weren't able to be done on Chrome OS. I searched high and low on how to setup the Chromebook for development finally setting it up. After doing all the searching gathering the tools, I decided that it was time for me to give the full setup of the Chromebook Dev. I won't get lengthy with the notes following and will try to be as precise as I can be. &lt;/p&gt;

&lt;p&gt;Let me add as well that this may void your warranty on your Chromebook. If your like me, I didn't care. LOL! I just needed to get to the creating projects! &lt;/p&gt;

&lt;p&gt;Also I might add that these steps worked for myself many times. There are many ways to this solution, but I wanted to share my own.&lt;/p&gt;




&lt;p&gt;SECTION 1: Enable Developer Mode&lt;/p&gt;

&lt;p&gt;Enabling Developer Mode: When placing your Chromebook in developer mode, you are getting full access to the 'root' of the computer system files. I mean you are striving to be a "developer" right?!&lt;/p&gt;

&lt;p&gt;Steps: &lt;br&gt;
    - Turn OFF Chromebook if powered ON.&lt;br&gt;
    - Press and hold esc + refresh, then press the power button.&lt;br&gt;
    - Wait for the screen that says " Chrome OS is missing or damaged...."&lt;br&gt;
    - Press Ctrl + D&lt;br&gt;
    - If prompted, press Enter&lt;br&gt;
    - Wait for the device to reboot.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;When enabling developer mode you will be prompted this message each time you turn on the Chromebook so don't be alarmed. Just press Ctrl + D to proceed to login or desktop.&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;SECTION 2: Turn on Linux&lt;/p&gt;

&lt;p&gt;Turning on Linux will allow you to download Linux software to your Chromebook. This is the step that will allow you to install items such as code editors, apps outside of android and more.&lt;/p&gt;

&lt;p&gt;Steps:&lt;br&gt;
    - Click on settings&lt;br&gt;
    - Click the hamburger icon in the upper-left corner&lt;br&gt;
    - Click on Linux (Beta) in the menu.&lt;br&gt;
    - Click Turn On&lt;br&gt;
    - Click Install&lt;br&gt;
    - The Chromebook will download the files it needs.... (May take a moment or two so be patient)&lt;br&gt;
    - Click the Terminal icon.&lt;br&gt;
    - Type the following in the command window: sudo apt update&lt;br&gt;
    - It will update the Chromebook files (May take a moment)&lt;br&gt;
    - Close terminal window (It may ask if you're sure. Click "yes" to proceed)&lt;/p&gt;

&lt;p&gt;Alright. So we now have the Chromebook setup for Developer Mode and Linux is installed. Now we shall proceed with Nodejs and NPM.&lt;/p&gt;




&lt;p&gt;SECTION 3: Installing NodeJS and NPM&lt;/p&gt;

&lt;p&gt;Many developers heard of the terms Nodejs and NPM yet don't understand fully what they mean or what they do. Well good thing I am here! &lt;/p&gt;

&lt;p&gt;Nodejs- is a JavaScript runtime built on Chrome's V8 JavaScript engine. (Soo.... what does that mean Orion?!)&lt;/p&gt;

&lt;p&gt;**Nodejs came about when the original developer of JS extended it from something you could run in the browser to something you could run on your machine as a standalone application.&lt;/p&gt;

&lt;p&gt;NPM- Node Package Manager - is a package manager for JS. It's the default package manager for the JS runtime environment.&lt;/p&gt;

&lt;p&gt;**Most commonly, it is used to publish, discover, install and develop node programs.&lt;/p&gt;

&lt;p&gt;Steps: &lt;br&gt;
    - Open terminal and run: sudo apt-get update&lt;br&gt;
    - Update will proceed.&lt;br&gt;
    - Install: curl and gnupg: sudo apt-get install curl gnupg -y&lt;br&gt;
    - Install Nodejs: curl -sl &lt;a href="https://debv.nodesource.com/setup_10.x"&gt;https://debv.nodesource.com/setup_10.x&lt;/a&gt; | sudo -E bash - sudo apt-get install -y nodejs&lt;br&gt;
    - Close terminal once installation is complete.&lt;/p&gt;




&lt;p&gt;SECTION 4: Installing Visual Studio Code (VSCODE)&lt;/p&gt;

&lt;p&gt;VSCODE has to be the largest (if not most popular) text editor within the industry hands down. The productivity, feel and many features packed within allows you to go beyond measures within web development. There are others out there such as Sublime, ATOM, etc. I will show only how to install VSCODE.&lt;/p&gt;

&lt;p&gt;Steps: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Go to VS Code website : code.visualstudio.com&lt;/li&gt;
&lt;li&gt;Download The latest version of VSCode&lt;/li&gt;
&lt;li&gt;Open your files and locate the program in the downloads folder.&lt;/li&gt;
&lt;li&gt;Drag the file within your Linux files folder located on the right panel.&lt;/li&gt;
&lt;li&gt;Once program transfers to the Linux files folder, delete the file from the downloads folder (This will eliminate duplicate software)&lt;/li&gt;
&lt;li&gt;Click on the Linux files folder to open then double click on the VSCode program.&lt;/li&gt;
&lt;li&gt;VSCODE will install showing indicator of installment in the bottom right corner.&lt;/li&gt;
&lt;li&gt;Open VSCODE from your app menu&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;CONGRATS you have completed your Chromebook Developer Setup. Hope you enjoyed!&lt;/p&gt;

</description>
      <category>designisorion</category>
      <category>chromebook</category>
      <category>developement</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
