<?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: Kendra Wing</title>
    <description>The latest articles on DEV Community by Kendra Wing (@kwing25).</description>
    <link>https://dev.to/kwing25</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%2F717920%2F41965a7c-4e04-4dd7-a144-1376f84be591.JPG</url>
      <title>DEV Community: Kendra Wing</title>
      <link>https://dev.to/kwing25</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kwing25"/>
    <language>en</language>
    <item>
      <title>Choosing Frontend Libraries/Frameworks: create-react-app or create-next-app?</title>
      <dc:creator>Kendra Wing</dc:creator>
      <pubDate>Sat, 13 Jan 2024 23:56:13 +0000</pubDate>
      <link>https://dev.to/kwing25/choosing-frontend-librariesframeworks-create-react-app-or-create-next-app-2n0f</link>
      <guid>https://dev.to/kwing25/choosing-frontend-librariesframeworks-create-react-app-or-create-next-app-2n0f</guid>
      <description>&lt;p&gt;In the field of frontend development, the appropriate tooling and framework play a vital role in the creation of high-quality and effective web applications. Widely used tools for beginning projects are &lt;strong&gt;create-react-app&lt;/strong&gt; (CRA) by React and &lt;strong&gt;create-next-app&lt;/strong&gt; by Next.js. This blog post will delve into the advantages and disadvantages of each, aiding you in making a well-informed choice for your upcoming project.&lt;/p&gt;

&lt;h3&gt;
  
  
  ✔️ &lt;strong&gt;Pros of create-react-app:&lt;/strong&gt;
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Quick setup&lt;/strong&gt;: Create React App offers a fast setup process, allowing developers to begin coding immediately instead of focusing on lengthy configuration tasks.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Opinionated defaults&lt;/strong&gt;: It is pre-configured with logical defaults, including Webpack, Babel, and a development server, which facilitates both new and experienced developers in starting with modern JavaScript and JSX.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Support for the React ecosystem&lt;/strong&gt;: It integrates flawlessly with the entire React ecosystem, incorporating popular libraries like Redux, React Router, and others.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Automatic updates&lt;/strong&gt;: Create React App remains updated with the latest developments in the React ecosystem, simplifying the use of new features and improvements.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  👎 &lt;strong&gt;The cons of using create-react-app:&lt;/strong&gt;
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Low flexibility&lt;/strong&gt;: While Create React App offers an excellent starting point, it may not be flexible enough for advanced or custom projects that require significant customization or alterations to the build process.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;No server-side rendering (SSR)&lt;/strong&gt;: If your project critically needs server-side rendering, Create React App alone is not sufficient, necessitating either an ejection or the use of alternative frameworks like Next.js.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  ☞ &lt;a href="https://create-react-app.dev/docs/getting-started"&gt;React.js Installation&lt;/a&gt;
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx create-react-app my-app
&lt;span class="nb"&gt;cd &lt;/span&gt;my-app
npm start
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  What is create-next-app?
&lt;/h2&gt;

&lt;p&gt;Create Next App is essentially a command-line tool tailored specifically for assisting developers in establishing Next.js applications. Next.js, built upon React, helps enhance React applications by introducing functionalities like server-side rendering and static site generation, among others.&lt;/p&gt;

&lt;h3&gt;
  
  
  ✔️ Benefits of create-next-app:
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Server-side rendering (SSR)&lt;/strong&gt;: Next.js offers built-in server-side rendering, which not only enhances performance but also automatically optimizes an application for search engines without any additional configuration.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Static site generation (SSG)&lt;/strong&gt;: Next.js enables the creation of static HTML files that are quicker to load and less demanding on servers.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;API routes&lt;/strong&gt;: Next.js allows for the creation of serverless API routes, enabling the hosting of backend functions directly within your frontend application.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Automatic Code Splitting&lt;/strong&gt;: In standard Next.js applications, JavaScript code is automatically broken into smaller chunks, aiding in optimizing the load time of an application.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  👎 Cons of using create-next-app:
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Learning curve&lt;/strong&gt;: The introduction of new concepts and complexities in Next.js compared to Create React App can increase the learning requirements for developers who are not familiar with these concepts.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Overkill for simple projects&lt;/strong&gt;: If your project does not require server-side rendering, static site generation, or advanced routing, Next.js might introduce unnecessary complexity.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  ☞ &lt;a href="https://nextjs.org/docs/getting-started/installation"&gt;Next.js Installation&lt;/a&gt;
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx create-next-app@latest
&lt;span class="c"&gt;### On installation, you'll see the following prompts:&lt;/span&gt;
What is your project named? my-app
Would you like to use TypeScript? No / Yes
Would you like to use ESLint? No / Yes
Would you like to use Tailwind CSS? 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? No / Yes
Would you like to 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; &lt;span class="o"&gt;(&lt;/span&gt;@/&lt;span class="k"&gt;*&lt;/span&gt;&lt;span class="o"&gt;)&lt;/span&gt;? No / Yes
What import &lt;span class="nb"&gt;alias &lt;/span&gt;would you like configured? @/&lt;span class="k"&gt;*&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  ⚡Conclusion
&lt;/h2&gt;

&lt;p&gt;Both create-react-app and create-next-app are indeed wonderful tools for initiating backend projects, each offering its own set of strengths and optimal use cases. If you are seeking a quick and hassle-free setup for React applications, create-react-app is your go-to choice. Conversely, if your requirements include server-side rendering, static site generation, or more advanced features, create-next-app paired with Next.js offers a dynamic framework to fulfill these needs.&lt;/p&gt;

&lt;p&gt;Ultimately, the choice between create-react-app and create-next-app hinges on the specific requirements of your project. Evaluate the pros and cons discussed here and select the tool that aligns most closely with your development goals and needs.&lt;/p&gt;

&lt;p&gt;Happy coding!&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Note: Always ensure you are up-to-date with the latest version of create-react-app and the most recent documentation for create-next-app to fully leverage their feature sets and enhancements.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>react</category>
      <category>nextjs</category>
      <category>fullstack</category>
    </item>
    <item>
      <title>Helpful sites where I've learned LLM Prompts in 2023</title>
      <dc:creator>Kendra Wing</dc:creator>
      <pubDate>Mon, 01 Jan 2024 06:17:55 +0000</pubDate>
      <link>https://dev.to/kwing25/helpful-sites-where-ive-learned-llm-prompts-in-2023-1bde</link>
      <guid>https://dev.to/kwing25/helpful-sites-where-ive-learned-llm-prompts-in-2023-1bde</guid>
      <description>&lt;p&gt;2023 has been an incredible year for diving into the world of Large Language Models (LLMs) and Prompt Engineering. The journey has been exhilarating, thanks to the plethora of online resources and vibrant communities that have opened their arms to learners like me. I want to share some of these valuable resources as we wrap up the year, hoping they can be as beneficial to you as they have been for me.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;FlowGPT(&lt;a href="https://flowgpt.com/"&gt;https://flowgpt.com/&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;FlowGPT is a hidden gem for prompt engineering enthusiasts, with a vibrant community for event participation and sharing. This open platform supports a wide range of LLM models, including ChatGPT, Google Palm, and others, and encourages users to find, share, and improve prompts. It promotes learning through community input, which goes beyond simple sharing. FlowGPT's community feature promotes engagement and collective growth in the developing LLM scene, making it ideal for both beginners and professionals. (&lt;em&gt;Note: Some models like GPT-4 have usage limits&lt;/em&gt;.) &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Learn Prompting (&lt;a href="https://learnprompting.org/docs/intro"&gt;https://learnprompting.org/docs/intro&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;LearnPrompting.org provides a free, open-source curriculum for learning ChatGPT and other AI tools for people of all skill levels. This resource offers extensive documentation and guidelines, making it a good starting point for prompt engineering. In addition, its vibrant Discord community is ideal for brainstorming, collaborating, and networking with peers. Stay ahead of the curve in the fast-paced world of AI by connecting with other supporters in this dynamic field.&lt;br&gt;
(&lt;em&gt;Note: Newly added Video Courses do cost&lt;/em&gt;.) &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;DeepLearning.AI (&lt;a href="https://www.deeplearning.ai/"&gt;https://www.deeplearning.ai/&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;DeepLearning.AI, working together with OpenAI, offers a free online course named 'ChatGPT Prompt Engineering for Developers'. This compact yet thorough training explains how LLMs work, imparts recommended practices for prompt engineering, and shows how to use LLM APIs in diverse applications. Participants receive a certificate from DeepLearning.AI upon completion, indicating their proficiency in this cutting-edge topic.&lt;/p&gt;




&lt;p&gt;As we move forward into another year, filled with potential and opportunities for further learning, I encourage you to explore these resources. Stay curious and keep learning!&lt;/p&gt;

&lt;p&gt;&lt;em&gt;👋 Thanks for checking out this article! Connect with me on &lt;a href="https://www.linkedin.com/in/kendrawing/"&gt;LinkedIn&lt;/a&gt; and &lt;a href="https://github.com/kwing25"&gt;GitHub&lt;/a&gt;!&lt;/em&gt;&lt;/p&gt;

</description>
      <category>promptengineering</category>
      <category>llm</category>
      <category>learning</category>
      <category>chatgpt</category>
    </item>
    <item>
      <title>How to write a good README for your project</title>
      <dc:creator>Kendra Wing</dc:creator>
      <pubDate>Wed, 23 Mar 2022 21:42:25 +0000</pubDate>
      <link>https://dev.to/kwing25/how-to-write-a-good-readme-for-your-project-1l10</link>
      <guid>https://dev.to/kwing25/how-to-write-a-good-readme-for-your-project-1l10</guid>
      <description>&lt;p&gt;&lt;em&gt;A good README.md is essential for any project. It is a summary of your project and gives users instructions &amp;amp; important information. This is a simple guide to help you make an accessible guide for your project.&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  What is a README?
&lt;/h3&gt;

&lt;p&gt;A README is a file that explains the details and all important information for a project. A standard README file will have a &lt;code&gt;.md&lt;/code&gt; (Markdown) extension and will be at the root of your project repo. &lt;em&gt;Note: Get used to typing in the Markdown Language for your project README's! There is still a lot of different styling &amp;amp; editing options available in markdown vs .docx, .txt. etc.&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  The Structure of a README
&lt;/h3&gt;

&lt;p&gt;Example of a Good README&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Project Title&lt;/strong&gt; &lt;br&gt;
This is the must have of any project. It is important to know what your project is going to be about and the title represents that.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Project Description&lt;/strong&gt; &lt;br&gt;
This is an important part of your project and what many developers and non-developers will look at. It is vital to have the most accurate and correct information. The description needs to be well written with no grammar errors and that is readable to users of multiple backgrounds. It is important to put some time and thought into writing the description of the project. It does not need to be long but needs to summarize the project. &lt;em&gt;(What does your app do? What tech did you use?)&lt;/em&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;&lt;em&gt;Table of Contents (Optional)&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
A table of contents is good if you have a lengthy README and can help users navigate to sections quickly but is not a must have.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Getting Started&lt;/strong&gt;&lt;br&gt;
This section typically is brief and will list the pre-requisites that the user must have in order to start using the project code. This section can be similar or be combined with the Installation section. &lt;em&gt;(Ex: Must have node -v)&lt;/em&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Installation&lt;/strong&gt;&lt;br&gt;
This is where you will list the full instructions for users on how they can install and start using your project. This should include multiple steps and have detailed descriptions and outcomes for users. It is important to take your time and write these steps as thoroughly as possible. This will help users a lot and will help prevent users from coming back and asking follow-up questions. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Other Instructions, Specifications, Attributes, or Project Info&lt;/strong&gt;&lt;br&gt;
This section(s) can include any other relevant project information. This can include information specific to a particular OS or Framework &lt;em&gt;(Ex: Linux, React, etc)&lt;/em&gt;. Certain projects have specific instructions and information that may need to have their own separate sections. As you develop your project you will get a better idea of what you need to include in your README and how to structure it. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Contributing&lt;/strong&gt;&lt;br&gt;
It is important to list all the names and information of the people who've contributed to the project. Be sure to include their GitHub Profile Name and any other social media they may want to have listed. There are some cool &lt;a href="https://contrib.rocks/preview" rel="noopener noreferrer"&gt;markdown contributing badges&lt;/a&gt; that I will list in the Good Resources below. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Acknowledgements&lt;/strong&gt;&lt;br&gt;
Similar to Contributing it is important to include all the sources that helped you complete this project. It's always good to give credit where credit is due.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;License&lt;/strong&gt;&lt;br&gt;
Choose a license for your project. To learn more about license's check out &lt;a href="https://choosealicense.com/" rel="noopener noreferrer"&gt;choosealicense.com&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;




&lt;p&gt;✧ &lt;em&gt;Optional: Additional Sections&lt;/em&gt; &lt;/p&gt;

&lt;blockquote&gt;
&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;How to Contribute to the Project&lt;/strong&gt;&lt;br&gt;
Add ways that that developers can contribute to the project.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Tests&lt;/strong&gt;&lt;br&gt;
Write tests for your application and then provide examples on how to run them. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Examples&lt;/strong&gt;&lt;br&gt;
You really go the extra mile when you provide examples of your code/application. This could be a screenshot, code block, video, webpage, etc. This can be really helpful to your users. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Badges&lt;/strong&gt;&lt;br&gt;
Try adding some cool markdown badges! There are badges at sites like &lt;a href="https://shields.io/" rel="noopener noreferrer"&gt;shields.io&lt;/a&gt; and they include important code monitoring and other tracking info. Check out the Good Resources section below. &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;




&lt;h3&gt;
  
  
  &lt;a href="https://gist.github.com/kwing25/451f438e2dadae733be260700f43ea47" rel="noopener noreferrer"&gt;Example of a Good README&lt;/a&gt;
&lt;/h3&gt;


&lt;div class="ltag_gist-liquid-tag"&gt;
  
&lt;/div&gt;





&lt;h4&gt;
  
  
  Good Resources
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://www.makeareadme.com/" rel="noopener noreferrer"&gt;Make a readme&lt;/a&gt; the basics of a readme.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://awesomeopensource.com/projects/readme" rel="noopener noreferrer"&gt;Awesome Open Source&lt;/a&gt; has some great README templates.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/kefranabg/readme-md-generator" rel="noopener noreferrer"&gt;CLI readme generator&lt;/a&gt; a command line &lt;code&gt;package.json&lt;/code&gt; &amp;amp; git config file.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://shields.io/" rel="noopener noreferrer"&gt;Shields.io&lt;/a&gt; badges for all your markdown documents.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://badgesgenerator.com/" rel="noopener noreferrer"&gt;Badges Generator&lt;/a&gt; create your own markdown badges. &lt;/li&gt;
&lt;li&gt;
&lt;a href="https://contrib.rocks/preview" rel="noopener noreferrer"&gt;Contributing Badge&lt;/a&gt; a contributing badge for your project README.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://choosealicense.com/" rel="noopener noreferrer"&gt;choosealicense.com&lt;/a&gt; information for license's for projects.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://medium.com/techiepedia/open-source-license-in-github-how-to-add-license-to-a-github-repository-df61ac4fc497" rel="noopener noreferrer"&gt;Open Source License Article&lt;/a&gt; information on open source license's.&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;👋 Thanks so much for reading this article! Please check out my other articles on &lt;a href="https://dev.to/kwing25"&gt;Dev.to&lt;/a&gt; and connect with me on &lt;a href="https://www.linkedin.com/in/kendrawing" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;


&lt;div class="ltag__user ltag__user__id__717920"&gt;
    &lt;a href="/kwing25" class="ltag__user__link profile-image-link"&gt;
      &lt;div class="ltag__user__pic"&gt;
        &lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F717920%2F41965a7c-4e04-4dd7-a144-1376f84be591.JPG" alt="kwing25 image"&gt;
      &lt;/div&gt;
    &lt;/a&gt;
  &lt;div class="ltag__user__content"&gt;
    &lt;h2&gt;
&lt;a class="ltag__user__link" href="/kwing25"&gt;Kendra Wing&lt;/a&gt;Follow
&lt;/h2&gt;
    &lt;div class="ltag__user__summary"&gt;
      &lt;a class="ltag__user__link" href="/kwing25"&gt;Developer &amp;amp; Advocate. I Build Creative UI &amp;amp; Innovative Apps with React.js, APIs, SQL, JS Frameworks, Open Source, &amp;amp; LLMs / AI 🔮.&lt;/a&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;


</description>
      <category>opensource</category>
      <category>writing</category>
      <category>github</category>
    </item>
    <item>
      <title>How to Start Contributing to Open Source</title>
      <dc:creator>Kendra Wing</dc:creator>
      <pubDate>Sun, 16 Jan 2022 00:39:44 +0000</pubDate>
      <link>https://dev.to/kwing25/how-to-start-contributing-to-open-source-12e9</link>
      <guid>https://dev.to/kwing25/how-to-start-contributing-to-open-source-12e9</guid>
      <description>&lt;p&gt;This has been my first year as a developer and I've learned a lot by contributing to multiple open source projects. I've heard from other Dev's that they've had trouble finding open source projects and just generally knowing where to start in the open-source community so I decided to write about resources &amp;amp; tips that helped me. &lt;/p&gt;

&lt;h3&gt;
  
  
  What is Open Source?
&lt;/h3&gt;

&lt;p&gt;Open Source is a term that refers to software bases or platforms with source code &lt;em&gt;(GitHub, Gitlab, Bitbucket, etc.)&lt;/em&gt; that is accessible and can be modified or enhanced by anyone. &lt;/p&gt;

&lt;p&gt;Open source projects are a great way to collaborate with other Developers and build a network. Contributing to open source projects can help you develop &amp;amp; learn and make an impact to important projects in Tech. &lt;em&gt;Some popular examples of open source include- Mozilla Firefox, Linux, WordPress, Bitcoin, and Android.&lt;/em&gt;  ☞ &lt;strong&gt;&lt;em&gt;Learn more at &lt;a href="https://opensource.com/resources/what-open-source" rel="noopener noreferrer"&gt;opensource.com&lt;/a&gt;, &lt;a href="https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source" rel="noopener noreferrer"&gt;digitalocean.com&lt;/a&gt;, and &lt;a href="https://docs.github.com/en/get-started/exploring-projects-on-github/finding-ways-to-contribute-to-open-source-on-github" rel="noopener noreferrer"&gt;github.com&lt;/a&gt;.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Where to Start?
&lt;/h3&gt;

&lt;p&gt;I first started learning and contributing to open source during a Hackathon event. I was able to start my own open source project and found other developers to help grow the project. It was a great opportunity to connect and collaborate on some code. &lt;/p&gt;

&lt;p&gt;It's important to have an understanding of your skills level and to know the basics of GitHub and git &lt;em&gt;(git clone, git pull, git push, git status, git status, etc.)&lt;/em&gt; &lt;em&gt;☛ &lt;a href="https://training.github.com/" rel="noopener noreferrer"&gt;git cheatsheet&lt;/a&gt;&lt;/em&gt; &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Find Open Source Projects:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;    &lt;strong&gt;&lt;a href="https://www.firsttimersonly.com/" rel="noopener noreferrer"&gt;firsttimersonly.com&lt;/a&gt;&lt;/strong&gt; has links to everything you need to get started on open source.&lt;/li&gt;
&lt;li&gt;    &lt;strong&gt;&lt;a href="https://goodfirstissues.com/" rel="noopener noreferrer"&gt;goodfirstisssues.com&lt;/a&gt;&lt;/strong&gt; &amp;amp; &lt;a href="https://goodfirstissue.dev/" rel="noopener noreferrer"&gt;goodfirstissue.dev&lt;/a&gt; are the sites where I found open source repos that needed help and let me filter by the programming language &lt;em&gt;(HTML, CSS, JavaScript, etc.).&lt;/em&gt; &lt;em&gt;Anyone regardless of skill level can use these sites&lt;/em&gt;. &lt;/li&gt;
&lt;li&gt;    &lt;strong&gt;&lt;a href="https://devpost.com/hackathons" rel="noopener noreferrer"&gt;Devpost&lt;/a&gt;&lt;/strong&gt; has a list of multiple hackathons that you can participate in. &lt;em&gt;You DON'T need to do a Hackathon to contribute to open source it is just a good resource for new dev's.&lt;/em&gt;
&lt;/li&gt;
&lt;/ul&gt;

&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%2Fgithub.com%2Fkwing25%2Fassets%2Fblob%2Fmain%2Fposts%2Fopensourcepostgraphics%2FGood%2520First%2520Issues%2520Gif.gif%3Fraw%3Dtrue" 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%2Fgithub.com%2Fkwing25%2Fassets%2Fblob%2Fmain%2Fposts%2Fopensourcepostgraphics%2FGood%2520First%2520Issues%2520Gif.gif%3Fraw%3Dtrue" alt="demo gif"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Once you've found a project your interested in...&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;    Go to the repo's README.md &lt;/li&gt;
&lt;li&gt;    Look at the &lt;strong&gt;Contributing&lt;/strong&gt; section to find out the project's requirements and instructions on how to contribute. &lt;strong&gt;&lt;em&gt;⚠️ Make sure to find a project that clearly states the instructions for contributors. This is especially important if you are new to open source.&lt;/em&gt;&lt;/strong&gt;
&lt;em&gt;*Be sure to read the Code of Conduct before getting started on any project you contribute to!&lt;/em&gt;
&lt;/li&gt;
&lt;/ul&gt;

&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%2Fgithub.com%2Fkwing25%2Fassets%2Fblob%2Fmain%2Fposts%2Fopensourcepostgraphics%2Frepodemogif.gif%3Fraw%3Dtrue" 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%2Fgithub.com%2Fkwing25%2Fassets%2Fblob%2Fmain%2Fposts%2Fopensourcepostgraphics%2Frepodemogif.gif%3Fraw%3Dtrue" alt="demo gif"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Look at the project's open issues:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;    Most open source projects will have open &lt;strong&gt;Issues&lt;/strong&gt; that describe errors, updates, enhancements, and other things that are needed for the project. 
It is good to look through all the open issues and see if you can contribute &amp;amp; complete that issue. If there are no open issues and you would like to make your own contribution be sure to look at the README.md &lt;em&gt;(mentioned in Step 2)&lt;/em&gt; for instructions.&lt;/li&gt;
&lt;/ul&gt;

&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%2Fgithub.com%2Fkwing25%2Fassets%2Fblob%2Fmain%2Fposts%2Fopensourcepostgraphics%2Fissuedemogif.gif%3Fraw%3Dtrue" 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%2Fgithub.com%2Fkwing25%2Fassets%2Fblob%2Fmain%2Fposts%2Fopensourcepostgraphics%2Fissuedemogif.gif%3Fraw%3Dtrue" alt="demo gif"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Fork &amp;amp; Clone the project down to your machine and start coding!&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Fkwing25%2Fassets%2Fblob%2Fmain%2Fposts%2Fopensourcepostgraphics%2Fforkclonepicdemo.png%3Fraw%3Dtrue" 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%2Fgithub.com%2Fkwing25%2Fassets%2Fblob%2Fmain%2Fposts%2Fopensourcepostgraphics%2Fforkclonepicdemo.png%3Fraw%3Dtrue" alt="demo pic"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. Make a Pull Request&lt;/strong&gt;&lt;br&gt;
An open source project pull request template should include the following:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;    PR Title/Subject&lt;/li&gt;
&lt;li&gt;    Description of code changes, enhancements, etc.&lt;/li&gt;
&lt;li&gt;    Reason for submitting PR &lt;em&gt;(fixes bugs, enhancement, etc.)&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;    Tests or Checks performed on code&lt;/li&gt;
&lt;li&gt;    &lt;em&gt;Any other documentation...&lt;/em&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;🚨 The most important things for any Pull Request is to write a clear and concise message of the changes you made. &lt;strong&gt;Proofread and correct any types in your code before you make a PR!&lt;/strong&gt; * &lt;em&gt;Be sure to do a git pull so you have the up to date code.&lt;/em&gt; &lt;/p&gt;

&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%2Fgithub.com%2Fkwing25%2Fassets%2Fblob%2Fmain%2Fposts%2Fopensourcepostgraphics%2Fprdemogif.gif%3Fraw%3Dtrue" 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%2Fgithub.com%2Fkwing25%2Fassets%2Fblob%2Fmain%2Fposts%2Fopensourcepostgraphics%2Fprdemogif.gif%3Fraw%3Dtrue" alt="demo gif"&gt;&lt;/a&gt;  &lt;/p&gt;




&lt;h4&gt;
  
  
  I hope you find this brief guide helpful. Contributing to Open Source is a great way to connect, contribute, learn, and develop some awesome code! I highly recommend any new Dev's to find an Open Source project and show off some of your skills! Best of luck to you in your coding journey! 💻💪💫
&lt;/h4&gt;




&lt;p&gt;&lt;strong&gt;&lt;em&gt;👋 Connect with me on &lt;a href="//linkedin.com/in/kendrawing"&gt;LinkedIn&lt;/a&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;


&lt;div class="ltag__user ltag__user__id__717920"&gt;
    &lt;a href="/kwing25" class="ltag__user__link profile-image-link"&gt;
      &lt;div class="ltag__user__pic"&gt;
        &lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F717920%2F41965a7c-4e04-4dd7-a144-1376f84be591.JPG" alt="kwing25 image"&gt;
      &lt;/div&gt;
    &lt;/a&gt;
  &lt;div class="ltag__user__content"&gt;
    &lt;h2&gt;
&lt;a class="ltag__user__link" href="/kwing25"&gt;Kendra Wing&lt;/a&gt;Follow
&lt;/h2&gt;
    &lt;div class="ltag__user__summary"&gt;
      &lt;a class="ltag__user__link" href="/kwing25"&gt;Developer &amp;amp; Advocate. I Build Creative UI &amp;amp; Innovative Apps with React.js, APIs, SQL, JS Frameworks, Open Source, &amp;amp; LLMs / AI 🔮.&lt;/a&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;em&gt;I plan on writing additional posts on how to Create a PR, Write a good README.md, Repo Basics (Maintainer, Labels, Issues, Deployment, Code of Conduct, License, etc.), and good Collaboration with other Dev's tips. Being a Junior Dev I hope to pass on some tips to other Dev's who are starting out. &lt;a href="//dev.to/kwing25"&gt;Stay tuned for more updates!&lt;/a&gt;&lt;/em&gt; 

</description>
      <category>opensource</category>
      <category>beginners</category>
      <category>webdev</category>
    </item>
    <item>
      <title>My Hacktoberfest2021 Journey</title>
      <dc:creator>Kendra Wing</dc:creator>
      <pubDate>Mon, 01 Nov 2021 00:49:24 +0000</pubDate>
      <link>https://dev.to/kwing25/my-hacktoberfest2021-journey-4cc5</link>
      <guid>https://dev.to/kwing25/my-hacktoberfest2021-journey-4cc5</guid>
      <description>&lt;h2&gt;
  
  
  Hacktoberfest 2021 ~ Women In Tech App/API creation ~ A Web Dev's Reflection
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://hacktoberfest.digitalocean.com/"&gt;Hacktoberfest2021&lt;/a&gt;&lt;/p&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--A9-wwsHG--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev.to/assets/github-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/kwing25"&gt;
        kwing25
      &lt;/a&gt; / &lt;a href="https://github.com/kwing25/Women-Who-ve-Changed-Tech"&gt;
        Women-Who-ve-Changed-Tech
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      Updates coming soon 2023... Women Tech Pioneers API &amp;amp; React App 👩🏻‍💻. List of amazing Female Tech &amp;amp; STEM Pioneers. Contributions to the list are welcome! 
    &lt;/h3&gt;
  &lt;/div&gt;
&lt;/div&gt;


&lt;p&gt;‣The Project ‣The Beginning ‣The Future ‣Being a Maintainer ‣Women In Tech ‣Thanks ‣See more&lt;/p&gt;

&lt;p&gt;This was my 1st time being a Contrbutor &amp;amp; Maintainer in Hactoberfest. I'm a new Bootcamp Grad &amp;amp; Developer and this event was a great opportunity to contribute to Open Source Projects.   &lt;/p&gt;

&lt;h3&gt;
  
  
  The Project
&lt;/h3&gt;

&lt;p&gt;Looking at the many open source projects I decided I wanted to do more than just contribute. For a while, I've wanted to do a Female Tech Pioneers Web API/React App after noticing that there aren't many sources online of just Females in Tech. I decided to start a project that would build the foundation of an all-Women Tech &amp;amp; STEM Pioneer API and Website. I wanted to have multiple contributors building a list of Female Tech Individuals. It's been surprising to see the number of people Contributing to the list. I didn't think that there would be many people who would see the Repo and it's been incredible working with people all over the world 🌎. &lt;/p&gt;

&lt;h4&gt;
  
  
  The Beginning
&lt;/h4&gt;

&lt;p&gt;I started with the goal of developing a simple Front End &lt;a href="https://reactjs.org/"&gt;React JS&lt;/a&gt;  and a JSON &amp;amp; Yaml File for the API List. Creating the basic structure of the site I used &lt;a href="https://sass-lang.com/"&gt;Sass/SCSS&lt;/a&gt; for Styling, &lt;a href="https://getbootstrap.com/"&gt;Bootstrap&lt;/a&gt; for Structure, and &lt;a href="https://www.npmjs.com/"&gt;npm packages&lt;/a&gt; (Font Awesome, React-Scroll-Motion). For the API Development I used &lt;a href="//postman.com"&gt;Postman&lt;/a&gt;.&lt;/p&gt;

&lt;h4&gt;
  
  
  The Future
&lt;/h4&gt;

&lt;p&gt;This project is just in its infancy and I plan on developing this into a full Web API using REST &amp;amp; React.js as the main technologies. Having multiple Collaborators &amp;amp; Contributors will help to the project's development. &lt;strong&gt;&lt;em&gt;&lt;a href="https://github.com/kwing25/Women-Who-ve-Changed-Tech"&gt;Contribute☞&lt;/a&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Being a Maintainer
&lt;/h4&gt;

&lt;p&gt;Being a maintainer on a repo can be very rewarding but also involves a lot of work. &lt;a href="https://docs.github.com/"&gt;GitHub&lt;/a&gt; &amp;amp; GitLab make Devops/Repo Management accessible for users and is vital for open source collaboration. &lt;em&gt;Issues, Docs, PR's, Tracking, Actions, Projects, Etc.&lt;/em&gt;. One of the most important things I've learned is that having strong connections &amp;amp; communication with other collaborators can make a huge difference in a project. &lt;/p&gt;




&lt;h3&gt;
  
  
  Women in Tech
&lt;/h3&gt;

&lt;p&gt;My experience as a Woman in the Tech Industry has come with challenges. I started out taking Computer Networking courses and wanted to get certifications in IT and Security. There were very few women in these classes and sometimes I was the only one. I never let this stop me from going into this field and I don't want this to stop any other woman from pursuing a career in tech. But I had to learn and grow more confident in myself. Amy Hood the CFO of Microsoft put this feeling into good words-&lt;br&gt;&lt;br&gt;
"Every job I took, I was deeply uncomfortable in terms of feeling unqualified. Every step, every risk I took, built confidence."&lt;br&gt;&lt;br&gt;
When you love a certain field and are passionate about it you can achieve about anything (usually easier said than done). There are so many talented women in the Tech Industry and so many that have made a lasting impact. My ultimate goal for this project is to document women in Tech and make sure there remembered in Tech history. &lt;/p&gt;


&lt;h4&gt;
  
  
  Thanks
&lt;/h4&gt;

&lt;p&gt;👏 Many great Contributors on this project. See the list ☞ github.com/kwing25/Women-Who-ve-Changed-Tech/graphs/contributors&lt;/p&gt;
&lt;h4&gt;
  
  
  See more
&lt;/h4&gt;

&lt;p&gt;Contact-&lt;br&gt;
&lt;a href="https://github.com/kwing25"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Zht-zCtS--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://img.shields.io/badge/GitHub-%40kwing25-85e2cd%3Fstyle%3Dflat%26logo%3DGitHub%26link%3Dhttps://github.com/kwing25" alt="GitHub " width="131" height="20"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.linkedin.com/in/kendrawing/"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Tx9zah9F--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://img.shields.io/badge/LinkedIn-gray%3Fstyle%3Dflat%26logo%3DLinkedin%26link%3Dhttps://www.linkedin.com/in/kendrawing/" alt="LinkedIn" width="75" height="20"&gt;&lt;/a&gt;&lt;/p&gt;



&lt;p&gt;&lt;a href="https://www.britannica.com/biography/Ada-Lovelace"&gt;Ada Lovelace&lt;/a&gt; was my first entry to the list. ✦ Known as the 1st Computer Programmer. Ada was brilliant in Mathematics &amp;amp; Computing. She lived in the 1800s and is still remembered today for her contributions in this field. &lt;br&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--WchBXiHf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://cdn.britannica.com/22/23622-050-E60DC899/Ada-King-countess-Lovelace-Alfred-Edward-Chalon-circa-1838.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--WchBXiHf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://cdn.britannica.com/22/23622-050-E60DC899/Ada-King-countess-Lovelace-Alfred-Edward-Chalon-circa-1838.jpg" alt="profile" width="800" height="995"&gt;&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="w"&gt;  &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"id"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"1"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Ada Lovelace"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"known_for"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"First Computer Programmer"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"Bio"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"Summary"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"The daughter of famed poet Lord Byron, Augusta Ada Byron, Countess of Lovelace — better known as &lt;/span&gt;&lt;span class="se"&gt;\"&lt;/span&gt;&lt;span class="s2"&gt;Ada Lovelace&lt;/span&gt;&lt;span class="se"&gt;\"&lt;/span&gt;&lt;span class="s2"&gt; — showed her gift for mathematics at an early age. She translated an article on an invention by Charles Babbage, and added her own comments. Because she introduced many computer concepts, Lovelace is considered the first computer programmer"&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"Fields"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"Computing"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
          &lt;/span&gt;&lt;span class="s2"&gt;"Programming"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
          &lt;/span&gt;&lt;span class="s2"&gt;"Algorithms"&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"Legacy"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Lovelace's contributions to the field of computer science were not discovered until the 1950s. Her notes were reintroduced to the world by B.V. Bowden, who republished them in 'Faster Than Thought - A Symposium on Digital Computing Machines'. Since then, Ada has received many posthumous honors for her work."&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






</description>
      <category>hacktoberfest</category>
      <category>womenintech</category>
      <category>devops</category>
    </item>
  </channel>
</rss>
