Social Maps: a user reviews and ratings service for points-of-interest (e.g. cafes) in OpenStreetMap.
I’ve been trying to reduce and eliminate my reliance of the Big Tech and the lack of user reviews and ratings was always a big pain point for me each time I tried to switch away from Google Maps.
I’ve started building a service where users can write reviews and rate “places” (POIs) in OpenStreetMap database, such as a cafe, a museum, or a shop. It’s a quite straightforward CRUD app with bunch of OpenStreetMap-specific features such as logging in with OpenStreetMap and querying places by their OpenStreetMap metadata.
It’s still in active development but it has good docs, a great API reference (including an OpenAPI spec), a demo app with the entire planet imported and queryable, and an early stage Android SDK.
> I definitely cringed when Zig moved to Codeberg!
If anything Codeberg’s legal structure (being a non-profit) and vision makes it a lot more aligned with the objectives of free and open source projects than GitHub in the long run (which has always been the case but it’s just abundantly clearer today).
I think “for-profit corporations providing high quality public services for free” was a zero interest-rate phenomenon and never sustainable.
I agree with you that it isn't clear what's going on here. People are giving it an interpretation that feels obvious given the current context, and we don't yet know whether this interpretation is true.
Usually the obvious interpretation of an isolated internet factoid turns out not to be true.
> The wallets “definitely [look like] someone with some degree of inside info”, said Ben Yorke, formerly a researcher with CoinTelegraph, now building an AI trading platform called Starchild.
Ben Yorke is the only expert I see mentioned in the article, so it'd be a lot more accurate (and a lot less sensational) if The Guardian changed its title to "... says one expert" (but it wouldn't sound as interesting then, would it?).
> Eight accounts, all newly created around 21 March, bet a total of nearly $70,000 (£52,000) on there being a ceasefire. They stand to make nearly $820,000 if such a deal is reached before 31 March.
Not to sound privileged but $800k doesn't sound like that much of money for someone that has access to that kind of insider knowledge, especially considering the risks.
All things considered, I feel like the same people could make much bigger bets using trad-fi instruments than Polymarket so I don't understand what's so significant about Polymarket "whales".
> $800k doesn't sound like that much of money for someone that has access to that kind of insider knowledge
I think you over-estimate by a large margin how much congressional staffers and/or Pentagon employees make, many of whom could have access to this kind of information in the course of their duties.
You don’t have to be an insider to know that the US wants to broker a peace deal now that they’ve gotten themselves deep in the shit. Also, how could a Washington insider know if a peace deal will actually be brokered they have to negotiate with the other party after all.
Betting on a ceasefire isn't the interesting part, placing a five digit bet on a ceasefire by March 31st using brand-new accounts is.
Do you have any other plausible explanation for this behaviour? I can't think of any, if it's just like your average WallStreetBets gambler, why would they be making these bets from brand-new accounts?
Conspiracy theories are once again gossip for men. Interestingly, you can put your money where your mouth is in this case open your own account and make your own bets since you seem convinced. might as well cash in. Which gives me an idea … if only I had enough cash sitting around…
If you're interested in "private AI", see Confer [0] by Moxie Marlinspike, the founder of Signal private messaging app. They go into more detail in their blog. [1]
I don't get how this can work, and Moxie (or rather his LLM) never bothers to explain. How can an LLM possibly exchange encrypted text with the user without decrypting it?
The correct solution isn't yet another cloud service, but rather local models.
Within the enclave itself, DRAM and PCIe connections between the CPU and GPU are encrypted, but the CPU registers and the GPU onboard memory are plaintext. So the computation is happening on plaintext data, it’s just extremely difficult to access it from even the machine running the enclave.
How is it then much different than trusting the policies of Anthropic etc? To be fair you need some enterprise deal to get the truly zero retention policy.
Enclaves have a property that allows the hardware to compute a measurement (a cryptographic hash) of everything running inside it, such as the firmware, system software such as the operating system and drivers, the application code, the security configuration. This is signed by the hardware manufacturer (Intel/AMD + NVIDIA).
Then, verification involves a three part approach. Disclaimer: I'm the cofounder of Tinfoil: https://tinfoil.sh/, we also run inference inside secure enclaves. So I'll explain this as we do it.
First, you open source the code that's running in the enclave, and pin a commitment to it to a transparency log (in our case, Sigstore).
Then, when a client connects to the server (that's running in the enclave), the enclave computes the measurement of its current state and returns that to the client. This process is called remote attestation.
The client then fetches the pinned measurements from Sigstore and compares it against the fetched measurements from the enclave. This guarantees that the code running in the enclave is the same as the code that was committed to publicly.
So if someone claimed they were only analyzing aggregated metrics, they could not suddenly start analyzing individual request metrics because the code would change -> hash changes -> verification fails.
> First, you open source the code that's running in the enclave, and pin a commitment to it to a transparency log (in our case, Sigstore).
This means you have reproducible builds as well? (source+build-artifacts is signed)
Also - even if there are still some risk that the link is not 100% safe, maybe it's safe to assume vendors like yourself going through all that trouble are honorable? (alternatively - they are very curious of what "paranoid" people would send through LLMs :sweatsmile:)
We don't have reproducible builds because we attest the full OS image that we run, which is the Ubuntu image. Unfortunately bit-by-bit reproducible binaries for OS images is kind of an unsolved problem, because it requires the hundreds of package maintainers across all dependencies to eliminate any sources of non-determinism in the compilation. Things like timestamps and file reordering are very common and even one of these changes the entire hash.
So we do the next best thing. We decide to trust Github and rely on Github Actions to faithfully execute the build pipeline. We also make sure to pin all images and dependencies.
I’ve been trying to reduce and eliminate my reliance of the Big Tech and the lack of user reviews and ratings was always a big pain point for me each time I tried to switch away from Google Maps.
I’ve started building a service where users can write reviews and rate “places” (POIs) in OpenStreetMap database, such as a cafe, a museum, or a shop. It’s a quite straightforward CRUD app with bunch of OpenStreetMap-specific features such as logging in with OpenStreetMap and querying places by their OpenStreetMap metadata.
It’s still in active development but it has good docs, a great API reference (including an OpenAPI spec), a demo app with the entire planet imported and queryable, and an early stage Android SDK.
https://app.socialmaps.org/
https://docs.socialmaps.org/
https://codeberg.org/socialmaps
reply