- Have oh-my-zsh installed in your machine
- Copy the
sgobotta.zsh-theme
file in acustom/themes
directory in the~/.oh-my-zsh
repository - Paste this line in the very beginning of your
~/.zshrc
file:ZSH_THEME=sgobotta
sgobotta.zsh-theme
file in a custom/themes
directory in the ~/.oh-my-zsh
repository~/.zshrc
file: ZSH_THEME=sgobotta
#!/usr/bin/env python | |
import requests | |
URL = 'https://www.dolarsi.com/api/api.php?type=valoresprincipales' | |
json = requests.get(URL).json() | |
print() | |
print(' 💵 | compra | venta') | |
print('----|--------|-------') |
defmodule AverageScore do | |
# @file_path "tiny-students.json" | |
# @file_path "students.json" | |
@file_path "big-students.json" | |
require Logger | |
def students, do: @students | |
def average_score(students) do |