frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

What Is Focus? State–Space Trajectories, Traveling Waves Following Distraction

https://direct.mit.edu/jocn/article-abstract/doi/10.1162/JOCN.a.2410/133791/State-Space-Trajector...
1•Marshferm•5m ago•1 comments

Intel CPUs Should Be $150 [video]

https://www.youtube.com/watch?v=AWh5qnNnnZw
1•mariuz•5m ago•0 comments

Viruses of the Mind (1991) Richard Dawkins [pdf]

http://www.biolinguagem.com/ling_cog_cult/dawkins_1991_virusesofthemind.pdf
2•keepamovin•13m ago•0 comments

YouTube denies AI was involved with odd removals of tech tutorials

https://arstechnica.com/tech-policy/2025/10/youtube-denies-ai-was-involved-with-odd-removals-of-t...
1•geerlingguy•13m ago•0 comments

Viruses of the Mind

https://grokipedia.com/page/Viruses_of_the_Mind
1•keepamovin•14m ago•0 comments

Jacking into the Rye's Cybergrid

https://asciinema.org/a/753115
1•middayc•15m ago•0 comments

Show HN: I built a tool to version control datasets (like Git, but for data)

https://shodata.com
2•aliefe04•15m ago•0 comments

Ghosts in the Codex Machine

https://docs.google.com/document/d/1fDJc1e0itJdh0MXMFJtkRiBcxGEFtye6Xc6Ui7eMX4o/edit?tab=t.0#head...
1•freediver•16m ago•0 comments

Show HN: I Built an AI-Powered Developer Intelligence Platform

https://leeflytic.com/
1•mohamedraheem•16m ago•0 comments

Show HN: CommoWatch – Alerts for Commodity Prices (Gold, Oil, Wheat, etc.)

2•anthonytorre•18m ago•0 comments

We sharpened the James Webb telescope’s vision from a million kilometres away

https://theconversation.com/how-we-sharpened-the-james-webb-telescopes-vision-from-a-million-kilo...
2•geox•20m ago•0 comments

Show HN: Holiday Optimizer – find the best way to stretch your PTO

https://holiday-optimizer.com/
1•waqar199•22m ago•1 comments

Landlock: The Linux sandboxing mechanism [pdf]

https://landlock.io/talks/2024-01-22_landlock-overview.pdf
1•udev4096•24m ago•0 comments

Show HN: Chess960v2 – Stockfish tournament with different starting positions

https://chess960v2.com/en
1•lavren1974•25m ago•1 comments

Surrey Uni show AI systems based on the human brain's save energy

https://epsomandewelltimes.com/surrey-uni-show-ai-systems-based-on-the-human-brains-save-energy
1•cmsefton•25m ago•0 comments

A prison of my own making

https://jsteuernagel.de/posts/a-prison-of-my-own-making/
4•todsacerdoti•27m ago•0 comments

Why Antimatter Engines Could Launch in Your Lifetime [video]

https://www.youtube.com/watch?v=eA4X9P98ess
1•breve•27m ago•0 comments

D.J. Bernstein: The Good News Archive

http://www.aaronsw.com/weblog/001502
1•udev4096•27m ago•0 comments

Ask HN: What would your top local-first apps be?

1•mactavish88•29m ago•0 comments

MS-DOS Development with GCC

https://hackaday.com/2018/05/14/msdos-development-with-gcc/
1•AlexeyBrin•33m ago•0 comments

X.org Security Advisory: multiple security issues X.Org X server and Xwayland

https://lists.x.org/archives/xorg-announce/2025-October/003635.html
3•birdculture•34m ago•0 comments

I Started Learning Sumerian, and What It Taught Me About Burnout

https://mindthenerd.com/why-im-learning-sumerian-and-what-it-taught-me-about-hard-work-burnout-an...
1•ednite•35m ago•1 comments

Physicists Prove the Universe Can't Be a Computer Simulation

https://scienceclock.com/physicists-prove-the-universe-cant-be-a-computer-simulation/
1•ashishgupta2209•36m ago•0 comments

The Myth and Mystery of the Tunguska Impact

https://www.thequantumcat.space/p/the-myth-and-mystery-of-the-tunguska
1•verzali•36m ago•0 comments

'Gamer chat,' not terror plot, prompted FBI raid on Dearborn man, attorney said

https://www.mlive.com/news/2025/11/gamer-chat-not-terror-plot-prompted-fbi-raid-on-dearborn-man-a...
2•pogue•37m ago•1 comments

AI-powered tool to debug and write code similar with cusor

https://contact.reene4444.com/ai-coding
2•reene44444•38m ago•1 comments

Claude Code Kit: Reliable Coding Using Claude Skills, Hooks and Command

https://github.com/blencorp/claude-code-kit
1•dotmike•42m ago•1 comments

GraphMD – LLMs Powered Literate Programming Environment for Markdown Documents

https://github.com/graphmd-lpe/graphmd
1•art-bin•44m ago•1 comments

AI World Clocks

https://clocks.brianmoore.com/
2•ajdude•48m ago•1 comments

R2T: Rule-Encoded Loss Functions for Low-Resource Sequence Tagging

https://arxiv.org/abs/2510.13854
2•PaulHoule•54m ago•0 comments
Open in hackernews

CLI to manage your SQL database schemas and migrations

https://github.com/gh-PonyM/shed
27•PonyM•7h ago

Comments

Shorel•6h ago
Good may be an alternative to Alembic, so we can get rid of the Python requirement =)

(Checks it out...)

Ahh, this is also Alembic.

Hasnep•6h ago
I've been looking at Atlas as an alternative to Alembic recently, it seems nice, but I'm wary of the non open source features.

https://github.com/ariga/atlas

leosanchez•4h ago
I use goose[1] for db migrations.

[1]: https://github.com/pressly/goose

juangacovas•6h ago
I like when projects like this mention other projects. "Phinx" (PHP) has been a breeze to work with for database migrations for years now, and handles more than my team needs. Meanwhile, some time ago a colleague in other job was raging they didn't have migrations but a chaos of DBs in their environments.
hdjrudni•5h ago
This one company I worked for created like 5 databases for every client they had.

So we had hundreds of databases. And no migrations or way to keep them in sync.

One day I got fed up and ran some statistical analysis on all the databases to find inconsistencies and figure out what the most popular schemas were, because sometimes even when they had the same table and column names, the types were slightly different.

I don't recall if I managed to get them all in sync before I quit.

8cvor6j844qw_d6•5h ago
I mostly used ORM to manage db changes.
whilenot-dev•5h ago
> This will create a config file for local and prod databases using sqlite for local and postgres for prod.

Hold on, people actually do that? I thought it's trivial to run your database in a container locally.

dewey•3h ago
Especially if you use any of the features that make Postgres nice to work with (For example good jsonb handling) these are immediately different than on sqlite and then won't work for development. Don't think there's a good reason for not running the same DB in both environments.
bob1029•4h ago
If you happen to be using MSSQL or Postgres, the Redgate tools are a game changer for schema management. I was a big fan of using things like EF and custom code to handle schema migrations until I tried SQL Compare. These tools make normalizing a large number of instances significantly easier. If you've got a multi tenant setup where everything should have the same schema, you could fix the whole fleet in an afternoon.

For SQLite, I still vastly prefer using custom code to run migrations. Something about the ownership model makes manual external tooling feel inappropriate.

bytefish•3h ago
If you are using SQL Server, then SQL Server Database Projects are an amazing tool to work with. I found them to generate high-quality migration scripts and it makes it easy to diff against an existing database.

ORMs are good up until the point you need to include SQL Views, Stored Procedures, Functions, User-defined Types… which is usually the point the ORM abstractions begin to crack (and every SQL Server database I use include them).

For PostgreSQL I usually hand-write the scripts, because it is easier, than fighting against an ORM.

I heard the Redgate tooling is also great to work with, but I’ve never used it personally.

a8m•3h ago
Good point regarding ORMs - that was one of the main problems I wanted to tackle when we built Atlas (https://atlasgo.io). We added support for reading ORM definitions directly, then let you extend the "base schema" defined in them. For example, you can define your models in SQLAlchemy, EF Core, Ent, or others as a partial schema, and then extend it with functions, views, and additional objects.

From there, Atlas handles diffing, planning, and execution. This is similar to importing modules in TF, but for database schemas in Atlas. See this example: https://atlasgo.io/guides/orms/sqlalchemy

Disclaimer: I'm involved with Atlas.

_def•2h ago
Tangential, but anyone can suggest their favorite SQL client? Many years ago on Windows I enjoyed HeidiSQL, and while you can kind of use it with wine, it doesn't make a stable impression to me.

Recently I found mycli[1], which seems slightly better than the official mariadb cli client, but still a bit cumbersome.

[1] https://github.com/dbcli/mycli

sdssddxxffds•2h ago
Yhhjkj