Skip to content

Instantly share code, notes, and snippets.

View adrrf's full-sized avatar
🤠
yee haw

adrián romero adrrf

🤠
yee haw
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
# -*- coding: utf-8 -*-
"""AINE 2025 - TXT.5 - Ejercicio final optativo (adrromflo).ipynb
Automatically generated by Colab.
Original file is located at
https://colab.research.google.com/drive/1xwlujRb_jvos3aT4epQSbS1equ2mLmA8
# **Análisis de Información No Estructurada**
@adrrf
adrrf / CalcStats.py
Last active February 18, 2025 15:06
CalcStats ASS
import logging
from dataclasses import dataclass
from enum import Enum
from pathlib import Path
from typing import Dict, List
import pandas as pd
# Configure logging
logging.basicConfig(
@adrrf
adrrf / Dockerfile.mongo
Created January 20, 2025 22:23
fixes deliverus advanced
FROM mongo:7.0.2
COPY ./init-mongo.sh /docker-entrypoint-initdb.d/init-mongo.sh
RUN chmod +x /docker-entrypoint-initdb.d/init-mongo.sh