Skip to content

Instantly share code, notes, and snippets.

View loociano's full-sized avatar
🤠
3d printing

Luc Rubio loociano

🤠
3d printing
View GitHub Profile
@loociano
loociano / Luc's Workflow.md
Last active May 17, 2020 21:45
Running Cura from Source on Windows

Luc's Workflow to build Cura on Windows

Part One

  1. Clone cura-build-environment

    git clone https://github.com/Ultimaker/cura-build-environment
    
  2. Run Developer Command Prompt for VS2015 as administrator and execute:

@loociano
loociano / htmlpaginatedtable2csv.sh
Last active April 23, 2018 15:44
Convert an HTML paginated table to CSV
#!/bin/bash
# This script downloads HTML tables and converts them to CSV.
# Luc Rubio <luc@loociano.com>
# Config
CSV=results.csv
URL='https://www.sportsplits.com/m3/event?c=74&r=370&e=1&pg='
NUM_PAGES=81
HEADINGS='Position,Name,Club,Net Time,Category (POS),Gender (POS)'
# End config. Do not edit below