HackerTrans
TopNewTrendsCommentsPastAskShowJobs

Nilithus

no profile record

comments

Nilithus
·قبل 4 أشهر·discuss
I don't want to be like "that guy" or anything but there is definitely a racoon in there so like 14,332 cats and a racoon.
Nilithus
·قبل 10 أشهر·discuss
I switched from packer to lazy after I noticed the maintainer of packer stopped using packer in his neovim config. Also I believe he has now officially marked it as unmaintained and recommends lazy or pckr
Nilithus
·قبل 12 شهرًا·discuss
“If someone does not have the basic tech literacy to install arch”

I think there is a big jump from the tech literacy to install Arch and the tech literacy to maintain an Arch system over time. These derivatives feel like they are there to help solve the latter.
Nilithus
·قبل 12 شهرًا·discuss
I don’t think that’s really fair. They are highlighting some pretty serious security flaws in MCP tools that are allowed to do some pretty privileged things.

They don’t even mention their product till the very last section. Overall think it’s an excellent blog post.
Nilithus
·السنة الماضية·discuss
I believe they have already started this effort. https://elixir-lang.org/blog/2023/06/22/type-system-updates-...
Nilithus
·قبل سنتين·discuss
I'm pretty sure you could use something like https://code.visualstudio.com/docs/editor/variables-referenc... to allow you to copy and paste your args into a user prompt when you initiate the debugger so you don't have to convert them to json first for each command you want.
Nilithus
·قبل سنتين·discuss
"usually it demands 'libDickSmasher v2.0 or higher'"

Legit made me chuckle
Nilithus
·قبل سنتين·discuss
This is insecure code that is susceptible to SQL injection. Check out https://phptherightway.com/#databases and read the PDO section. It gives almost your exact code as an example of what not to do. Look at using PDO bound parameters. You never want to concat strings together to create sql. Especially with strings that come from untrusted sources.
Nilithus
·قبل سنتين·discuss
I found Amazon's Builders Library to have a very insightful list of how to handle building multi tenant queue systems https://aws.amazon.com/builders-library/avoiding-insurmounta...

I think one of the big tools is Shuffle Sharding. The article talks about standard sharding by itself as not being enough to provide robustness in multitenant queues. But Shuffle Sharding I.E. assigning users to virtual groups of underlying queues and enqueueing to the queue with the smallest size gets you pretty far. It can limit throughput for individual users but implementing some simple work stealing logic on the consumer helps make sure you keep your throughput up.
Nilithus
·قبل 3 سنوات·discuss
VSCode have a blog article talking out their move to using Piece Table as their main data structure. https://code.visualstudio.com/blogs/2018/03/23/text-buffer-r...

Has some good visualizations as well.
Nilithus
·قبل 3 سنوات·discuss
I guess there must be a largish market for this since AWS introduced Outpost to provide the "cloud" to onprem industries. I feel like this is competing with that market.

Since many of those use cases probably already run extensive on-prem infrastructure this could appeal to them. AWS outpost talks about industries like healthcare, telecom, media and entertainment, manufacturing, or highly regulated spaces like financial services. I've heard of media companies that process through things like IMAX cameras that have just tons of TB's of data sometimes just for 5 minutes worth of footage. That would simply be too cost prohibitive - in bandwidth alone - to try and move around in the cloud and you don't want to have to wait for things like AWS snowball or whatever.

While I think the space is "niche" those niche spaces are not small. Big companies with big budgets.
Nilithus
·قبل 3 سنوات·discuss
Perhaps this changes the calculus. If you don't need as much of an ops team to go private cloud. Then you might not need to be as large before it makes sense.
Nilithus
·قبل 4 سنوات·discuss
The VSCode Blog has a great article on Piece Tables talking about their adoption of that data structure https://code.visualstudio.com/blogs/2018/03/23/text-buffer-r...