Skip to content

Instantly share code, notes, and snippets.

View sethwhitaker's full-sized avatar

Seth Whitaker sethwhitaker

View GitHub Profile
@sethwhitaker
sethwhitaker / index.html
Created February 12, 2025 00:52
Input Datalist Issue Example
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<title>Hello World!</title>
</head>
<body>
<h1>Electron Input Datalist Issue</h1>
@sethwhitaker
sethwhitaker / iracing_forum_stylish_theme.css
Last active July 13, 2021 16:30
2021 iRacing Forum Stylish Theme
/* Variables */
:root {
--theme-spacing: 1rem 1.25rem;
--theme-font-size: 1rem;
--theme-border-radius: 7px;
--theme-box-shadow: rgb(0 0 0 / 22%) 0px 1px 3px 0px;
/* Colors */
--iracing-blue: #224289;
--iracing-red: #e2201c;
.DS_Store
#Node Modules Folder
node_modules/
# Ignore everything in the root except the "wp-content" directory.
/*
!.gitignore
!.gitattributes
!gulpfile.js
#
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
# <URL:http://httpd.apache.org/docs/2.2/vhosts/>
@sethwhitaker
sethwhitaker / httpd-vhosts.conf
Last active August 29, 2015 14:12
Custom vhosts (Mac OSX - webserver)
# This is a Dynamic vhosts config.
# With this config, you wont need to add new entries for each project.
# Just add entry to hosts file
# Just replace all 'username' text with your actual machine username
# Reset for defualt localhost
<VirtualHost *:80>
DocumentRoot "/Users/username/Sites"
ServerName localhost
</VirtualHost>
@sethwhitaker
sethwhitaker / Preferences.sublime-settings
Last active January 7, 2019 18:12
Sublime User Config
{
"binary_file_patterns":
[
"*.jpg",
"*.jpeg",
"*.png",
"*.gif",
"*.ttf",
"*.tga",
"*.dds",