HackerTrans
TopNewTrendsCommentsPastAskShowJobs

nwmcsween

no profile record

comments

nwmcsween
·الشهر الماضي·discuss
This is like string functions, there are some variants with just crazy SIMD when the mean string length is ~14-20 bytes
nwmcsween
·قبل 4 أشهر·discuss
> Junior and mid-level engineers will now require more senior engineers to sign off any AI-assisted changes, Treadwell added.

Beatings will continue until senior engineers leave?
nwmcsween
·قبل 6 أشهر·discuss
So, there is professional skills and then there is "soft skills" which at many places is a euphemism for political theatre. Nearly everyone I've ever met has professional skills; few can stomach "soft skills"
nwmcsween
·قبل 6 أشهر·discuss
If anyone was around for the dot-com bubble any company internet related or with a web like name was irrationally funded, P/E didn't matter, burn didn't matter, product didn't matter.

AI has all the same markers of a the dot com bubble and eventually venture capital will dry up and many AI companies will go bust with a few remaining that make something useful with an unmet niche.
nwmcsween
·قبل 6 أشهر·discuss
Proper CI/CD for Gitops is actually really hard, how do you alert to failures that doesn't tie you to a specific provider and follows an alert chain? How do you chain dependent Gitops pipelines without coding a giant pipeline mess? How do you do healthchecks in a portable manner on what is deployed without giving the CI/CD runners basically global root?.. and on and on and on, this is all solved by Fluxcd or Argocd.
nwmcsween
·قبل 6 أشهر·discuss
The whole business model of cloud providers is to charge a premium for their ecosystem and to create lock-in by making everything interdependent. A Kubernetes deployment could cost 100k/yr a similar cloud deployment would be ~1m/yr.
nwmcsween
·قبل 7 أشهر·discuss
Have you worked at an organization without RFCs, ADRs, etc? The alternative is really just the wild west and whatever politics or pull a person has. RFCs and ADRs are good in the sense that they document _something_ even if the document is junk it's better than an assumption.

Really though it's the organization (and people) that makes or breaks anything.
nwmcsween
·قبل 7 أشهر·discuss
It's strange organizations want to push users off of a minor $100/yr/user cost when there are many other ways to save money that don't involve making a power user useless for years.
nwmcsween
·قبل 8 أشهر·discuss
Use helm to generate the manifests with a Makefile, use Kustomize to change said manifests for prod, staging, etc.
nwmcsween
·قبل 9 أشهر·discuss
I just want prettier default diagrams in d2, the default theme (and other ones) is a hard sell to orgs where management isn't technical. Something similar to the Obsidian diagram theme
nwmcsween
·قبل 10 أشهر·discuss
I recently looked into this at it looks like the IETF(?) RFC draft for SSH3 was abandoned? It's great this exists but I think the standard needs to be done as well.
nwmcsween
·قبل 10 أشهر·discuss
This would be my personal hell, let me just read n files of AI slop from the CEO.
nwmcsween
·قبل 5 سنوات·discuss
I'll let you in on a little secret, Ubiquity runs openwrt as can be seen by sshing into any uaps
nwmcsween
·قبل 5 سنوات·discuss
Ubiquiti hardware is an great but their software has some of the worst QA I've seen in my life, the forum is basically an continuously ignored issue tracker where I've found dozens of problems I'm having with no solutions (about 200 aps and 150 switches/routers). Ubiquiti software is absolutely abysmal.
nwmcsween
·قبل 10 سنوات·discuss
Hi Alan, a few questions:

1. Do you have any recommended books to read?

2. Why do you think current programming paradigms are bad?

3. What changes to current operating systems need to happen?

[2] My view is you want to pass terse but informative information to a compiler in order for optimizations to take effect and there are three roads programming languages take: abstract away by layering which burdens the programmer to unravel everything (C++), abstract away from the hardware so much that specifics are hidden (most high level languages) or something similar to C.