Skip to content
View shanerbo's full-sized avatar
🦻
I can’t hear you!
🦻
I can’t hear you!
  • aws
  • Vancouver
  • 03:25 (UTC -07:00)

Block or report shanerbo

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
shanerbo/README.md

Erbo at your service Hi

Software engineer. Systems background. Building weird useful things.

I currently work as an SDE II at AWS. Before that, I spent a lot of time in C/C++ systems programming: HTTP internals, server I/O, startup performance, network performance, and backend security.

I like turning messy problems into concrete systems, rules, and tradeoffs.

My bias: useful software should either make something easier, clarify something messy, or help someone make a better decision.


🧭 Current Direction

I’m building around the intersection of:

systems engineering
AI-native workflows
personal data
location-based products
decision systems
tiny compilers

Small products. Clear constraints. Real users. Less fluff.


🚧 Active Projects

A tiny systems programming language that reads more like English and compiles to native ARM64.

Potato uses .ptt files and is designed around:

  • Native compilation
  • No VM, no interpreter, no libc, no runtime dependency
  • Type checking
  • Move semantics
  • RAII-style scoped cleanup
  • Bounds checking
  • Fast single-pass compilation
  • Compiler written in C

Example:

spark {
  name is "world"
  yell("hello {name}")

  through (i from 1 to 10 by 1) {
    i mod 3 eq 0 ?{
      yell("fizz")
    } nah {
      yell(i)
    }
  }
}

What I’m exploring here:

  • Compiler construction
  • Language design
  • Memory safety
  • Native code generation
  • How much a small language can do before it becomes a big one

Question behind the project:
Can a systems language be low-level, readable, and small at the same time?


🗺️ Fleck

A private, map-first memory archive.

Fleck started from an older food journal / AI logging idea, but the product has pivoted. The direction now is closer to:

memo
+ geospatial context
+ private social graph
+ personal archive

The product loop:

capture memories
anchor them to places
revisit them by map or date
share selectively through private connections

This repo currently carries the legacy EatJournals name, but the product direction is Fleck.

The backend/web repo owns:

  • Next.js App Router
  • TypeScript
  • Prisma + Neon Postgres
  • Cloudflare R2 private media storage
  • Clerk authentication
  • Signed media reads
  • REST API for web and mobile clients
  • MapLibre map surface
  • Vercel deployment
  • Terraform-managed infrastructure

Why it’s interesting:

Fleck is not just a CRUD app with a map. It has real product constraints:

  • Privacy
  • Auth
  • Media storage
  • GPS data
  • Mobile uploads
  • Private sharing
  • Infrastructure
  • Operational correctness

Product thesis:
Your memories should be browsable by place, time, and people — without turning into public social media.


The native iOS app for Fleck.

FleckMobile owns the phone-side experience:

  • Import GPS-backed flecks
  • Browse memories by map, place, and date
  • Switch between your own map and connected maps
  • Accept private connection invites through universal links
  • Pick local photos and run resumable import sessions
  • Handle retry, resume, cleanup, diagnostics, and TestFlight builds

Stack:

  • Expo SDK 54
  • React Native 0.81
  • TypeScript
  • Expo Router
  • Clerk
  • Apple Maps via react-native-maps
  • TanStack Query with persisted cache
  • Sentry
  • EAS Build + TestFlight

The split is intentional:

Fleck backend = canonical API, auth, storage, database, infra
FleckMobile = native capture, map UX, upload reliability, TestFlight release

I care about the full product loop: not just making an API work, but making memory capture reliable from someone’s phone.


🧱 Engineering Background

I’ve worked mostly around backend and infrastructure systems:

  • Backend systems
  • Cloud services
  • C / C++
  • Network programming
  • HTTP internals
  • Performance optimization
  • Security-sensitive systems
  • Infrastructure design
  • Product engineering
  • Mobile/backend API design

I care about:

latency
correctness
simplicity
operational reality

Or more directly:

Does the system work when it meets real users, real data, real failures, and real constraints?


🧠 Technical Interests

  • Systems programming
  • Compiler design
  • Backend architecture
  • Cloud infrastructure
  • AI agents
  • Personal data products
  • Maps and location-based software
  • Mobile/backend integration
  • E-commerce decision systems
  • Fitness and nutrition data systems

⚙️ How I Think

I prefer:

  • First principles over cargo culting
  • Clear verdicts over vague analysis
  • Small MVPs over big roadmaps
  • Real user decisions over demo features
  • Data over vibes
  • Simple systems before clever systems
  • Product constraints before technology choices

A good product should answer:

What decision does this help the user make?
What behavior does this make easier?
What data does this preserve, transform, or clarify?

🏃 Outside Software

Outside software, I train for running and cycling.

I like endurance sports for the same reason I like systems work:

feedback loops
constraints
compounding improvement
brutally honest measurements

📊 Repo Snapshot

My GitHub history is basically a trail of experiments: some serious, some messy, some purely for learning.

Right now I’m focused on 3 active projects:

  • 🥔 Potato / erbos-lang — tiny systems language + compiler
  • 🗺️ Fleck — private geospatial memory archive
  • 📱 FleckMobile — native iOS client for Fleck

Across my repos, I’ve explored:

Theme Examples
Systems C/C++, web servers, runtime experiments, compiler work
Product apps Fleck, mobile apps, web apps, e-commerce tools
Mobile Expo, React Native, Flutter, iOS builds
Backend / infra Next.js, Prisma, Postgres, R2, Vercel, Terraform
CS fundamentals algorithms, data structures, LeetCode, system design
AI / CV experiments image prediction, automation, ML-adjacent prototypes
public repos + private builds + experiments
→ currently converging toward systems-heavy product engineering

🔗 Links

Website: erbos.me
GitHub: @shanerbo

Pinned Loading

  1. erbos-lang erbos-lang Public

    C 2