beach background
Mannie Schumpert headshot

Mannie Schumpert

Full-Stack JavaScript Engineer

I started dabbling on the web way back in 2000 😱, then took the leap into full-time web development in 2012. Since 2016 I've been focused on building web applications with JavaScript. I love bringing technical order and approachable UX to complex architectural problems using Lean methodologies.

Currently building this new site as of July 3rd, 2022...

👀 The latest item on my Tech Watchlist:

2022-07-02

EdgeDB


EdgeDB is an open source database that is a sort of hybrid of relational and object-oriented. I find its query language very, very interesting.

From the examples on their home page is this query with an aggregation and filter:

select Movie {
  title,
  actors: {
   name
  },
  rating := math::mean(.reviews.score)
} filter "Zendaya" in .actors.name;