Git is a distributed version control system that allows developers to:
- Track changes in code.
 - Collaborate on projects.
 - Manage multiple versions of a project.
 - Work offline with a full local repository.
 
| State | Senate | House | Total | Senate Democrats | Senate GOP | Senate Independent | House Democrats | House GOP | House Independent | Democrats | GOP | Result | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Alabama | 2 | 7 | 9 | 2 | 1 | 6 | 1 | 8 | Republicans | ||||
| Alaska | 2 | 1 | 3 | 2 | 1 | 1 | 2 | Republicans | |||||
| Arizona | 2 | 9 | 11 | 1 | 1 | 3 | 6 | 4 | 6 | Republicans | |||
| Arkansas | 2 | 4 | 6 | 2 | 4 | 0 | 6 | Republicans | |||||
| California | 2 | 52 | 54 | 2 | 40 | 12 | 42 | 12 | Democrats | ||||
| Colorado | 2 | 8 | 10 | 2 | 5 | 3 | 7 | 3 | Democrats | ||||
| Connecticut | 2 | 5 | 7 | 2 | 5 | 7 | 0 | Democrats | |||||
| Delaware | 2 | 1 | 3 | 2 | 1 | 3 | 0 | Democrats | |||||
| Florida | 2 | 28 | 30 | 2 | 8 | 20 | 8 | 22 | Republicans | 
First off, do not look directly into the sun. Put sunglasses on if you don't have the proper eyewear. Supplies
How to make an eclipse viewer yourself:
| import 'package:flutter/material.dart'; | |
| void main() { | |
| runApp(MyApp()); | |
| } | |
| class MyApp extends StatelessWidget { | |
| //const MyApp({super.key}); | |
| @override | 
| { | |
| "meta": { | |
| "theme": "stackoverflow" | |
| }, | |
| "basics": { | |
| "name": "Chris Thomas", | |
| "label": "Software Engineer", | |
| "image": "https://media.licdn.com/dms/image/C4D03AQEhAGToYXguBA/profile-displayphoto-shrink_800_800/0/1642436379248?e=2147483647&v=beta&t=8du8y5b47NJUkTzxeGRIg8S9cv86ve90MZUPvmSPnuA", | |
| "summary": "An innovative and passionate software engineer and an excellent team player living in New York (am always willing to relocate/remote) with 10+ years of knowledge and experience within the healthcare and financial industries analyzing large quantitative data sets, and developing web and mobile applications using modern web technologies to deliver the best user experiences across any platform.", | |
| "website": "https://tiny.cc/cthomas", | 
| from requests_html import HTMLSession | |
| s = HTMLSession() | |
| query = 'hauppauge, ny' | |
| url = f'https://www.google.com/search?q=weather+{query}' | |
| r= s.get(url, headers={'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36'}) | |
| temp = r.html.find('span#wob_tm', first=True).text | |
| unit = r.html.find('div.vk_bk.wob-unit span.wob_t', first=True).text | |
| desc = r.html.find('div.VQF4g', first=True).find('span#wob_dc', first=True).text | |
| print(query, temp, unit, desc) | 
ruby -v
rbenv install 3.0.1
eval "$(rbenv init -)"
rbenv global 3.0.1
cd into directory
| <video id="vid" autoplay></video> | |
| <script> | |
| navigator.mediaDevices.getUserMedia({ | |
| video: { | |
| width: { | |
| min: 640, | |
| ideal: 1280, | |
| max: 1280 | |
| }, | |
| height: { | 
| ## VARIABLES | |
| # chris <- tuna <- 20 | |
| # chris | |
| # tuna | |
| # assign("ham", 71) | |
| # ham | |
| # rm(ham) | |
| # ham | |
| ## DATA TYPES |