Skip to content

Instantly share code, notes, and snippets.

View msavin's full-sized avatar
🏠
Working from home

Max Savin msavin

🏠
Working from home
View GitHub Profile
http://email.americanexpress.com/a/hBi50-AAQB6FsB96CXCNzVjwN.AQB6FsPs/amex20?SHORT_URL=americanexpress.com/en-us/referral/MAKSISWBpc?XL=MIAEM-378162&CMPGN_VER_CELL_ID=&ECP_CELL_ID=
@msavin
msavin / JS
Created September 20, 2017 15:56
Tada
https://docs.google.com/presentation/d/1U5RgQEQ4OJ8Ga9yckNXz-XzQEiMDTHHE57egAKcRPn4/edit#slide=id.g1e46ea7e5c_1_20
https://docs.google.com/presentation/d/1U5RgQEQ4OJ8Ga9yckNXz-XzQEiMDTHHE57egAKcRPn4/edit?usp=sharing
// Turn:
URL = "http://domain.com/#order/food=chicken/drink=coke"
// To:
{
section: "order",
parameters: {
food: "chicken",
@msavin
msavin / github-blogging.md
Last active August 29, 2015 14:21
Using GitHub Gist for Blogging

Using GitHub Gist for Blogging

It just occurred to me that GitHub Gist can be great for blogging. They keep a revision history, which encourages you to make make updates to a post while making those changes transparent to your readers. They also support Markdown, making it easy to read and write them. And finally, there is commenting system is exclusive to GitHub users, which I hope can be a good filter for constructive comments.

What do you think - does a blogging solution built on top of GitHub Gist sound interesting to you?

@msavin
msavin / forms.css
Created April 5, 2015 20:08
Super Form Resets
input, label, select, button, textarea {
margin: 0;
border: 0;
padding: 0;
white-space:normal;
background: transparent;
line-height: inherit;
font-size: inherit;
font-family: inherit;
color: inherit;
@msavin
msavin / gist:a66873584b8761ce35e1
Last active August 29, 2015 14:11
Input box with tailing text (ie. [input].slack.com)
<!--
Live Demo: http://jsfiddle.net/drhz4vrr/
-->
<html>
<!-- Start CSS -->
<style>
#fauxInput {
display: inline-block;