Skip to content

Instantly share code, notes, and snippets.

View Reno-BM's full-sized avatar

Jose Renato Burgos Mondragon Reno-BM

View GitHub Profile
@Reno-BM
Reno-BM / README.md
Created December 13, 2025 02:33
EasyBroker API Challenge (Ruby)

EasyBroker API Challenge (Ruby)

Fetches all properties from the staging environment and prints their titles.

Run

ruby bin\print_titles.rb

Test

ruby -Ilib:test test\test_properties.rb

@Reno-BM
Reno-BM / bitcoin.py
Created December 13, 2025 00:44
Script en Python que valida argumentos de línea de comandos, consume una API externa y procesa la respuesta para calcular el valor actual de Bitcoin en USD.
import requests
import json
import sys
"""
Calculates the value of a given amount of Bitcoin in USD
using live data from the CoinCap API.
"""
def main():