Skip to content

Instantly share code, notes, and snippets.

View batok's full-sized avatar

Domingo Aguilera batok

  • Consultant
  • Guadalajara, Mexico
  • X @batok
View GitHub Profile
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
@batok
batok / color.ex
Created July 12, 2016 17:04
Colorear consola
defmodule Color do
@moduledoc false
def color_reset , do: "\x1b[0m"
def color_red, do: "\x1b[31m"
def color_green, do: "\x1b[32m"
def color_yellow, do: "\x1b[33m"
@doc """
function to add color to string to be used in console apps.