Viewing profile — itroot
itroot
HN member- Joined
- Fri, Jan 31, 2014, 8:04 AM UTC
- HN karma
- 150
- Public activity
- 36 items
- HN profile
- View on Hacker News ↗
About itroot
Recent public activity
-
comment
Comment #46144551
Yeah, I see it as a radical anti-establisment resource. I would not call it a complete nonsence though, for me it's a place where you can "get" thinking of folks who are opposing "…
-
comment
Comment #46144212
I'm from Russia (currently in Moscow), and I can read your comment just fine without VPN. BBC won't open... which is fine, as I jump straight to comments as many do here :))) . Als…
-
comment
Comment #37648267
I think you can just ask for it. IMO it's better to specify more what kind of mentorship do you need. I have experience in mentorship, and now I'm mentoring a FE guy who wants to m…
- story
-
comment
Comment #26940997
It's a complex question. I had experience of working with ~60petabytish system back in 2016, and there a lot of things to cover (not only storage): * network access - do you have d…
-
comment
Comment #24928804
I also do not want to push... I just want to play with that robot by myself, and see if kid will be interested to join. It's just fun thing to do!
-
comment
Comment #24928383
:-) it will be nice from some point of view...
-
story
Ask HN: Best programmable robot for a child with SDK?
I want to show my kids what you can achieve with software development, and I think dealing with some physical thing that is controlled by your code is incredible fun - you are gett…
-
comment
Comment #24357006
Guy from Russia here. Not an expert, but I feel the pain when my country looks so negative in the news. First, I wish Alexey fast recovery. Second, Alexey wasn't a popular politic …
-
comment
Comment #24259891
You can have several clients. If you do not have long-live write transactions, performance will be fine.
-
comment
Comment #24235137
https://www.sqlite.org/appfileformat.html - it is OK to use sqlite that way! =)
-
comment
Comment #24233394
I recently impletented an extension to sqlite - https://github.com/itroot/sqlite-brotli-compress - that adds ability to compress blobs to sqlite via brotli, and I think it is trivi…
-
comment
Comment #24185269
If you are doing this for analytical things, setup with one database is OK. But, imagine that you a running something on production with sqlite, and database is really big. It is h…
-
comment
Comment #24185035
I think that this applies to all modifying operations - INSERTs, UPDATEs, DELETEs. It's perfectly ok to write to sqlite from different processes in the same time, but to achieve go…
-
comment
Comment #24179757
Yep, that's a great use-case! However on such amounts of data I would recommend to split it to several databases - backup, replication, vacuum will be much easier and better. Doesn…
-
comment
Comment #23963225
Is it go implementation of sqlite3 data format?
- story
-
comment
Comment #23959637
Why single connection? Sqlite in WAL mode will allow to co-exist writer and readers.
-
comment
Comment #23959564
I think there are a lot of places where sqlite can outperform postgres... This is read-heavy and latency-critical apps, where additional hop is costly, for example.
-
comment
Comment #22736255
I made a lot of migrations with MongoDB without downtime with dbs up to 200-300Gb. Most easy way is to support this on your backend side, and then gradually switch data. It is easy…
-
comment
Comment #22576248
Also --reference (or --shared) is a good parameter to speed-up cloning (for build, for example), if you have your repository cached in some other place. I was using it a long time …
-
comment
Comment #22202138
Hey, Michael! I was following you story since your first post two years ago. I just want to say that to succeed you need to sell something. As a software developers we can scale so…
-
comment
Comment #21558788
Hi! This is a great app! Is it works only in US? How do you get actual prices? Is it some kind of scraping, or some other channels? (If is it not a secret) Thanks!
-
comment
Comment #21511698
geogebra is just an aspiring example, I do not have any encounter there. So, kudos to geogebra founders =)))
-
comment
Comment #21460466
Thanks for the feedback, espacially for #2. I really like to see visualisation with feedback loop ( ability to change source code and commit a-la wikipedia) in educational process.…