Skip to content

Instantly share code, notes, and snippets.

View zackseuberling's full-sized avatar
💭
why

Zack Seuberling zackseuberling

💭
why
View GitHub Profile
const path = require("path");
const CleanWebpackPlugin = require("clean-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const { version } = require("./package.json");
module.exports = {
entry: {
core: "./core.css",
"core-high-contrast": "./core-high-contrast.css"
},
@zackseuberling
zackseuberling / gist:2109d7979d43d5ef1cc920b70e931dc0
Last active January 26, 2024 16:03
Manually set the WiFi channel for OSX

https://apple.stackexchange.com/questions/131852/how-do-you-force-a-5-ghz-wifi-connection?newreg=2e719fdc19f1412eb8a7b0671c3c4da0

This is a partial-temporary solution. Basically, if the frequencies are on different channel numbers then it is possible to "set" the particular wifi band (worked on OSX Mavericks). steps: 1. Find the channel numbers of 5 GHz and 2.4 Ghz. Are they different? if yes proceed to step 2. 2. Set 5 GHz channel number using airport command.

Detailed instructions:

  1. Open Wireless Diagnostics.app (it is located in /System/Library/CoreServices/Applications).

  2. In the application menu select Window->Utilities (or press cmd+2).Utilities window should appear.

@zackseuberling
zackseuberling / stepout.html
Created May 16, 2018 22:10
Alaska Airlines step-out icon
<span title="This indicates a link to an external site that may not follow the same accessibility policies."><svg class="step-out-footer-link" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 9"><g><path style="fill:#2774ae" d="m397 512l-360 0c-21 0-37-17-37-37l0-361c0-20 16-37 37-37l119 0c20 0 36 17 36 37 0 20-16 37-36 37l-82 0 0 287 287 0 0-82c0-20 16-36 36-36 21 0 37 16 37 36l0 119c0 20-16 37-37 37z m78-259c-20 0-37-16-37-36l0-143-142 0c-20 0-36-17-36-37 0-20 16-37 36-37l179 0c20 0 37 17 37 37l0 180c0 20-16 36-37 36z m-178 5c-9 0-18-4-25-11-15-14-15-37-1-51l177-184c14-14 37-15 52-1 15 15 15 38 1 52l-177 184c-8 7-17 11-27 11z"></path></g></svg></span>

Keybase proof

I hereby claim:

  • I am zackseuberling on github.
  • I am zackseuberling (https://keybase.io/zackseuberling) on keybase.
  • I have a public key whose fingerprint is 5FDD A99D A16F F935 667B B31C 641B 4E18 FBBD C319

To claim this, I am signing this object:

@zackseuberling
zackseuberling / googleforms2slack.gs
Last active March 22, 2017 01:12 — forked from andychase/googleforms2slack.gs
Google Forms Slack Notification
// Google Forms Slack Notification
// Andy Chase <github.com/andychase>
// License: CC0 1.0 Universal <creativecommons.org/publicdomain/zero/1.0>
// Install 1: This code goes in ( tools > script editor... ) of your google docs form
// Install 2: ( resources > current project triggers ) ( [onSubmit], [from Form], [On form submit] )
// Setup 1: Put your slack api url below
var POST_URL = "https://hooks.slack.com/services/";
function onSubmit(e) {
development:
adapter: mysql2
encoding: utf8
database:
pool: 5
username:
password:
host: localhost
test:
@zackseuberling
zackseuberling / global.js
Last active December 16, 2015 05:38
Introduction to Javascript
// variables
var int = 10;
var str = "ten";
var boo = false;
var arr = ["one", 2, true];
debugger;
// looping
@zackseuberling
zackseuberling / global.css
Last active December 14, 2015 04:28
Lab 5, cascading for a reason
#container {
background-color: black;
color: white;
margin: 0 auto;
width: 700px;
}
.square {
background-color: red;
@zackseuberling
zackseuberling / global.css
Last active December 14, 2015 04:28
Lab 6, positioning elements using the positon attribute
#container {
position: relative;
}
#relative-box {
position: absolute;
top: 100px;
left: 100px;
}
@zackseuberling
zackseuberling / index.html
Created February 11, 2013 02:37
Lab 3, columns and positioning
<!doctype html>
<html>
<head>
<title>Core Interaction</title>
<link rel="stylesheet" href="assets/css/global.css">
</head>
<body>