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:
| #container { | |
| background-color: black; | |
| color: white; | |
| margin: 0 auto; | |
| width: 700px; | |
| } | |
| .square { | |
| background-color: red; |
| // variables | |
| var int = 10; | |
| var str = "ten"; | |
| var boo = false; | |
| var arr = ["one", 2, true]; | |
| debugger; | |
| // looping |
| development: | |
| adapter: mysql2 | |
| encoding: utf8 | |
| database: | |
| pool: 5 | |
| username: | |
| password: | |
| host: localhost | |
| test: |
| // 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) { |
I hereby claim:
To claim this, I am signing this object:
| <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> |
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:
Open Wireless Diagnostics.app (it is located in /System/Library/CoreServices/Applications).
In the application menu select Window->Utilities (or press cmd+2).Utilities window should appear.
| 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" | |
| }, |