HN user

uwemaurer

276 karma

https://bsky.app/profile/uwemaurer.bsky.social

Posts35
Comments75
View on HN
sqg.dev 3mo ago

Benchmarking DuckDB from Java: Fast Insert, Update, and Delete

uwemaurer
2pts0
sqg.dev 3mo ago

I benchmarked bulk insert into PostgreSQL from Java (also via DuckDB / Arrow)

uwemaurer
3pts0
sqg.dev 4mo ago

SQG (SQL to Code Generator) v0.10: Java Streams and List Type Support

uwemaurer
20pts6
sqg.dev 6mo ago

SQLite Driver Benchmark: better-sqlite3 vs. node:SQLite

uwemaurer
1pts0
sqg.dev 6mo ago

Show HN: SQG – Compile SQL (SQLite,DuckDB) to TypeScript/Java Code

uwemaurer
2pts0
bluefacts.app 1y ago

Bluesky user activity has declined by 23% over the past three months

uwemaurer
21pts21
bluefacts.app 1y ago

Top Most Engaging Bluesky Users

uwemaurer
4pts0
blue.facts.dev 1y ago

Democratic Politicians Are Flocking to Bluesky

uwemaurer
10pts6
blue.facts.dev 1y ago

Bluesky accounts add 10k followers per day

uwemaurer
9pts2
blue.facts.dev 1y ago

Mark Hamill becomes the third user to reach 1M followers on Bluesky

uwemaurer
4pts1
awesome.facts.dev 1y ago

Show HN: I am building a 3D GitHub project explorer

uwemaurer
2pts0
awesome.facts.dev 1y ago

Show HN: Find Backlinks from GitHub Lists

uwemaurer
2pts1
news.facts.dev 2y ago

Show HN: Personalized Hackernews front page (using Astro, Svelte)

uwemaurer
6pts3
www.appbrain.com 2y ago

Modern app-ads.txt validator based on CodeMirror

uwemaurer
2pts0
www.appbrain.com 2y ago

Android 14 Surges in Market Share since start of 2024

uwemaurer
2pts1
www.freeappy.com 2y ago

Android App Market Stats with Apache ECharts

uwemaurer
1pts0
www.freeappy.com 3y ago

Building an Android App Discovery Site with AppBrain API and Swagger

uwemaurer
2pts0
www.facts.dev 3y ago

Show HN: facts.dev - an API directory created with ChatGPT, Astro, Meilisearch

uwemaurer
2pts0
www.freeappy.com 3y ago

A new Android app discovery website optimized for mobile

uwemaurer
2pts0
tauri.app 4y ago

Tauri version 1.0 is now available

uwemaurer
2pts0
rackspace.service-now.com 9y ago

Rackspace load balancer outage

uwemaurer
32pts11
www.appbrain.com 10y ago

Top SDKs used in Android apps

uwemaurer
1pts0
www.appbrain.com 12y ago

Top 10 most downloaded Android apps in June

uwemaurer
3pts0
blog.appbrain.com 12y ago

AppBrain reports the monthly top downloaded Android apps

uwemaurer
3pts0
play.google.com 12y ago

Google Play Developer Program Policy Update - no more push ads, bookmark ads

uwemaurer
3pts2
blog.appbrain.com 13y ago

AppBrain blog: More ad mediation options with the AppBrain AppLift SDK

uwemaurer
2pts0
techcrunch.com 13y ago

Google Play Rolls Out New Developers Console

uwemaurer
3pts0
www.androidguys.com 13y ago

Is Google’s new app policy just a bunch of lip service?

uwemaurer
2pts0
play.google.com 13y ago

Pinterest for Android released

uwemaurer
17pts5
www.businessinsider.com 13y ago

The Top 25 Most Common Words In iOS And Android App Titles

uwemaurer
1pts0
Good CTE, Bad CTE 4 months ago

Great article, I always like to structure my queries with CTEs and I was (wrongly) assuming it all gets inlined at the end. Sometimes it also gets complicated since these intermediate results can't be easily seen in a SQL editor. I was working on a UI to parse CTE queries and then execute them step by step to show the results of all the CTEs for easier understanding of the query (as part of this project https://github.com/sqg-dev/sqg/)

17 years ago we launched the first "Chuck Norris Facts" app for Android (March 2009). It was a big success until end of 2010 when Chuck Norris sent his lawyers after us to get the app removed from the Android market. Chuck Norris won, we took the app down

I use es-toolkit. It is fully in Typescript. Every function can be imported without any extra overhead, for simple functions it just adds a few bytes then to the bundle. I doubt "better performance" since most helpers functions are just tiny and there is no room for significant improvements.

So I think trying to be better here is pointless, better focus on offering more helpful utility functions which might be missing in es-toolkit

[dead] 1 year ago

Our Bluesky trends and insight app is live on Uneed today. We'd appreciate an upvote.

In addition to daily user and engagement rankings, we launched a new feed builder for Bluesky last week: http://bluefacts.app/feed-builder

Looking forward to your feedback!

you can do it with a command line like this:

   duckdb -c "attach  'sqlite-database.db' as db;  copy db.table_name to 'table_name.parquet' (format parquet, compression zstd)"


in my test database this is about 20% smaller than the gzipped text SQL statements.
Apache ECharts 1 year ago

Echarts has good documentation and examples so I think it should be vibe coding friendly when you reference the docs (eg with cursor)

I didn't use Timefold but the predecessor Optaplanner, and I remember there were hard constraints which must always be true (eg one room can only be used for one meeting at a given time) and then there were soft constraints which were minimized (eg shorter distance is better)

so an optimization problem can then be described with a set of those hard/soft contraints