<?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: scotch115</title>
    <description>The latest articles on DEV Community by scotch115 (@scotch115).</description>
    <link>https://dev.to/scotch115</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%2F272502%2F7aa1a76b-4fd6-485e-89dc-9224e8d3ac58.jpeg</url>
      <title>DEV Community: scotch115</title>
      <link>https://dev.to/scotch115</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/scotch115"/>
    <language>en</language>
    <item>
      <title>Learning Web Development</title>
      <dc:creator>scotch115</dc:creator>
      <pubDate>Thu, 03 Mar 2022 07:51:05 +0000</pubDate>
      <link>https://dev.to/scotch115/learning-web-development-2d44</link>
      <guid>https://dev.to/scotch115/learning-web-development-2d44</guid>
      <description>&lt;p&gt;Every now and then, friends and family members of mine will reach out and ask me to help them either build a website, build one for them, or debug an issue they're experiencing. Some questions happen to come up frequently, and this inspired me to make the beginner's guide to web development that I wish I had when I was teaching myself. &lt;/p&gt;

&lt;p&gt;Check out the page &lt;a href="https://deciduous-jester-882.notion.site/Learning-Web-Development-4fd437257b444e9bbb40be4f8b4ae293"&gt;here&lt;/a&gt;!&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>javascript</category>
      <category>react</category>
    </item>
    <item>
      <title>Intro to Programming</title>
      <dc:creator>scotch115</dc:creator>
      <pubDate>Thu, 03 Mar 2022 07:11:38 +0000</pubDate>
      <link>https://dev.to/scotch115/intro-to-programming-4gbl</link>
      <guid>https://dev.to/scotch115/intro-to-programming-4gbl</guid>
      <description>&lt;p&gt;I’ve compiled some resources throughout my journey as a software engineer, and made this list for anyone who might want to start learning how to program given the different fields I've dipped my toes in, and just stumbled across it on my computer and thought you guys might find it interesting.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;🚧 &lt;em&gt;DISCLAIMER&lt;/em&gt;: While I have spent some time learning in each of these fields, I am in no way an expert in all of them. I am a software engineer by trade, but I work primarily with web-based technology and mobile applications in my free time. This is simply my experience with each category, and is intended for beginners seeking direction within the vast field of “software development”.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Arduino Microprocessor Development:
&lt;/h2&gt;

&lt;p&gt;Coding Arduino and other microprocessors is fun, and a great way to start learning how to code, but can sometimes be frustrating if (A) you don’t have the right components and have to order parts and wait, or (B) you simply can’t figure out where to start. These small boards are INSANELY powerful and can be used for so many different things, so it’s best to pick a &lt;em&gt;very&lt;/em&gt; specific project if you decide to go this route, and buy the pieces &lt;strong&gt;just&lt;/strong&gt; for that. Parts are not super expensive, but will typically have to be soldered, but if this is something you might be interested, then check out Adafruit (&lt;a href="https://adafruit.com/"&gt;https://adafruit.com/&lt;/a&gt; ) which is a great site for both reading through community forums for ideas (or getting help with troubleshooting), as well as actually purchasing materials. &lt;strong&gt;Generally speaking&lt;/strong&gt;: I would start with an Adafruit Metro or Feather, and a Breadboard, as they are pretty inexpensive and are great learning tools.&lt;/p&gt;

&lt;p&gt;[ Language(s) used: C++ (Arduino-specific)]&lt;/p&gt;

&lt;h2&gt;
  
  
  Scripting/Automation:
&lt;/h2&gt;

&lt;p&gt;With programming languages like Python, Javascript (specifically Node.js or vanilla Javascript), Ruby or Perl, you can write scripts (small pieces of executable code) to do some pretty incredible things like Web Scraping (searching a website or collection of sites and emulating keyboard/mouse movements to retrieve data), bots for Discord, Reddit, and Twitter, or even cooler things like IOT tasks.&lt;/p&gt;

&lt;p&gt;I have personally used scripting to develop a personal Discord bot using &lt;a href="https://discord.js.org/#/"&gt;DiscordJS&lt;/a&gt;, but it can also be written using Python, here’s a link to a Hackathon Workshop that is really in depth:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.notion.so/Building-a-Discord-Bot-in-Python3-d001d3365e14443090c0e4863015f453"&gt;https://www.notion.so/Building-a-Discord-Bot-in-Python3-d001d3365e14443090c0e4863015f453&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;There are also a variety of beginner tutorials online for Python here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://docs.python.org/3/tutorial/"&gt;https://docs.python.org/3/tutorial/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;[ Language(s) used: Python, Ruby, Javascript]&lt;/p&gt;

&lt;h2&gt;
  
  
  App Development:
&lt;/h2&gt;

&lt;p&gt;I’m going to be super honest: building apps aren't easy. I figure I'll just start with that because building apps always seems quite easy from a theoretical view, but depending on the language can be &lt;strong&gt;&lt;em&gt;incredibly&lt;/em&gt;&lt;/strong&gt; complex. That being said, in terms of building for fun, there are a couple of different paths you could take: to build apps for Android, you can use either Java or C++, but most devs use Java because its an Object-Oriented Programming language, so data is easier to manage between pages and threads. For iOS, the current standard is the Swift programming langauge, or Apple's new UI framework SwiftUI, but both of these realistically require you to build using a Mac or iPad, because the iOS developer's IDE (integrated development environment, I.E. the software tool used to build software lol) of choice is Xcode / Swift playgrounds. The final way, my preferred way, is to develop using the Dart programming langauge, and Google's &lt;a href="https://flutter.dev"&gt;Flutter&lt;/a&gt; UI framework: I like Flutter alot because it provides an easy way to build apps for either operating system using a third-party language, and has a large library of widgets (UI components) that can be used in development, vastly increasing the breadth of the developer's available tools. That being said, Dart/Flutter isn't any &lt;em&gt;easier&lt;/em&gt; than programming in Swift or Java, but more convenient if you plan on deploying to both OS' and don't want to build two separate apps. &lt;/p&gt;

&lt;p&gt;[Language(s) used: (Trick round bc its your choice) Java, C++, Swift(UI), Dart/Flutter]&lt;/p&gt;

&lt;h2&gt;
  
  
  Web Development:
&lt;/h2&gt;

&lt;p&gt;So I obviously have a lot of experience in this field, but that doesn’t mean that you have to necessarily start here, I didn’t! I started my programming journey as an iOS app developer, and was able to learn the basics of code logic and structure, but constantly found myself getting stuck with console errors due to implicitly unwrapped optionals or confusing my variable types. Web development was a beam of light for me as a beginner, because I was able to increase the complexity of my websites as I became more experienced, but vanilla HTML and CSS are pretty straightforward at their core. You can then build on this experience by learning a JavaScript library like React. React is a wildly versatile and compositional library, and is one of the most popular front-end libraries used today. You can build React web apps using either class-based components which allow developers to define and handle component state, or with React Hooks which is a somewhat new compositional feature of React that allows you to write functional components that can still store and handle component state, but without needing to define classes or structs.&lt;/p&gt;

&lt;p&gt;I’ve compiled some resources for learning web development as a beginner, and you can check it out &lt;a href="https://www.notion.so/a740b1d6f4ae442db2d90786434f9030"&gt;here&lt;/a&gt;, or you can check out these other great resources: &lt;/p&gt;

&lt;p&gt;(&lt;a href="https://reactjs.org/docs/hooks-intro.html"&gt;https://reactjs.org/&lt;/a&gt;, &lt;a href="https://www.w3schools.com/"&gt;https://www.w3schools.com/&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;[ Language(s) used: HTML, CSS, Javascript]&lt;/p&gt;

&lt;p&gt;Finally, there is &lt;/p&gt;

&lt;h2&gt;
  
  
  Program (or executable) development:
&lt;/h2&gt;

&lt;p&gt;This would be considered the more “traditional” approach, learning languages like C, C++, or Java, which are all super good to know and very powerful, and are used in many cases like computer programs and executable files. Depending on the implications, they can either be and incredibly fun challenge, or just plain confusing, so definitely tread carefully if you view yourself as a beginner. If you study Computer Science at a University like I did, you will likely learn C and Java as part of the curriculum, which is obviously helpful to know, but in full transparency: I have literally not used either language even ONCE since graduating 🤷‍♂️. If this is the route you are interested in, I would create an account at &lt;a href="https://leetcode.com/"&gt;leetcode&lt;/a&gt;, and work through the programming challenges and practice problems available, because they have a vast list of resources and explanations for the logic behind the solutions.&lt;/p&gt;

&lt;p&gt;[ Language(s) used: C, C++, Java]&lt;/p&gt;




</description>
      <category>beginners</category>
      <category>programming</category>
    </item>
    <item>
      <title>Automatic Deployment using Travis-CI</title>
      <dc:creator>scotch115</dc:creator>
      <pubDate>Thu, 21 Nov 2019 00:44:22 +0000</pubDate>
      <link>https://dev.to/scotch115/automatic-deployment-using-travis-ci-3g7c</link>
      <guid>https://dev.to/scotch115/automatic-deployment-using-travis-ci-3g7c</guid>
      <description>&lt;p&gt;I’ve been working on a NodeJS project over the last few months, and decided that I wanted to host it using Firebase and their, in my opinion, amazing suite of tools including Firebase Hosting, and Firebase Cloud Functions. &lt;/p&gt;

&lt;p&gt;There is plenty of &lt;a href="https://firebase.google.com/docs"&gt;documentation&lt;/a&gt; in regards to getting started with these tools, but there was something, inconvenient, about my workflow: &lt;/p&gt;

&lt;p&gt;Write/edit code, push code to GitHub repository, then run the command:  &lt;code&gt;firebase deploy&lt;/code&gt; , which publishes the associated directory to your Firebase app. &lt;/p&gt;

&lt;p&gt;This was a totally fine process, except that it sucked. Then I found a &lt;a href="https://medium.com/@bartwijnants/continuous-deployment-to-firebase-hosting-using-travis-ci-e7d9c798ead4"&gt;Medium&lt;/a&gt; article about how to link your Firebase account to your Travis-CI account, and on every &lt;code&gt;git push&lt;/code&gt;, you could automatically have Travis deploy your code. &lt;/p&gt;

&lt;p&gt;What I think is so important about this process, is that using an app like &lt;a href="https://apps.apple.com/us/app/working-copy-git-client/id896694807"&gt;Working Copy&lt;/a&gt;, or &lt;a href="https://apps.apple.com/us/app/play-js-javascript-ide/id1423330822"&gt;Play.js&lt;/a&gt; you can (almost) completely develop a website or web app using something like an iPad Pro.&lt;/p&gt;

&lt;p&gt;Finally! &lt;/p&gt;

&lt;p&gt;I don’t know, maybe you’re not as excited about this as I am, but I think it’s pretty cool 🤷🏼‍♂️.&lt;/p&gt;

&lt;p&gt;P.s. Travis-CI can also deploy to other services! &lt;br&gt;
&lt;a href="https://docs.travis-ci.com/user/deployment/"&gt;https://docs.travis-ci.com/user/deployment/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>node</category>
      <category>webdev</category>
      <category>todayilearned</category>
    </item>
  </channel>
</rss>
