Skip to content

Instantly share code, notes, and snippets.

View Tyler-H's full-sized avatar

Tyler Tyler-H

View GitHub Profile

"Documentation" tag clean up

As of 1407 EST 7 Mar 2018
1,877 open questions, from original 6.9K

Tag-specific Close Vote Queue: Here (<=5 in queue)

Completed final cleanup pass. Now just delete, delete, delete...

Questions with 1+ Delete votes (342)

@caseywatts
caseywatts / 0 push to talk.md
Last active September 21, 2023 13:55
Push To Talk - Google Meet Bookmarklet

Short link to this page: http://caseywatts.com/ptt

Other gists & tricks: http://caseywatts.com/gists-and-tricks

Unrelated update: my book is out! Debugging Your Brain is an applied psychology / self-help book

Push To Talk in a Google Hangout (Meet)

  1. Save this bookmarklet. Right-click on boomarks toolbar Add Page...
  • Name: PTT (push to talk) or whatever you'd like (maybe short so it stays on your bookmarks toolbar)

Room Rules


1. Speak English!

2. Don't be a dick!

@pburtchaell
pburtchaell / styles.css
Last active February 25, 2024 12:24
VH and VW units can cause issues on iOS devices. To overcome this, create media queries that target the width, height, and orientation of iOS devices.
/**
* VH and VW units can cause issues on iOS devices: http://caniuse.com/#feat=viewport-units
*
* To overcome this, create media queries that target the width, height, and orientation of iOS devices.
* It isn't optimal, but there is really no other way to solve the problem. In this example, I am fixing
* the height of element `.foo` —which is a full width and height cover image.
*
* iOS Resolution Quick Reference: http://www.iosres.com/
*/
@cvrebert
cvrebert / survey.md
Last active July 5, 2022 16:20
Click and focus behavior across browsers & OSes

Test apparatus: http://jsfiddle.net/hRub4/

(Windows = Windows 8.1 desktop)

  • Windows Chrome 39
    • Button focuses on click and via keyboard tabbing
    • Anchor focuses on click and via keyboard tabbing
  • Windows Firefox 30.0
    • Button focuses on click and via keyboard tabbing
    • Anchor focuses on click and via keyboard tabbing
  • Windows Internet Explorer 11
@rlemon
rlemon / spoken.user.js
Last active August 29, 2015 14:02
spoken chat
// ==UserScript==
// @name Spoken Chat
// @author Robert Lemon
// @version 0.42
// @namespace
// @description Speaks the chat.
// @include http://chat.stackoverflow.com/rooms/*
// ==/UserScript==
function exec(fn) {
var script = document.createElement('script');