mastodontech.de ist einer von vielen unabhängigen Mastodon-Servern, mit dem du dich im Fediverse beteiligen kannst.
Offen für alle (über 16) und bereitgestellt von Markus'Blog

Serverstatistik:

1,4 Tsd.
aktive Profile

#duckdb

3 Beiträge3 Beteiligte0 Beiträge heute

{targets} daily pipeline
| {meteospain} ->
| {meteoland} ->
| {medfate} ->
| {arrow} + {geoarrow}
|
|- geoparquet files in custom S3 (No AWS)
|
|- {shiny}
| {duckdb} +
| {mapdeck} +
| {echarts4r}
|
|- Interactive visualizations of daily modelled forest water balance in Spain at 500m2 resolution.

#rstats#rspatial#duckdb

"Let me just quickly create script that export all #Garmin badges."

Oooh shoot… Garmin did harden their login flow and my #cURL foo did capitulate. Hours later… Not even Selenium did work anymore, but got my IP blocked at cloudflare.

Now using #Garth to get me an access token github.com/matin/garth I wish I could just sign up for the Garmin developer program, but they say "only business"… Meeeh.

Script itself basically wrote itself with #DuckDB

github.com/michael-simons/garm

Garmin SSO auth + Connect Python client. Contribute to matin/garth development by creating an account on GitHub.
GitHubGitHub - matin/garth: Garmin SSO auth + Connect Python clientGarmin SSO auth + Connect Python client. Contribute to matin/garth development by creating an account on GitHub.

DuckDB extension for A5 DGGS: A community extension by Query.Farm brings native support for the (equal-area, pentagonal-cell-based) #A5 Discrete Global Grid System (#DGGS) to #DuckDB. In development since April, the extension includes a set of functions for coordinate...
spatialists.ch/posts/2025/10/1 #GIS #GISchat #geospatial #SwissGIS

Spatialists – geospatial newsDuckDB extension for A5 DGGS – Spatialists – geospatial news
Mehr von Spatialists

One other reason I covered Garage (dailydrop.hrbrmstr.dev/2025/10) in the 10-06 Drop was b/c we're making super cool new hourly Parquet timeseries now at work & they `aws s3 sync` super fast to my local server.

Garage makes local S3 rly easy (MinIO drank the "AI" kool-aid, so intercourse them) & works well from #RStats & #DuckDB.

Notwithstanding the global slide-to-authoritarian mess + daft "AI" stuff, we do live in amazing tech times w/rly clever folks making awesome FOSS.

ray.so/h2qEAb9

#DuckDB is great for at-scale testing IPv4 CIDR membership.

If you have a massive (++millions) table of IPs and a table of ++thousands of CIDRs, this will crank through them locally in mere seconds.

```sql
INSTALL inet;
LOAD inet;

FROM ips
CROSS JOIN cidrs
SELECT
ip,
cidr
WHERE
ip::INET <<= cidr::INET;
```

#Rstats #duckdb hivemind
Best strategy for this situation :
- very large number of indivual files with same structure (millions of rows)
- concurent individual file based (client side) queries based on attributes stored in different tables/files (search on attributes tables then joins basically)
- don't want/cannot pay motherduck for now

What's best :
Just add tables, store in parquet/duckdb files and try to do most stuff on the client side, use Postgress ?

#Rstats #duckdb hivemind Best strategy for this situation : - very large number of indivual files with same structure (millions of rows) - concurent individual file based (client side) queries based on attributes stored in different tables/files (search on attributes tables then joins basically)

📣🦆There's a new release, 1.4.0, of #DuckDB, my favourite in-process analytical #SQL database. In this release the sorting code has been rewritten, again! I love this kind of development work, where improved algorithms enable us to do more with less. (Unlike generative AI which…) duckdb.org/2025/09/24/sorting-

DuckDB · Redesigning DuckDB's Sort, AgainAfter four years, we've decided to redesign DuckDB's sort implementation, again. In this post, we present and evaluate the new design.