HackerTrans
TopNewTrendsCommentsPastAskShowJobs

zeroimpl

no profile record

comments

zeroimpl
·há 11 dias·discuss
So is the official pronunciation of SQLite spelling out the letters then? I’d expect “a” not “an”…
zeroimpl
·mês passado·discuss
Was going to give the same example with chili peppers. Tons of varieties and not exactly interchangeable
zeroimpl
·há 6 meses·discuss
You or the developer could piggy back on “aws configure export-credentials --profile profile-name —-format process” to support any authentication that the CLI supports.
zeroimpl
·há 6 meses·discuss
The AWS APIs are quite stable and usually do exactly one thing. It’s hard to really see much risk. The worst case seems to be that the API returns a new enum value and the code misinterprets it rather than showing an error message.
zeroimpl
·há 7 meses·discuss
I wonder if you could pay them to tweak the messaging about your products. So when a user asks: Is drinking Coke everyday good for my health, it starts saying yes because sugar is vital to our survival.
zeroimpl
·há 8 meses·discuss
Doesn’t that force you to give the Agent some generic code execution environment, or does everybody already do that anyways?
zeroimpl
·há 9 meses·discuss
I couldn’t find a library like this in PHP, but realized for my use case I could easily hack something together. Algorithm is simply:

- trim off all trailing delimiters: },"

- then add on a fixed suffix: "]}

- then try parsing as a standard json. Ignore results if fails to parse.

This works since the schema I’m parsing had a fairly simple structure where everything of interest was at a specific depth in the hierarchy and values were all strings.
zeroimpl
·há 9 meses·discuss
If I’m not mistaken, even JSON couldn’t be parsed by a regex due to the recursive nature of nested objects.

But in general we aren’t trying to parse arbitrary documents, we are trying to parse a document with a somewhat-known schema. In this sense, we can parse them so long as the input matches the schema we implicitly assumed.
zeroimpl
·há 9 meses·discuss
The parent is making a philosophical argument. The exact Hollywood definitions aren’t important since there are far many more job roles in film production compared to software development. If you insist though just replace creator with producer in his original argument and it’s the same - you can produce a movie without doing the acting yourself.
zeroimpl
·há 9 meses·discuss
You kind of missed the “and direct actors to play it out” part. If you did all of that, that’s essentially the creator.
zeroimpl
·há 10 meses·discuss
Naively it seems difficult to decrease the ratio of 1.8x while simultaneously increasing availability. The less duplication, the greater risk of data loss if an AZ goes down? (I thought AWS promises you have a complete independent copy in all 3 AZs though?)

To me though the idea that to read like a single 16MB chunk you need to actually read like 4MB of data from 5 different hard drives and that this is faster is baffling.
zeroimpl
·há 10 meses·discuss
RAID doesn’t exactly make writes faster, it can actually be slower. Depends on if you are using RAID for mirroring or sharding. When you mirror, writes are slower since you have to write to all disks.
zeroimpl
·há 10 meses·discuss
Metrics from the CDN will be wildly inaccurate. Also downloading a video isn’t the same as watching it.
zeroimpl
·há 3 anos·discuss
It’s pretty common for most SQL queries to be reading data that is entirely cached in memory. In these cases, the performance limitations often come from sorts or hash joins.