Viewing profile — nvivo
nvivo
HN member- Joined
- Mon, Dec 15, 2014, 10:02 AM UTC
- HN karma
- 213
- Public activity
- 109 items
- HN profile
- View on Hacker News ↗
About nvivo
No profile information was provided.
Recent public activity
-
comment
Comment #17561510
I know what I see in my apps. Yes, Azure is worse than AWS. AWS has its flaws, but Azure is simply very slow in comparison.
-
comment
Comment #17529533
I must say as a long time windows developer, .net core on linux is much simpler than on windows. I'm moving everything I have from windows to Linux and the experience, simplicity, …
-
comment
Comment #17496668
I completely agree. For some reason they're not 100% ssd and that changes everything. That is the main reason I avoid Azure. Last time I tested (about 8 months ago) I got a new win…
-
comment
Comment #17415347
I find it hard to believe that any decent chipset made in the last decade at least cannot support 32gb of ram. I had a reasonably cheap samsung laptop from 2012 that already did. I…
-
comment
Comment #17152044
Yes, but this is new to mysql 8, which is pretty recent. Also, I always use uuid v4 to explicitly prevent any ordering.
-
comment
Comment #17138887
> It's likely but not guaranteed that n+k was created after n. This is true in mysql if you rollback a transaction, or use a INSERT INTO ... ON DUPLICATE KEY UPDATE. In the first, …
-
comment
Comment #17138844
I ended up reducing the number of clients. In my case I had a thousand servers, and I was able to change the application structure and merge them into a dozen big application serve…
-
comment
Comment #17138780
MySql doesn't have a UUID data type, the UUID() function returns a varchar. The way you store it is mostly preference and driver defaults. The C# driver used to handle binary(16) a…
-
comment
Comment #17136108
I had some real issues with mysql handling more than 2000 connections. Once past that limit, cpu usage increases exponentially with few connections due to context switching. At 300…
-
comment
Comment #17136081
I think it's different. From the docs, this is a one time update to the table. The table itself is not clustered, it's just ordered based on a clustered index, so selects by defaul…
-
comment
Comment #17136017
I use UUIDs in mysql as primary keys in tables with a few million records, and I'm about to migrate a few tables with billions of records from bigint to uuid. Never saw any real pr…
-
comment
Comment #17115542
If you have a small number of requests over a large period, serverless is cheaper (that includes an api that is idle most of the time and peaks at a very high rate occasionally). B…
-
comment
Comment #17114150
I don't have the numbers here, but I'm pretty sure the same idea applies for serverless. If you have a predictable load, you can always find a much cheaper alternative once you pas…
-
comment
Comment #15814379
You're completely right. You can get an amazing server in a very good hosting provider at a fraction of AWS. Really. You can get for $200/month a good server in a good hosting that…
- story
-
comment
Comment #15287179
What is terraform? Read the page, but didn't get exactly what it does.
-
comment
Comment #15200797
Doesn't MS One Drive do that for ages now?
-
comment
Comment #15182320
Please define "very large". When I think large app, I think at least a few hundred endpoints split across tens of thousands of files. How can you have a very large app with a singl…
-
comment
Comment #14887933
I regret publishing some ideas I had as an open source project. Once it got other people's attention I had so much work trying to document, answer issues and maintain the project t…
-
comment
Comment #14887896
That was very pessimistic, but I can see some truth in it.
-
comment
Comment #14855151
EBS optimized VMs looks nice on paper, you can choose the size and pay for your needs only. But the once you start to use the disk in production you see the problems. In short, if …
-
comment
Comment #14855123
Agreed. After a lot of struggles trying to find a good average IOPS on AWS for our database, we just increased disk to 1tb with gp2 and got rid of the problem. It gets 3000 iops/se…
-
comment
Comment #14831386
I work with someone who uses ligatures. Everytime I need to see his screen is a problem, I can never recognize what exactly the characters mean. Yes, you get used to it if you use …
-
comment
Comment #14831351
I work with someone who uses them and I find it impossible to read his screen. Unless you work completely alone, it's a terrible idea.
-
comment
Comment #14797670
rimraf is extremely fast. Started using it to delete large node_modules folders and got used to it.