Skip to content

Instantly share code, notes, and snippets.

View davidhartsough's full-sized avatar

David Hartsough davidhartsough

View GitHub Profile
@davidhartsough
davidhartsough / hello_python.py
Created October 15, 2024 03:19
Intro to Python basics
# My comment
# Remember: use cmd i to run this file as a script
"""Style guide
module_name
package_name
ClassName
method_name
ExceptionName
@davidhartsough
davidhartsough / index.html
Created July 19, 2024 04:37
Website / Webpage Basics: essential HTML <head> meta / metadata tags
<!DOCTYPE html>
<html lang="en" prefix="og: https://ogp.me/ns#">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>__TITLE__</title>
<meta name="description" content="__DESCRIPTION__" />
<link rel="canonical" href="https://example.com/" />
<!-- open graph -->
<meta property="og:type" content="website" />
@davidhartsough
davidhartsough / base.css
Last active July 19, 2024 04:26
Web App Basics: HTML and CSS
:root {
--font-family: ui-sans-serif, system-ui, -apple-system, "BlinkMacSystemFont",
"Segoe UI", "Roboto", "Helvetica Neue", "Arial", "Noto Sans", sans-serif;
--black: #101214;
--white: #f8f9fa;
--bg: var(--white);
--fg: var(--black);
}
@media (prefers-color-scheme: dark) {
:root {
@davidhartsough
davidhartsough / url-regex-validator.md
Last active June 21, 2024 23:31
URL validator RegEx: code for JS and the HTML URL input pattern attribute to validate if the entry is a valid URL

My favorite URL RegEx

I spent way too long trying to dial this in, so I had to document my results and share them.

Check out the end result on RegExr: https://regexr.com/7fjmt

This RegEx is intended to accept nearly every valid URL, with a few exceptions; it intentionally excludes:

  • IP addresses
  • networks ranges, database/server addresses, ports
@davidhartsough
davidhartsough / react.html
Last active January 28, 2020 00:28
React Crash Course: Day 1
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, minimum-scale=1, initial-scale=1, shrink-to-fit=no"
/>
<title>It's React Time!</title>
@davidhartsough
davidhartsough / flexbox.html
Created December 10, 2019 20:59
FLORBEX CHARLENG!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>FLORXBEX</title>
<style>
html {
box-sizing: border-box;