Skip to content

Instantly share code, notes, and snippets.

View adavis444's full-sized avatar

Adam Davis adavis444

View GitHub Profile
Basic API interaction test.
Write a function that fetches all the pages of json objects returned by the api.
Return the list of coalesced json user objects.
The API is the (public) endpoint:
https://interview-test-api.maestroqa.com/maestro-etl-interview
Pages are specified by the queryParameter: "page=", starting at 0
@bskaggs
bskaggs / Dockerfile
Last active October 24, 2024 21:43
Install pyarrow on alpine in docker
FROM python:3.7-alpine3.8
RUN apk add --no-cache \
build-base \
cmake \
bash \
jemalloc-dev \
boost-dev \
autoconf \
zlib-dev \
"""
Merge user objects to provide a final single object for each user
(identity resolution)
We should merge two objects if they share any of the same 'primary' key. The
five possible primary keys are:
- zendesk_id
- email
- phone_number
- social_security
- salesforce_id
@CMCDragonkai
CMCDragonkai / regular_expression_engine_comparison.md
Last active February 18, 2026 07:11
Regular Expression Engine Comparison Chart

Regular Expression Engine Comparison Chart

Many different applications claim to support regular expressions. But what does that even mean?

Well there are lots of different regular expression engines, and they all have different feature sets and different time-space efficiencies.

The information here is just copied from: http://regular-expressions.mobi/refflavors.html