HackerTrans
TopNewTrendsCommentsPastAskShowJobs

k_vi

no profile record

Submissions

Show HN: I made Fanchat to talk to celebrities using AI

fanchat.me
1 points·by k_vi·قبل 3 سنوات·1 comments

comments

k_vi
·قبل سنتين·discuss
there are ways around it.

- use coinjoin with something like wasabi wallet(https://wasabiwallet.io/)

- purchase BTC with cash
k_vi
·قبل سنتين·discuss
All software has bugs. This is same as claiming ETH will always get hacked because of the DAO hack.

As far as I can tell there is no fundamental design flaws in Solana that makes it so that it will always go down. There are bugs in the networking stack that are being fixed.

An no, "engineers" don't bring it up. I run a validator and only i'm incentivized to restart it back up because of my stake.
k_vi
·قبل سنتين·discuss
what is the right demand when stripe should be supporting?

Currently there are 93M wallets holding stablecoins with a weekly transfer of 373B[0].

[0] https://app.rwa.xyz/stablecoins
k_vi
·قبل سنتين·discuss
This is no different from ETH, Lido staking has ~30% market share[0].

Stake centralizing != less security. no amount of stake can allow validators to steal your funds, this affects only censorship resistance. So actual validator count is more important than superminority.

In case of USDC I'm assuming Circle should be running their own validator, which is the source of truth.

As someone who has used most networks, Solana has the best experience for transacting USDC.

[0] https://dune.com/hildobby/eth2-staking
k_vi
·قبل سنتين·discuss
same aws region as supabase instance using a single query.
k_vi
·قبل سنتين·discuss
Tried Supabase but currently only use their Auth.

The server to database latency was very high(few hundred ms) whereas Planetscale DB in the same region gives sub 10ms.

Still great option for most projects that can do with these issues.
k_vi
·قبل 3 سنوات·discuss
I've been using turso.tech for my current side project project and happy with it so far. iirc, their sqlite is deployed using fly.io too.
k_vi
·قبل 3 سنوات·discuss
pretty cool to include xkcd for the loading screen :)
k_vi
·قبل 3 سنوات·discuss
I've tried doing this read & updates using Postgrest and row-level-security using Supabase. When it works its an amazing experience but even for semi complex stuff you would still need to use Postgres RPC, which is still another "API" layer. I find writing API using SQL a nigtmare.

Simple queries like this don't work on Postgrest: `update likes set likes = likes + 1;`