Descent098 / web-comissioner-training

Content for the Schulich Ignite web commissioner training

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Web commissioner Training

The purpose of this repo is to collect together the resources for web comissioner training.

Table of contents

Assumptions/Prerequisites:

  • You know git & about github (see here if you dont: Intro to Git (Schulich Ignite X NASA Space Apps) )

  • You know some sort of programming language

  • If you already know web development you can skip lecture 1, if you know web developnment with static site generators you can skip 1 and 2

  • Setup on first download

    • On initial clone run git submodule update --init --recursive

    • Update submodules using git submodule update --recursive --remote

Playlist

There is a playlist with all the recordings of each session available here: https://www.youtube.com/playlist?list=PLY1W45yrIxjRA9H-FOZ-fX3VNpOuzvGW1

Schedule

Topic Slides Date Recording
Fundamentals of version control and git Intro to Git (Schulich Ignite X NASA Space Apps) N/A N/A
Basics of HTML/CSS/JS and basic web development workflows Basic Web Technologies June 24th (Fri): 10-11:30 Video
Basics of static site generators & usage of Hugo Static site generators June 25th (Sat): 10-11:30 Video
Basics of CI/CD, git deployments, and a tour around our system CI/CD Basics July 1st (Fri) 10-11:30 Video
Basic networking and infrastructure (how people access our site) Basic Networking and infastructure July 2nd (sat) 10-11:30 Video

Day 1 Basics of HTML, CSS, JS

<!doctype html>
<html lang="en">
  <head>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">

    <title>Hello, world!</title>
  </head>
  <body>
    <h1>Hello, world!</h1>

    <!-- Optional JavaScript -->
    <!-- jQuery first, then Popper.js, then Bootstrap JS -->
    <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
    <script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
  </body>
</html>
  • Work with modifying a saved copy of the ignite site
    • Use javascript to get a certain element node and modify it in-line with a button
    • <span class="long-dates">February 14, 2022 — April 11, 2022</span> <-- modify this element to have todays date

Day 2 Basics of static site generators

Day 3 Basics of CI/CD, git deployments, and a tour around our system

Day 4 Networking & infastructure fundamentals

  • Slides

  • Everything you need to know about networking to keep the site up and running along with a bit of extra theory to understand what each piece is doing

  • Socket (TCP/UDP) --> HTTP request --> DNR --> DNS provider --> Host at port --> HTTP Response

About

Content for the Schulich Ignite web commissioner training

License:MIT License


Languages

Language:Python 51.6%Language:Jinja 48.4%