HackerTrans
トップ新着トレンドコメント過去質問紹介求人

zbycz

62 カルマ登録 3 年前
OpenStreetMap enthusiast, my hobby project is osmapp.org

投稿

Fullstack AI developer in 6 weeks (satire)

xcancel.com
1 ポイント·投稿者 zbycz·4 か月前·0 コメント

Native apps with Tauri, back end with Bun

codeforreal.com
1 ポイント·投稿者 zbycz·5 か月前·0 コメント

Dark Reader - a dark mode extension for all browsers

darkreader.org
2 ポイント·投稿者 zbycz·8 か月前·0 コメント

コメント

zbycz
·5 日前·議論
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 か月前·議論
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 か月前·議論
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 か月前·議論
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 か月前·議論
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 か月前·議論
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 か月前·議論
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 か月前·議論
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 か月前·議論
Wow! Definitely will use, when enforcing new eslint rules. Thanks for sharing this, i just love git :)