emojiclock alternatives and similar packages
Based on the "Date and Time" category.
Alternatively, view emojiclock alternatives based on common mentions on social networks and blogs.
-
Ex_Cldr_Dates_Times
Date & times formatting functions for the Common Locale Data Repository (CLDR) package https://github.com/elixir-cldr/cldr -
jalaali
Jalaali (also known as Jalali, Persian, Khorshidi, Shamsi) calendar implementation in Elixir.
InfluxDB - Purpose built for real-time analytics at any scale.
Do you think we are missing an alternative of emojiclock or a related project?
Popular Comparisons
README
EmojiClock
An Elixir module for giving you an emoji clock for a given hour. See the API reference for the many available input formats.
iex> EmojiClock.time!(~T[02:17:47.179])
"๐"
Installing EmojiClock
The package can be installed by adding emojiclock
to your list of dependencies in mix.exs
:
def deps do
[{:emojiclock, "~> 2.0.2"}]
end
And then added as an extra application, also in mix.exs
:
def application do
[extra_applications: [:emojiclock]]
end
Using EmojiClock
The EmojiClock
module has several functions, all of which return an emoji clock bitstring
. Every function that accepts an argument has a !
variant, which should be used if you trust your input and want to get straight to the emoji.
iex> EmojiClock.unix(475359803)
{:ok, "๐"}
iex> EmojiClock.unix!(475359803)
"๐"