Skip to content

Instantly share code, notes, and snippets.

@RebeccaWhit3
RebeccaWhit3 / emojis.json
Created April 15, 2017 05:30
Github emojis in json and list formats
{
"+1": "https://assets-cdn.github.com/images/icons/emoji/unicode/1f44d.png",
"-1": "https://assets-cdn.github.com/images/icons/emoji/unicode/1f44e.png",
"100": "https://assets-cdn.github.com/images/icons/emoji/unicode/1f4af.png",
"1234": "https://assets-cdn.github.com/images/icons/emoji/unicode/1f522.png",
"8ball": "https://assets-cdn.github.com/images/icons/emoji/unicode/1f3b1.png",
"a": "https://assets-cdn.github.com/images/icons/emoji/unicode/1f170.png",
"ab": "https://assets-cdn.github.com/images/icons/emoji/unicode/1f18e.png",
"abc": "https://assets-cdn.github.com/images/icons/emoji/unicode/1f524.png",
"abcd": "https://assets-cdn.github.com/images/icons/emoji/unicode/1f521.png",
@RebeccaWhit3
RebeccaWhit3 / gist:27d89c8c30b74bc6b460b922fffbb184
Created March 12, 2017 14:07 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@RebeccaWhit3
RebeccaWhit3 / AbletonZoomWithScroll.ahk
Last active March 7, 2017 11:54 — forked from SonicZentropy/CustomAHK.ahk
Autohotkey Script for Ableton Live 9 Suite (basic example) • Scroll to zoom for Clip View & Arrangement. Forked from: https://gist.github.com/SonicZentropy/7930644a506776eae668
; Ableton Live 9 Suite
; Scroll to zoom for Clip View & Arrangment
; https://gist.github.com/SonicZentropy/7930644a506776eae668
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#KeyHistory 100
; #Warn ; Enable warnings to assist with detecting common errors.
SetTitleMatchMode, fast
SetTitleMatchMode, 2
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
@RebeccaWhit3
RebeccaWhit3 / chrome-javsacript.js
Last active January 17, 2017 03:53 — forked from jlong/uri.js
URI Parsing with Javascript
new URL('https://gist.github.com/jlong/2428561?foo=bar#test');
// =>
//
// {
// hash: "#test",
// search: "?foo=bar",
// pathname: "/jlong/2428561",
// port: "",
// hostname: "gist.github.com",