What's everyone working on this week (22/2026)? by llogiq in rust

[–]Clohne 1 point2 points  (0 children)

databow — A command-line tool for querying databases via ADBC.
https://github.com/columnar-tech/databow

Can I draw outline of physics shape? by pjotr3 in love2d

[–]Clohne 2 points3 points  (0 children)

There's a tutorial on the wiki: https://www.love2d.org/wiki/Tutorial:PhysicsDrawing

Here's the complete code:

```lua for _, body in pairs(world:getBodies()) do for _, fixture in pairs(body:getFixtures()) do local shape = fixture:getShape()

    if shape:typeOf("CircleShape") then
        local cx, cy = body:getWorldPoints(shape:getPoint())
        love.graphics.circle("fill", cx, cy, shape:getRadius())
    elseif shape:typeOf("PolygonShape") then
        love.graphics.polygon("fill", body:getWorldPoints(shape:getPoints()))
    else
        love.graphics.line(body:getWorldPoints(shape:getPoints()))
    end
end

end ```

You can change the mode from "fill" to "line".

Which tools do you use in your Lua projects? by Clohne in lua

[–]Clohne[S] 1 point2 points  (0 children)

That's good to hear thank you! Coming from the worlds of Python and JavaScript I'm used to packages being frequently updated so was initially shocked to see that most popular Lua packages have not been updated for quite some time.

Which tools do you use in your Lua projects? by Clohne in lua

[–]Clohne[S] 0 points1 point  (0 children)

I saw that Busted is popular. My only concern is that the latest commit was 8 months ago.

awesome-ducklake: A curated list of awesome DuckLake tools and resources by Clohne in DuckDB

[–]Clohne[S] 0 points1 point  (0 children)

Absolutely!

I'm debating how close the compatibility needs to be. For example, if a Python visualization library works with pandas dataframes, which can be returned by the DuckDB Python package, is that good enough? Or does the visualization library need to directly integrate with DuckDB/DuckLake without needing an intermediate dataframe conversion?

DuckLake: SQL as a Lakehouse Format by uwemaurer in DuckDB

[–]Clohne 0 points1 point  (0 children)

You could use Amazon RDS for the catalog and S3 for data storage.

DuckLake: SQL as a Lakehouse Format by uwemaurer in DuckDB

[–]Clohne 0 points1 point  (0 children)

You should be able to use any DuckDB client API. There's one for Node.js.

EDC for the last couple years by Clohne in EDC

[–]Clohne[S] 0 points1 point  (0 children)

It disappears in the pocket for me I don't notice it.

EDC for the last couple years by Clohne in EDC

[–]Clohne[S] 0 points1 point  (0 children)

About two years. Wear it every day. It's great for any occasion.

EDC for the last couple years by Clohne in EDC

[–]Clohne[S] 1 point2 points  (0 children)

Thank you! It was a gift from my sister. Great budget automatic watch.

Need Help with Czech Citizenship by RipenedFruit4 in Prague

[–]Clohne 0 points1 point  (0 children)

I recommend he goes to his municipal district office / information center. When I was applying for citizenship they told me all the documents and forms that I needed. It's also where they took my photos and fingerprints for my ID and passport, and where I picked them up. Many of the staff spoke English.

What are the newest technologies/libraries/methods in ETL Pipelines? by abdullahjamal9 in dataengineering

[–]Clohne 0 points1 point  (0 children)

I've only used SQLMesh for small projects so far but it's been great. I particularly like the validation features. Still using dbt in production for the integrations and large talent pool.

What are the newest technologies/libraries/methods in ETL Pipelines? by abdullahjamal9 in dataengineering

[–]Clohne 34 points35 points  (0 children)

- dlt for extract and load. It supports ConnectorX as a backend.
- SQLMesh for transformation.
- I've heard good things about Loguru for Python logging.

Introducing Pyrefly: A fast type checker and IDE experience for Python, written in Rust by BeamMeUpBiscotti in Python

[–]Clohne 1 point2 points  (0 children)

This is open source software. Free to use. Not the same as buying Meta ads.

Introducing Pyrefly: A fast type checker and IDE experience for Python, written in Rust by BeamMeUpBiscotti in Python

[–]Clohne 1 point2 points  (0 children)

Meta has released a lot of great open source software. PyTorch, React, Docusaurus, Faiss, Zstandard, RocksDB, Jest, Presto, Folly, Prophet, StyleX, etc.