This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*Access Requests* | |
For any access requests, including Tinyspeck guest accounts, please provide the following details. | |
:red_circle: :blue_circle: :white_circle: Access Request | |
Acme POC: | |
Name of Vendor: | |
Names & email addresses of vendor employees who need access: | |
Type of access requested: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Install the Stylish extension for your browser, then add this code | |
as a new Style. Make sure it applies to the domain 'twitter.com' */ | |
/* Tweet any improvements or comments to @mcnees. */ | |
/* Hide the heart for un-Faved tweets. */ | |
.ProfileTweet-actionButton .HeartAnimationContainer { | |
visibility: hidden; | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Big Lebowskemoji | |
interpreted by Matt Haughey @mathowie | |
best viewed on Safari or iOS mobile | |
also on Medium: https://medium.com/@mathowie/the-annotated-big-lebowskemoji-bb6ed62cb705 | |
🌵➰❄️➰🌃 | |
We open on the desert, with a tumbleweed bouncing into the city. | |
🏪🍼😎📝📺 | |
In the supermarket dairy section, we find The Dude. He writes a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "keys": ["super+alt+7"], "command": "encode_html_entities" }, | |
{ "keys": ["shift+ctrl+u"], "command": "title_case" }, | |
{ "keys": ["super+enter"], "command": "insert", "args": {"characters": "<br>\n"} }, | |
{ "keys": ["super+alt+p"], "command": "insert_snippet", "args": {"contents": "<p>${0:$SELECTION}</p>" } }, | |
{ "keys": ["super+alt+a"], "command": "insert_snippet", "args": {"contents": "<a href=\"\">${0:$SELECTION}</a>" } }, | |
{ "keys": ["super+alt+b"], "command": "insert_snippet", "args": {"contents": "<strong>${0:$SELECTION}</strong>" } }, | |
{ "keys": ["super+alt+i"], "command": "insert_snippet", "args": {"contents": "<em>${0:$SELECTION}</em>" } }, | |
{ "keys": ["super+alt+n"], "command": "insert_snippet", "args": {"contents": "<span>${0:$SELECTION}</span>" } }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var userNum, computerNum, message; | |
userNum = Number(prompt("Pick a number between 1 and 10!")); | |
computerNum = (Math.floor(Math.random() * 10)) + 1; | |
//sanitize input then Check guess | |
if (userNum >= 11) { | |
message = "Too high of a number, please refresh and pick again!"; | |
} else if (isNaN(userNum)) { | |
message = "This is not a number, please refresh and pick again!"; | |
} else if (userNum === computerNum) { |