Viewing profile — burmecia
burmecia
HN member- Joined
- Thu, Dec 07, 2017, 5:10 AM UTC
- HN karma
- 122
- Public activity
- 35 items
- HN profile
- View on Hacker News ↗
About burmecia
Recent public activity
-
comment
Comment #41647652
Thanks, the "Top Comments" is sourced from the "kids" field of the "items" endpoint. As the API docs ( https://github.com/HackerNews/API?tab=readme-ov-file#items ) says, it is "in …
-
comment
Comment #41642363
That's a good idea, will put it on to-do list.
-
comment
Comment #41642358
Thanks for the ideas, heat map looks great! Will also consider add custom queries, it can be quite useful.
-
comment
Comment #41642315
yes, the keywords search is using full-text searching and it is not efficient so I hardcoded them. Will consider switch to use embedding, that will be more efficient and accurate, …
-
story
Show HN: Insights.hn – Real-time Hacker News posts and comments analytics
Hi HN, I'm excited to share a project I've been working on for the past few months: https://insights.hn/ , a real-time analytics platform for Hacker News posts and comments. Why di…
-
comment
Comment #38245508
https://news.ycombinator.com/item?id=26385229
-
comment
Comment #34718396
AFAIK, ChatGPT's training data is until 2021, can it answer questions based on the latest Supabase documents?
-
comment
Comment #34587689
Next.js is more about frontend, but Supabase is more on backend. I cannot see any conflicts of the two, they can work with each other flawlessly.
-
comment
Comment #34007609
You can create a custom function doing all the delta logic and use pg_cron to schedule it to periodically materialize data using FDW.
-
comment
Comment #34007520
| At the end of the day, are these just FDWs that run on top of any Postgres instance? Yes, the FDWs developed by Wrappers can be used on any Postgres db. | Do I have to run Supaba…
-
comment
Comment #34007301
| How well do foreign data wrappers work with Postgres's query planner? You can provide table size estimation to Postgres's query planner in wrappers using `get_rel_size()` functio…
-
comment
Comment #33487887
Another interesting term not mentioned is 'qual', which basically has same meaning as 'restrictions'.
-
comment
Comment #32824755
Our price model based on database usage which includes db egress, so we use it to monitor db egress traffic just for now. We are all db fans and we like put things into db, so all …
-
comment
Comment #32824409
I like old solid tech like Postgres, libpcap and etc. Putting them together with new tech like Rust and pgx is also fascinating.
-
comment
Comment #32824367
That's a nice approach, thanks for sharing with us.
-
comment
Comment #32824039
Yes, you need root to grant capture permission to Postgres, but Postgres doesn't need to run as root. The main purpose is to easily ingest network traffic data into Postgres for fu…
-
comment
Comment #32823980
Hey HN, I have spent some time to search for a tool that can ingest realtime network traffic data to Postgres but have no luck, so I developed this extension and used it internally…
-
story
Show HN: pg_netstat, a Postgres extension to monitor database network traffic
pg_netstat is a Postgres extension to monitor database network traffic. It uses libpcap to capture packets and aggregates at user-specified interval.
-
comment
Comment #22176975
I am building an encrypted file system that runs inside application ( https://github.com/zboxfs/zbox ). It focus on security, privacy and reliability. The interesting part is it ca…
-
comment
Comment #21679466
Totally agree. To make file system crash-proof you really need an ACID compatible underlying storage layer or implement it inside the file system itself. In fact, file system and d…
-
comment
Comment #20969165
I am using Rust building a privacy focused in-app file system ZboxFS( https://github.com/zboxfs/zbox ). The fun part is not only joyfulness Rust bring to me, but also learned a lot…
-
comment
Comment #20398890
Database and filesystem share a lot similarity, but still have their own characteristics. To use database as a back-end for filesystem has some benefits, such as reliable persisten…
-
comment
Comment #20368953
I don't think the encrypt-then-dedup is a safe way to protect data privacy. In this case, identical blocks need to produce same cipher text, this will actually leak your data patte…
-
comment
Comment #20368358
I think any applications need store confidential files on client or remote can adopt it. Web and mobile app might be the best to use it at this moment. As there is transaction cont…
-
comment
Comment #20367877
I think the best approach is never save unencrypted data on cloud. Always encrypted on client first. But by that way we lost dedup capability, so we have to do everything, such as …