One place for hosting & domains

      Source

      Level Up as an Open Source Contributor


      How to Join

      This Tech Talk is free and open to everyone. Register on Eventbrite here to receive a link to join on Tuesday, October 6, 2020, 11:00 a.m.–12:00 p.m. ET.

      About the Talk

      This talk will give open source contributors the tools to prepare pull requests that will be accepted the first time.

      The perfect pull request is correctly branched and shows a good set of changes, so we’ll cover some git advice and how to recover from common mistakes. We’ll also look at the whole package of your contributions, and the impact you can make in the open source world.

      Whether you are brand new to open source, or looking to use Hacktoberfest to level up your tech skills, understanding the pull request process from all sides can help you meet your goals.

      What You’ll Learn

      • Preparing and submitting pull requests that people will really want to review and merge.
      • Git tricks for working with forks and branches.

      This Talk is Designed For

      • Open source contributors of all levels, who want to produce more complete pull requests that are ready to be accepted.
      • Software developers who are participating in Hacktoberfest.

      Prerequisites

      • You have basic knowledge of Git commits.

      About the Presenter

      Lorna Mitchell is a Developer Advocate at Vonage and a published author and conference speaker. Lorna is passionate about open source technologies and sharing knowledge, code and experiences with developers everywhere. In her spare time, Lorna blogs at http://lornajane.net. Lorna is based in Yorkshire, UK.

      About Hacktoberfest

      Hacktoberfest is a monthlong celebration of open source software, organized by DigitalOcean. Complete the 2020 challenge and earn a limited edition T-shirt.

      To join the live Tech Talk, register here.



      Source link

      Getting the Most Out of Open Source


      How to Join

      This Tech Talk is free and open to everyone. Register below to get a link to join the live event.

      FormatDateRSVP
      Presentation and Q&AOctober 1, 2020, 11:00–11:45 a.m. ET

      If you can’t join us live, the video recording will be published here as soon as it’s available.

      About the Talk

      Contributing to open source should be fun and rewarding! Whether you are a beginner or seasoned open source enthusiast, you’ll come away from this talk refreshed and ready to contribute to or maintain an open source project.

      What You’ll Learn

      • How to have happy, productive, and meaningful interactions with the open source community
      • How to craft a great issue and PR (pull request)

      This Talk is Designed For

      • Open source contributors and maintainers of all levels.

      About the Presenter

      Nick Taylor is a Senior Software Developer at Forem/DEV working on all things Forem. When he’s not programming, he enjoys working out, snowboarding, and a long long time ago, rugby. He is not a big fan of spiders.

      To join the live Tech Talk, register here.



      Source link

      How To View The Source Code of an HTML Document



      Part of the Series:
      How To Build a Website With HTML

      This tutorial series will guide you through creating and further customizing this website using HTML, the standard markup language used to display documents in a web browser. No prior coding experience is necessary but we recommend you start at the beginning of the series if you wish to recreate the demonstration website.

      At the end of this series, you should have a website ready to deploy to the cloud and a basic familiarity with HTML. Knowing how to write HTML will provide a strong foundation for learning additional front-end web development skills, such as CSS and JavaScript.

      HTML is used to mark up a document with instructions that tell a browser how to display and interpret the document’s content. For example, HTML can tell the browser which text content should be interpreted as a heading and which text content should be interpreted as paragraphs. HTML is also used to add images and assign links to text and images. These instructions are communicated through HTML tags, which are written like this: <tagname>. Many, though not all tags, use an opening tag and closing tag to wrap around the content that they are used to modify.

      To get a sense of how these tags are used, let’s inspect a snippet of HTML code. The HTML code below shows how HTML tags are used to structure text and add links and images. Don’t worry if you don’t understand the tags immediately- we’ll study those in the next tutorial.

      <h1>Sammy's Sample HTML</h1>
      
      <p>This code is an example of how HTML is written.</p>
      
      <p>It uses HTML tags to structure the text.</p>
      
      <p>It uses HTML to add a <a href="https://www.digitalocean.com/community/tutorials/digitalocean.com/community">link</a>.</p>
      
      <p>And it also uses HTML to add an image:</p>
      
      <img src="https://html.sammy-codes.com/images/small-profile.jpeg"/>
      

      This HTML code is rendered in the browser as follows:

      HTML Document

      Viewing the Source Code of a Webpage

      Nearly every webpage you come across uses HTML to structure and display HTML pages. You can inspect the source code of any webpage by using a web browser like Firefox or Chrome. On Firefox, navigate to the “Tools” menu item in the top menu and click on “Web Developer/Page Source” like so:

      Gif of how to inspect source code using Firefox

      On Firefox, you can also use the keyboard shortcut Command-U to view the source code of a webpage.

      On Chrome, the process is very similar. Navigate to the top menu item “View” and click on “Developer/View Source.” You can also use the keyboard shortcut Option-Command-U.

      Try inspecting the source code of the demo website that we will build in this tutorial series. You should receive a page with many more HTML tags than our example above. Don’t be alarmed if it seems overwhelming. By the end of this tutorial series, you should have a better understanding of how to interpret HTML source code and how to use HTML to build and customize your own websites.

      Note: As mentioned above, you can inspect the source code of any webpage using tools from the Firefox or Chrome web browser. Try inspecting the code of a few of your favorite websites to get a sense of the underlying code that structures web documents. Though the source code of these sites will likely contain more languages than HTML, learning HTML first will help prepare you to learn additional languages and frameworks for creating websites later on if you wish.

      You should now have a general understanding of the format of an HTML document and know how to inspect HTML source code using a browser tool. To better understand how HTML works, let’s inspect its key components. In the next tutorial, we will learn more about HTML elements, the building blocks that are used to create HTML documents.



      Source link