All Projects โ†’ ukita โ†’ emojix

ukita / emojix

Licence: MIT license
Simple emoji library for Elixir ๐Ÿ’ฉ

Programming Languages

elixir
2628 projects

Projects that are alternatives of or similar to emojix

vim-emoji-icon-theme
Emoji/Unicode Icons Theme for Vim and Neovim with support for 40+ plugins and 380+ filetypes ๐ŸŽจ๐Ÿ–ค๐Ÿ’™๐Ÿ’›
Stars: โœญ 77 (+266.67%)
Mutual labels:  emoji
EmojiRunner
Search for emojis in Krunner and copy/paste them
Stars: โœญ 33 (+57.14%)
Mutual labels:  emoji
emoji-prediction
๐Ÿค“๐Ÿ”ฎ๐Ÿ”ฌ Emoji prediction from a text using machine learning
Stars: โœญ 41 (+95.24%)
Mutual labels:  emoji
permission ex
No description or website provided.
Stars: โœญ 23 (+9.52%)
Mutual labels:  elixir-library
minerva
Elixir framework for easily writing koans.
Stars: โœญ 13 (-38.1%)
Mutual labels:  elixir-library
purescript-emo8
๐Ÿ  A functional 2D game engine that can create emoji games.
Stars: โœญ 47 (+123.81%)
Mutual labels:  emoji
reactions
โค A Flarum extension that adds reactions to your Flarum Community!
Stars: โœญ 17 (-19.05%)
Mutual labels:  emoji
slack-emoji-import
Simple bulk emoji importer for slack
Stars: โœญ 35 (+66.67%)
Mutual labels:  emoji
slack-emoji-kr
ํ•œ๊ธ€์„ ํ™œ์šฉํ•œ ์Šฌ๋ž™ ์ปค์Šคํ…€ ์ด๋ชจ์ง€
Stars: โœญ 33 (+57.14%)
Mutual labels:  emoji
rafiki-zsh
๐Ÿ‘€๐Ÿ‘ป A zsh friend to watch over you.
Stars: โœญ 50 (+138.1%)
Mutual labels:  emoji
libsalty
Elixir bindings for libsodium (NIF)
Stars: โœญ 20 (-4.76%)
Mutual labels:  elixir-library
EmoticonsBoard
Function keyboard and emotions. Android่กจๆƒ…้”ฎ็›˜๏ผŒๅฏๅŠจๆ€ๆ›ดๆ–ฐ่กจๆƒ…ใ€‚
Stars: โœญ 31 (+47.62%)
Mutual labels:  emoji
director
Director is a production-ready supervisor and manager for Erlang/Elixir processes that focuses on speed, performance and flexibility.
Stars: โœญ 62 (+195.24%)
Mutual labels:  elixir-library
yet-another-emoji-support
This is the IntelliJ plugin that supports inserting emoji in editor using content assist.
Stars: โœญ 30 (+42.86%)
Mutual labels:  emoji
Emoji-Log-VSCode
Emoji-Log VSCode Extension โ€” An Emoji Git commit log messages spec standard. [ ๐Ÿ“ฆ๐Ÿ‘Œ๐Ÿ›๐Ÿ“–๐Ÿš€๐Ÿค– โ€ผ๏ธ]
Stars: โœญ 44 (+109.52%)
Mutual labels:  emoji
emojifs
emojifs is a FUSE filesystem that allows you to manipulate custom emojis on your various Slacks and Discords
Stars: โœญ 30 (+42.86%)
Mutual labels:  emoji
spacymoji
๐Ÿ’™ Emoji handling and meta data for spaCy with custom extension attributes
Stars: โœญ 174 (+728.57%)
Mutual labels:  emoji
apple-emoji-linux
Apple Color Emoji for Linux
Stars: โœญ 392 (+1766.67%)
Mutual labels:  emoji
ember-emojione
EmojiOne helper and components for your Ember App
Stars: โœญ 16 (-23.81%)
Mutual labels:  emoji
ex loader
Load a single beam file, apps (a set of beams), or an erlang release (a set of apps) to a node.
Stars: โœญ 12 (-42.86%)
Mutual labels:  elixir-library

Emojix ๐Ÿ’ฉ

Build Status

Simple Elixir library to help you handle emojis.

Installation

Add it to your deps list in your mix.exs

def deps do
  [
    {:emojix, "~> 0.3.1"}
  ]
end

Usage examples

iex> Emojix.all()
[
  %Emojix.Emoji{
    description: "flag: Andorra",
    hexcode: "1F1E6-1F1E9",
    id: 3577,
    shortcodes: ["flag_ad"],
    tags: ["AD", "flag"],
    unicode: "๐Ÿ‡ฆ๐Ÿ‡ฉ",
    variations: []
  },
  %Emojix.Emoji{
    description: "downcast face with sweat",
    hexcode: "1F613",
    id: 85,
    shortcodes: ["shamed"],
    tags: ["cold", "face", "sweat"],
    unicode: "๐Ÿ˜“",
    variations: []
  },
...
]
iex> Emojix.find_by_shortcode("gleeful")
%Emojix.Emoji{
  description: "grinning face",
  hexcode: "1F600",
  id: 1,
  shortcodes: ["gleeful"],
  tags: ["face", "grin"],
  unicode: "๐Ÿ˜€",
  variations: []
}
iex> Emojix.scan("Elixir is awesome!! โœŒ๐Ÿป๐Ÿ‘๐Ÿฝ")
[
  %Emojix.Emoji{
    description: "victory hand: light skin tone",
    hexcode: "270C-1F3FB",
    id: 206,
    shortcodes: ["victory_tone1"],
    tags: [],
    unicode: "โœŒ๐Ÿป",
    variations: []
  },
  %Emojix.Emoji{
    description: "thumbs up: medium skin tone",
    hexcode: "1F44D-1F3FD",
    id: 275,
    shortcodes: ["thumbsup_tone3", "+1_tone3", "yes_tone3"],
    tags: [],
    unicode: "๐Ÿ‘๐Ÿฝ",
    variations: []
  }
]

Documentation

Full API documentation is available here: https://hexdocs.pm/emojix/

Credits

Thanks for @milesj for provinding the emoji datasets.

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].