Skip to content

Instantly share code, notes, and snippets.

View 0mj's full-sized avatar
๐Ÿ™

Matt Jamison 0mj

๐Ÿ™
  • Ohio
  • 02:26 (UTC -04:00)
View GitHub Profile
@0mj
0mj / README.md
Created June 25, 2025 21:54 — forked from roachhd/README.md
EMOJI cheatsheet ๐Ÿ˜›๐Ÿ˜ณ๐Ÿ˜—๐Ÿ˜“๐Ÿ™‰๐Ÿ˜ธ๐Ÿ™ˆ๐Ÿ™Š๐Ÿ˜ฝ๐Ÿ’€๐Ÿ’ข๐Ÿ’ฅโœจ๐Ÿ’๐Ÿ‘ซ๐Ÿ‘„๐Ÿ‘ƒ๐Ÿ‘€๐Ÿ‘›๐Ÿ‘›๐Ÿ—ผ๐Ÿ”ฎ๐Ÿ”ฎ๐ŸŽ„๐ŸŽ…๐Ÿ‘ป

EMOJI CHEAT SHEET

Emoji emoticons listed on this page are supported on Campfire, GitHub, Basecamp, Redbooth, Trac, Flowdock, Sprint.ly, Kandan, Textbox.io, Kippt, Redmine, JabbR, Trello, Hall, plug.dj, Qiita, Zendesk, Ruby China, Grove, Idobata, NodeBB Forums, Slack, Streamup, OrganisedMinds, Hackpad, Cryptbin, Kato, Reportedly, Cheerful Ghost, IRCCloud, Dashcube, MyVideoGameList, Subrosa, Sococo, Quip, And Bang, Bonusly, Discourse, Ello, and Twemoji Awesome. However some of the emoji codes are not super easy to remember, so here is a little cheat sheet. โœˆ Got flash enabled? Click the emoji code and it will be copied to your clipboard.

People

:bowtie: ๐Ÿ˜„

# NOTE: Make sure you have an existing repository before attempting to set an upstream ;)
# fatal: No configured push destination
# # Remote #local:#remote branch
git push --set-upstream https://github.com/username/repo.git master:master
# use `--force` flag on conflict
@0mj
0mj / 01_Ruby Bowling Kata.md
Last active March 1, 2022 20:54 — forked from theotherzach/00_project_setup.md
This is a Ruby adaptation of Uncle Bob's Bowling Kata

Ruby Bowling Kata Description : Part 1 of 2

This is a Ruby adaptation of Uncle Bob's Bowling Kata in Java, which can be found here. The following test cases will be covered:

  • A game with 20 rolls of 0 must have a score of 0.
  • A game with 10 rolls of 0 & 10 rolls of 1 must have a score of 10.
  • A game with the rolls 5, 5, 3, and 17 rolls of 0 must have a score of 16 (The two 5's are a spare.)
  • A game with the rolls 10, 3, 4, and 16 rolls of 0 must have a score of 24 (The 10 is a strike.)
  • A game with 12 rolls of 10 must have a score of 300