Hadn't thought about it that way, but when I look back at the mostly single player/story-based games I play I agree!
HN user
coinfused
Agree, I'm not at all looking for #1, at all. Good dialogue is an art form.
AI probably
Sounds horrible and mind-numbing to me.
But yes you're right, some people are probably seeking that in their media consumption.
Why would anyone want that? I don't want infinite movies, I don't have infinite time. I'd rather have intent over quantity. There is already an abundance of content, a century of cinema. Who actually wants this and why?
I think a lot of people relate with this but kind of sit with this silently for reasons the author mentioned:
“ Would initiating these discussions result in interpersonal stress? Should I just let things slide? Would I become known as a “difficult” coworker for pushing back on AI use? Does any of it really matter? Does anyone really care? “
Yikes and a link in their post just downloads a file. I don't like this.
Looking forward to when Unity will migrate to CoreCLR. Soon!
I like your site a lot!
David Sherret leaving as well
https://bsky.app/profile/dsherret.bsky.social/post/3mhbms5ph...
And Phil Hawksworth leaving as well
https://bsky.app/profile/philhawksworth.dev/post/3mhbamlutok...
Something is going on.
37signals has open sourced theirs here
https://github.com/basecamp/policies
It hasn’t been updated in a while but they are a good starting point.
I got the same issue, it returns a HTTP 429 Too Many Requests
Why was the original comment flagged? They had a valid and relevant point.
Fun game! I could never quite clear the 0.0030 threshold. I wonder how much screen quality/calibration impacts it.
Didn't know, feel free to delete
I write about computer graphics, rendering and Unity! Sometimes other stuff
Interesting! I’ve been working on a tracker for the Belgian parliament [0]. Similar story: very old site + data mostly gets published as a weekly pdf report (including votes and discussions).
I have
1. A scraper/parser that ingests the data daily and transforms it into .parquet files.
2. A LLM summarizer to summarize larger discussions.
3. A static site that gets automatically generated (based on the .parquet files) to provide insight.
What makes your tracker ‘real-time’? Does it ingest the livestream of a parliamentary session while it is happening?
For things like my personal blog I don’t really need complex analytics, just page views is fine so I’m using goatcounter which has been really great so far. It has all I need and nothing more.
Very nice post! Thanks for writing, I love how detailed it goes.
I use box/gaussian blurs often, but for rendering outlines/highlights of objects.
Not at the moment but maybe in the future. While I'm sure the code could be of interest, the code definitely isn't a template that would fit for other countries. It is tightly coupled to the format of the Belgian parliament since most of it is parsing their PDF reports. In detail my tech stack is like this:
- Rust + reqwest crate + scraper crate to download reports and parse data from it into parquet files
- 11ty + @duckdb/node-api to parse the parquet files at build time and generating pages automatically, I have for example a 'meeting' template and then for each meeting a html page gets built
- summarize certain data using mistral API
- deploy on cloudflare free plan
Nice! Love to see initiatives like these.
I've been working on something in the same space for the Belgian federal parliament. The Belgian parliament livestreams sessions and publishes a single (long, bloated, dual-language) PDF report[0] for each session and that's it.
This means no search across sessions, no details of which parties voted how, no API etc. The only view you get is from the perspective of a single session which is not very useful when you're trying to figure out who to vote for.
I made 'zij werken voor u' (TheyWorkForYou[1] in Dutch) by scraping the PDFs file and parsing it with a Rust script automatically.
The scraped data (votes, questions, topics, dossiers) get put into .parquet files. I also compute some additional things like voting patterns, attendance and which topics interest specific PMs the most.
These parquet files are then fed into a static site generator and a search index is built. I also sprinkle in some summarization using Mistral[2]
The result is https://zijwerkenvooru.be/nl/votes/ (in Dutch) which allows you to look at the data from multiple viewpoints such as
- what questions did member X ask?
- how did party Y vote?
- what is happening around topic Z?
I also post new votes/questions on Bluesky[3]. The whole process (downloading, scraping, publishing, posting) is automated to run through GitHub Actions. I literally have to do nothing now.
I'm hoping the Belgian government will step up and improve their archaic and almost unusable site[4].
Thanks for sharing this project, I'm already getting inspired by it to improve zijwerkenvooru.be!
Edit: I’m thinking it might be good to have an overview of initiatives like these somewhere? Public initiatives to help with political transparency for each country?
[0] https://www.dekamer.be/doc/PCRI/html/56/ip052x.html
[1] https://www.theyworkforyou.com/
This post from Steph Ango (CEO of Obsidian) shares the same sentiment
They reversed it, I don’t think a huge amount of people changed over but definitely substantial! Godot has been growing quickly.
Interesting! I’ll try it out. Thanks for sharing.
They used edge detection with a custom input buffer, a bit like this
In my own projects I use JFA/SDF-based outlines the most because of their quality as well as the possibility to render distance-based effects like pulsating outlines.
This (https://x.com/alexanderameye/status/1663523972485357569) 3D line painting tool also uses SDFs that I then write to a tiny texture and sample at runtime.
SDFs are very powerful!
It’s a recreation from a panel of Tintin The Black Island!
Very nice! I'm wondering, what made you decide to start your own database from scratch instead of (re-)using and/or extending other databases/APIs (such as trefle, or the data sources that trefle uses)?
Same!
Really wanted to start from scratch and I'm just using vanilla html/css/js for
Haven't found the need yet for any frameworks.
Great video again by Sebastian Lague.