Skip to content

Instantly share code, notes, and snippets.

View thomaslillo's full-sized avatar
🌞

Thomas Lillo thomaslillo

🌞
View GitHub Profile
@thomaslillo
thomaslillo / alteryx_convert_to_wkt.py
Created November 16, 2023 15:41
Converting Alteryx SpatialObj to WKT within a Python Tool
# may need to install these
#Package.installPackages(['geojson','shapely'])
from ayx import Package
from ayx import Alteryx
import json
from shapely.geometry import shape
import pandas as pd
# Function to convert geojson to .wkt
def parse_geom(geom_str):
@thomaslillo
thomaslillo / System Design.md
Created April 18, 2020 00:53 — forked from vasanthk/System Design.md
System Design Cheatsheet

System Design Cheatsheet

Picking the right architecture = Picking the right battles + Managing trade-offs

Basic Steps

  1. Clarify and agree on the scope of the system
  • User cases (description of sequences of events that, taken together, lead to a system doing something useful)
    • Who is going to use it?
    • How are they going to use it?