Full-Stack Engineer · Builder

Danny
Tiesling.

Software engineer · 15 years

Technology generalist. I've done just about everything it takes to build, launch, and maintain a product — equally at home writing SQL (the database kind) as I am closing one (the sales kind). Currently architecting and building the Las Vegas Sphere's cloud infrastructure.

01

Silly Side Projects

// click to expand
B
Bloomroom
bloomroom.app

The app for room & class parents to organize the whole school year in one place — a shared class calendar, volunteer & donation sign-ups, and family announcements. Replaces the tangle of emails, group texts, and SignUpGenius links.

Live Details

What it does

Shared class calendarEvery event, party, and deadline in one synced place.
Volunteer sign-upsSlots fill themselves — no more reply-all chains.
Donation & supply listsTrack who's bringing what, in real time.
Family announcementsReach the whole class without group-text chaos.
Disney Parks Tracker
app.disneyparkstracker.com

A fan-built app for Disney parks fans — log the rides and attractions you've experienced, plan what you want to ride next, and generate trip reports from your visits. Independent; not affiliated with or endorsed by The Walt Disney Company.

Live Details

What it does

Log what you've riddenKeep a personal record of every attraction you've experienced.
Plan future ridesBuild a wishlist of attractions you want to visit next.
Generate trip reportsTurn your visits into shareable recaps.
Fan-builtIndependent project — for park fans, by a park fan.
R
RigPicker
rigpicker.app

A build planner for overland rigs — pick a base vehicle, spec it out part by part from a curated parts catalog, and browse complete builds for inspiration. Think PCPartPicker, but for the truck you want to sleep in.

Live Details

What it does

Pick a base rigStart from a Jeep, truck, SUV, van, or wagon.
Spec it part by partOutfit your build from a curated parts catalog.
Browse complete buildsExplore finished rigs for ideas and inspiration.
Plan before you spendPrice out the dream setup before buying a single bolt.
02

Open source

// github.com/dtiesling
🧹
flask-muck
github.com/dtiesling/flask-muck

A declarative Flask REST framework that generates full CRUD APIs and OpenAPI specs for a SQLAlchemy + Marshmallow/Pydantic stack — a complete resource in as little as 9 lines of code.

176
★ stars
v0.4.2
on PyPI
Details

Why it exists

Kills CRUD boilerplateDeclarative views generate every standard endpoint for you.
Search, filter, sort, paginateBuilt in to every list endpoint, free.
Nested resources/classrooms/123/students — out of the box.
Auto OpenAPI + Swagger UIBrowsable API docs generated dynamically.
app.py — a full CRUD resource
class MyModelApiView(FlaskMuckApiView):
    api_name        = "my-model"
    session         = db.session
    Model           = MyModel
    ResponseSchema  = MyModelSchema
    CreateSchema    = MyModelSchema
    PatchSchema     = MyModelSchema
    searchable_columns = [MyModel.name]

# → generates CREATE · LIST · SEARCH · FILTER
# → SORT · FETCH · UPDATE · PATCH · DELETE
View on GitHub Docs