HackerTrans
TopNewTrendsCommentsPastAskShowJobs

tuan

209 karmajoined 14 yıl önce

Submissions

We Saw What AI Data Centers Don't Want You to See [video]

youtube.com
2 points·by tuan·geçen ay·0 comments

Fewer H-1B visas did not mean more employment for natives (2017)

nber.org
30 points·by tuan·10 ay önce·44 comments

comments

tuan
·2 ay önce·discuss
Does Anthropic publish postmortems for incidents like these?
tuan
·3 ay önce·discuss
Since we renamed DOD to DOW, should the Defense budget be renamed too?
tuan
·3 ay önce·discuss
I thought he was a PM.
tuan
·4 ay önce·discuss
There's another camp that don't care about the craft AND also don't care about the product. This camp, wielding power of AI, is making life worse for the other two camps. I've been getting so many code reviews that are generated by AI, but the author does not even has the decency to self review the generated code before they send out pull requests. It feels like an insult sometimes. For example, unit tests that basically assert if `a = 1` after setting a to 1.

Every PR now has lots of unit tests, but they test the implementation details, not the spec. So now every change that breaks their implementation details causes false positive test failures. This creates a self enforcing negative loop. Every PR now comes with tons of unit test fixes.

People start responding to PR comments with something along the line of: I ask AI but it was not able to solve the problem, if you have a solution, LMK. Or another variant I see often is: I think this is wrong, but AI says this is fine, so I'll leave it as is.

I see craft lovers or product people using AI effectively. I use AI daily too. But the above camp is making my day to day job sometimes unbearable.
tuan
·4 ay önce·discuss
> absorb lessons

That maybe correct for some lessons. Many lessons you have to learn the hard way to really absorb them.
tuan
·5 ay önce·discuss
they probably mean GUI app like GVim and MacVim
tuan
·6 ay önce·discuss
if someone really want to have single keystroke, there's always F<number> key that they can map to their frequently used movements, such as last edit, next function, special marker (such as `m`), etc.
tuan
·6 ay önce·discuss
I can see how that could work depends on the setup and the context. For example: People might use `. to jump to the last edit, or to a mark they set manually. Or simply `ciq` to edit inside the next quote without any manual cursor movements. I see people use plugin like harpoon to jump to their favorite location quickly. If you don't know about such setup, seeing people type <leader>1 to jump not just within a file, but across files, seems magical.
tuan
·4 yıl önce·discuss
Something about implementing a workflow process that involves collecting inputs from multiple users is really hard. Epic's system basically collects inputs from schedulers, front desks, nurses, technicians, doctors, billings, etc. Each step of the process depends on previous step. If step X fails, but the result of the failure can only be recognized at step X+10, it will probably throw the workflow engine into chaos ...