Skip to content

Instantly share code, notes, and snippets.

View Otromascomotu's full-sized avatar

Luis Laverde Otromascomotu

View GitHub Profile
@Otromascomotu
Otromascomotu / ChampionsLeagueTeams.js
Created March 29, 2023 14:23 — forked from phatnguyenuit/ChampionsLeagueTeams.js
HackerRank: JavaScript (Basic) on 15th Sep 2020
const https = require('https');
const fetch = (url) => {
return new Promise((resolve, reject) => {
https
.get(url, (resp) => {
let data = '';
// A chunk of data has been recieved.
resp.on('data', (chunk) => {
@Otromascomotu
Otromascomotu / chatgpt_api.py
Created March 9, 2023 00:13 — forked from mouredev/chatgpt_api.py
Ejemplo de uso del API de ChatGPT desde Python
import openai # pip install openai
import typer # pip install "typer[all]"
from rich import print # pip install rich
from rich.table import Table
"""
Webs de interés:
- Módulo OpenAI: https://github.com/openai/openai-python
- Documentación API ChatGPT: https://platform.openai.com/docs/api-reference/chat
- Typer: https://typer.tiangolo.com
@Otromascomotu
Otromascomotu / keybase.md
Created May 17, 2021 03:30
identifying my keybase profile...

Keybase proof

I hereby claim:

  • I am otromascomotu on github.
  • I am luislaverde (https://keybase.io/luislaverde) on keybase.
  • I have a public key ASCoA3EiSKjD7V0jWL45HIx44c5VlUCuYH4vOUxBAboqEwo

To claim this, I am signing this object:

@Otromascomotu
Otromascomotu / README-Template.md
Created April 7, 2021 22:20 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites