HackerTrans
TopNewTrendsCommentsPastAskShowJobs

zbycz

62 karmajoined 3 tahun yang lalu
OpenStreetMap enthusiast, my hobby project is osmapp.org

Submissions

Fullstack AI developer in 6 weeks (satire)

xcancel.com
1 points·by zbycz·4 bulan yang lalu·0 comments

Native apps with Tauri, back end with Bun

codeforreal.com
1 points·by zbycz·5 bulan yang lalu·0 comments

Dark Reader - a dark mode extension for all browsers

darkreader.org
2 points·by zbycz·8 bulan yang lalu·0 comments

comments

zbycz
·6 hari yang lalu·discuss
You can already add photos to OSM database. Eg. via wikimedia_commons tag.

There is already plenty of apps which show them, like OsmAnd or https://cartes.app , https://osmapp.org or https://openclimbing.org where you can even upload the photos from the map UI
zbycz
·2 bulan yang lalu·discuss
We don't even have this for OpenStreetMap, let alone some meta service.

btw, easily showing/adding/editing businesses was one of the reasons I started https://osmapp.org in 2017, I think it works decently, but I never got to the marketing part :D
zbycz
·3 bulan yang lalu·discuss
until someone starts a botnet making your S3 invoice to $10k. Pay per usage is always a liability.

It is horrendous that aws doesnt allow any usage limits.
zbycz
·5 bulan yang lalu·discuss
We can have spam filters for emails without any identity verifications. It is hard, but it should be possible for IM as well, right?
zbycz
·5 bulan yang lalu·discuss
Thanks for your comment, I assumed that Beeper uses the DMA API [1], but I couldn't find if they really do, or they are just faking requests "like from official app". It seems the latter is true since it shows my chat history and DMA does not include that.

[1] https://engineering.fb.com/2024/03/06/security/whatsapp-mess...
zbycz
·5 bulan yang lalu·discuss
You may try Beeper app - it finaly has got the "secure mode" with on-device accounts. So, you can login to messenger from your phone (thanks to EU Digital Markets Acts), and your phone will relay it up encrypted to the beeper's matrix server.

On your desktop you can just connect with any matrix client (or beeper electron app) and effectively use your phone as a proxy to Messenger/WhatsApp/etc.

Only downside is missing audio/video calling (should be enforced in 2028).
zbycz
·7 bulan yang lalu·discuss
I checked, and yes - the field "create_time" is available both for coversation and for each message. The payload looks the same as the exported JSON.

Look for this API call in Dev Tools: https://chatgpt.com/backend-api/conversation/<uuid>
zbycz
·7 bulan yang lalu·discuss
If you download a Data export, the timestamps are there for every conversation, and often for messages as well.

The html file is just a big JSON with some JS rendering, so I wrote this bash script which adds the timestamp before the conversation title:

  sed -i 's|"<h4>" + conversation.title + "</h4>"|"<h4>" + new Date(conversation.create_time*1000).toISOString().slice(0, 10) + " @ " + conversation.title + "</h4>"|' chat.html
zbycz
·9 bulan yang lalu·discuss
Wow! Definitely will use, when enforcing new eslint rules. Thanks for sharing this, i just love git :)