Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mathowie
mathowie / acme slack invite.txt
Created September 5, 2019 17:48
testing out slack code
*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:
@mathowie
mathowie / twitter-stylish.css
Last active November 11, 2015 07:24
Swap Twitter Hearts for Emoji
/* 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;
}
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
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) {