It's nice, but it's not beautiful. Let's stop calling everything beautiful.
A command-line weather app built using Elixir
31–40 of 67 posts
Re: A command-line weather app built using Elixir
#32function weather(){curl -s "http://api.openweathermap.org/data/2.5/weather?q=$1&units=metric" | jq .main.temp | figlet -kcf big} $ weather london __ _ _ ___ _____ /_ || || | |__ \ | ____| | || || |_ ) || |__ | ||__ _| / / |___ \ | | | | _ / /_ ___) | |_| |_|(_)|____||____/
Re: A command-line weather app built using Elixir
#33Another ASCII art weather (forecast) utility, but in Go: https://github.com/schachmat/wego
Re: A command-line weather app built using Elixir
#34Interesting describing ASCII art as 'beautiful'. You can tell this isn't Designer News :P
Re: A command-line weather app built using Elixir
#35 ~/tmp/elixir-weather $ ./weather Amsterdam
=INFO REPORT==== 7-May-2015::16:37:56 ===
application: elixir
exited: {bad_return,
{{elixir,start,[normal,[]]},
{'EXIT',
{{badmatch,{error,enotsup}},
[{elixir,start,2,[{file,"src/elixir.erl"},{line,34}]},
{application_master,start_it_old,4,
[{file,"application_master.erl"},{line,272}]}]}}}}
type: temporary
Failed to start Elixir.
error: {error,
{elixir,
{bad_return,
{{elixir,start,[normal,[]]},
{'EXIT',
{{badmatch,{error,enotsup}},
[{elixir,start,2,[{file,"src/elixir.erl"},{line,34}]},
{application_master,start_it_old,4,
[{file,"application_master.erl"},
{line,272}]}]}}}}}}Re: A command-line weather app built using Elixir
#36Re: A command-line weather app built using Elixir
#37Re: A command-line weather app built using Elixir
#38Another ASCII art weather (forecast) utility, but in Go: https://github.com/schachmat/wego
Re: A command-line weather app built using Elixir
#39Re: A command-line weather app built using Elixir
#40I love Erlang and Elixir because BEAM gives me easy concurrency, metaprogramming and best of all, fault tolerance via supervisors. For a service that I need to stay alive, this is great. For a simple command line utility, I'd lean more toward a compiled language like Go, Haskell, Common Lisp, etc.