Skip to content

Instantly share code, notes, and snippets.

View albertorsesc's full-sized avatar
👽
Productive

Alberto Rosas albertorsesc

👽
Productive
View GitHub Profile
@martinbowling
martinbowling / lightning-minds-cli.py
Created January 28, 2025 20:08
Groq powered Deepseek R1 llama 70b distilled model mixture of reasoners
#!/usr/bin/env python3
# /// script
# requires-python = ">=3.11"
# dependencies = [
# "rich>=13.7.1",
# "groq>=0.5.0",
# "python-dotenv>=1.0.0",
# "questionary>=2.0.1",
# ]
# ///
@albertorsesc
albertorsesc / paises.csv
Created July 12, 2018 20:49 — forked from brenes/README.md
CSV de paises, con nombre en castellano, ingles, codigo ISO y prefijo telefónico del país
nombre name nom iso2 iso3 phone_code
Afganistán Afghanistan Afghanistan AF AFG 93
Albania Albania Albanie AL ALB 355
Alemania Germany Allemagne DE DEU 49
Algeria Algeria Algérie DZ DZA 213
Andorra Andorra Andorra AD AND 376
Angola Angola Angola AO AGO 244
Anguila Anguilla Anguilla AI AIA 1 264
Antártida Antarctica L'Antarctique AQ ATA 672
Antigua y Barbuda Antigua and Barbuda Antigua et Barbuda AG ATG 1 268
@jeffochoa
jeffochoa / Response.php
Last active October 6, 2025 22:11
Laravel HTTP status code
<?php
// This can be found in the Symfony\Component\HttpFoundation\Response class
const HTTP_CONTINUE = 100;
const HTTP_SWITCHING_PROTOCOLS = 101;
const HTTP_PROCESSING = 102; // RFC2518
const HTTP_OK = 200;
const HTTP_CREATED = 201;
const HTTP_ACCEPTED = 202;