There's so much you can do with @claudeai .In this case claude code on my VPS. Today's project was to get all my trading records into one place. Not a novel idea yet I wanted to do so without having ...
- Read csv files into a SQLite database. - SQLite does NOT have a built-in COPY-from-CSV like DuckDB. We create tables using SQL, then load CSV data using Python. - Use Python to automate SQL scripts ...
Hello, let's build it! "I wonder how many books I've read without realizing it?" Have you ever thought that? You tried keeping a reading journal but couldn't keep it ...
**Data Cleaning & Quality Automation Tool** Preprocessing the data typically consumes most of the time of analysts. This led me to develop a fully automated data quality pipeline in Python that ...
flight-delay/ │ ├── src/ │ ├── pipeline/ │ │ ├── data_generator.py # Synthetic dataset generation (100K records) │ │ ├── data_cleaner.py # IQR clipping, imputation, deduplication │ │ ├── ...