Claude Sonnet will ship in Xcode (developer.apple.com)
462 points by zora_goron 17h ago 362 comments
Why AI Isn't Ready to Be a Real Coder (spectrum.ieee.org)
70 points by WolfOliver 3h ago 81 comments
Wikipedia as a Graph
73 gidellav 18 8/29/2025, 4:19:56 PM wikigrapher.com ↗
By excluding the category links at the bottom that contain all the recipients, there would still be a connection, but it would include the extra hop between the two that makes their connection more clear on the graph (Titanic -> Caruso -> Grammy Lifetime Achievement Award -> David Bowie.)
Otherwise, this is a fun little tool to play around with. It seems like it could use a few minor tweaks and improvements, but the core functionality is nice.
If anyone is looking to start similar projects, I open-sourced a library to convert the wikipedia dump into a simpler format, along with a bunch of parsers: https://github.com/Zulko/wiki_dump_extractor . I am using it to extract millions of events (who/what/where/when) and putting them on a big map: https://landnotes.org/?location=u07ffpb1-6&date=1548&strictD...
https://m.wikidata.org/wiki/Wikidata:Main_Page
Yup, checks out.
Love -> Time (magazine) -> Henry Kissinger
https://www.sixdegreesofwikipedia.com/?source=Love&target=He...
I thought it would be a few trivial steps to reach the Emperor Maurice from Belle’s dad Maurice, but the best I could do was 5 torturous hops between List of Beauty and the Beast Characters and the Maurice disambiguation page.
https://www.sixdegreesofwikipedia.com/?source=List+of+Disney...
Thanks for sharing this
Henry_Kissinger
I made this awhile back for more freeform browsing: https://wikijumps.com
Would love to integrate some of that relationship data
Congrats to the dev regardless, if you’re in here! Looks great, love the front end especially. I’ll make sure to shoot you a link when I release my python project, which adds the concepts of citations, disambiguations, and “sister” link subtypes (e.g. “main article”, “see also”, etc), along with a few other things. It doesn’t run anywhere close to as fast as yours, tho!! 2h for processing a wiki dump is damn impressive.
Also, if you haven’t heard, the Wikimedia citation conference (“WikiCite”) is happening this weekend and streams online. Might be worth shooting this project over to them, they’d love it! https://meta.m.wikimedia.org/wiki/WikiCite_2025
If entries have a wikipedia article, it'll be linked to in the wikidata entry. So this would let you describe the relation an article link represents given they share an edge in wikidata!
For example: https://www.wikidata.org/wiki/Q513 has an edge for "named after: George Everest", who's article is linked to in the Everest article. If you could match those up, I think that could add some interesting context to the graph!
Everest -- links to (named after) --> George Everest
One of our projects in algorithms/data structures was to do a BFS on the Wikipedia dump. In 2007.
https://github.com/neuml/txtai/blob/master/examples/58_Advan...