HackerTrans
TopNewTrendsCommentsPastAskShowJobs

dent9

no profile record

comments

dent9
·4 เดือนที่ผ่านมา·discuss
This post was written by ai
dent9
·4 เดือนที่ผ่านมา·discuss
You should be using the email address "[email protected]" or similar

There's never been an obligation to use a real email address for git
dent9
·4 เดือนที่ผ่านมา·discuss
Amazon did this to me. Their recruiters started hounding me at an email address that I only ever used to sign git commits on some repos used on GitHub. When I asked them how they got my email address they said "it was in [our] database"
dent9
·5 เดือนที่ผ่านมา·discuss
True story; I wanted to make a tiny update to our CI / CD to upload copies of some artifacts to S3. It took 1min for the LLM to remind me of the correct syntax in aws cli to do the upload and the syntax to plug it into our GitHub Actions. It then took me the next 3 hours to figure out which IAMs needed to be updated in order to allow the upload before it was revealed that Actually uploading to the S3 requires the company IT to adjust bucket policies and this requires filing a ticket with IT and waiting 1-5 business days for a response then potentially having a call with them to discuss the change and justify why we need it. So now it's four days later and I still can't push to S3.

AI reduced this from a 5-day process to a 4.9-day process
dent9
·5 เดือนที่ผ่านมา·discuss
It's ironic to me because I'm the Luddite who refuses to adopt agentic AI and still using only the Chat interface with Codex and Claude inside the VS Code extensions to help me with both work projects and personal projects. And I've had amazing results with only this. "Look at this codebase and tell me the best ways to integrate some new feature", "look at this source code file and tell me what's wrong with it", "show me how to implement this thing I want". Then I copy and adapt the results as needed and integrate it with the rest of my work. This has worked great and I've shipped a ton of projects much faster and easier. Clearly the AI could have written a lot of it itself but I'm not sure I'm really lacking in any benefits with this method. So this makes the whole agentic push especially seem like some kinda over hyped gimmick.
dent9
·5 เดือนที่ผ่านมา·discuss
> I am extremely out of touch with anti-LLM arguments

Wow I know that feel.

I'm here using LLM for daily work and even hobbies in very conservative manners and didn't think much of it.

Now when I have casual discussions with other folks, especially non-tech people, the visceral hatred I get for even mentioning AI and the fact that I use it is insane. There's like an entire sub group of people who are so out of touch with these tools they think they're the devil like the anti-GMO crazies and the PETA psychos.
dent9
·6 เดือนที่ผ่านมา·discuss
> When you say “LLMs did not fully solve this problem” some people tend to respond with “you’re holding it wrong!” > > I think they’re sometimes right! Interacting with LLMs is a new skill, and it feels pretty weird if you’re used to writing software like it’s 2020. A more talented user of LLMs may have trivially solved this problem.

So one thing I only recently figured out is that using ChatGPT via the web browser chat is massively different from using OpenAI's code-focused Codex model / interface. Once I switched to using Codex (via the VS Code extension + my own ChatGPT subscription) the quality of answers I got improved massively.

So if you're trying to use LLM to help with debug, make sure you're using the right model!! There are apparently massive differences between models of the same generation from the same company
dent9
·6 เดือนที่ผ่านมา·discuss
I appreciate the author's work in doing this and writing it all up so nicely. However every time I see someone doing this, I cannot help but wonder why they are not just using SLURM + Nextflow. SLURM can easily cluster the separate computers as worker nodes, and Nextflow can orchestrate the submission of batch jobs to SLURM in a managed pipeline of tasks. The individual tasks to submit to SLURM would be the users's own R scripts (or any script they have). Combine this with Docker containers to execute on the nodes to manage dependencies needed for task execution. And possibly Ansible for the management of the nodes themselves to install the SLURM daemons and packages etc.. Taken together this creates a FAR more portable and system-agnostic and language-agnostic data analysis workflow that can seamlessly scale over as many nodes and data sets as you can shove into it. This is a LOT better than trying to write all this code in R itself that will do the communication and data passing between nodes directly. Its not clear to me that the author actually needs anything like that, and whats worse, I have seen other authors write exactly that in R and end up re-inventing the wheel of implementing parallel compute tasks (in R). Its really not that complicated. 1) write R script that takes a chunk of your data as input, processes it, writes output to some file, 2) use a workflow manager to pass in chunks up the data to discrete parallel task instances of your script / program and submit the tasks as jobs to 3) a hardware-agnostic job scheduler running on your local hardware and/or cloud resources. This is basically the backbone of HPC but it seems like a lot of people "forget" about the 'job scheduler' and 'workflow manager' parts and jump straight to glueing data-analysis code to hardware. Also important to note that most all robust workflow managers such as Nextflow also already include the parts such as "report task completion", "collect task success / failure logs", "report task CPU / memory resource usages", etc.. So that you, the end user, only need to write the parts that implement your data analysis.
dent9
·6 เดือนที่ผ่านมา·discuss
Keep doing tech work but work for more meaningful organizations. Look into STEM and science and health fields that need help with their technology. Shifting your career away from tech is a massive mistake. You need to shop your skills to organizations that are more meaningful to you. Non-tech science and health companies and orgs won't pay as well as pure tech or other fields but you get the satisfaction of knowing that your work changes the world for a positive benefit and possibly saves lives
dent9
·6 เดือนที่ผ่านมา·discuss
This authors problem isn't GitHub it's the fact that they used Rust when they should have used Go. Never would have had this issue
dent9
·6 เดือนที่ผ่านมา·discuss
Adderall XR + to-do lists

For work purposes I keep hand written To Do lists that I re-write every week or so

This is in addition to the teams Jira tickets and Scrum etc

There is no "switching off" your just f-ed
dent9
·6 เดือนที่ผ่านมา·discuss
It's always extremely weird to me when people have to make this distinction because I was under the impression that ALL Adderall prescriptions are for the XR extended release which comes in capsules full of small beads of medication. No one should be taking Adderall IR instant release tablets. Those things have almost no reason to exist. I really don't understand who is taking those things and where people are getting the impression that IR tablets are a normal Adderall formulation. "Long acting" Adderall has been the norm for decades now and I haven't even seen or heard of anyone taking IR tablets since like the early 2000's
dent9
·6 เดือนที่ผ่านมา·discuss
Using LLM for programming work is a skill that takes practice and sometimes a little luck, just like Google searching for help with programming work.

It takes practice to figure out which things the LLM handles well and how best to present your problems to the LLM to get a good result.

It take luck that the specific things you're trying to get results for are things the LLM actually can handle well.
dent9
·6 เดือนที่ผ่านมา·discuss
Gotta use Scroll Reverser unfortunately. Sometimes even that breaks though. Sad
dent9
·6 เดือนที่ผ่านมา·discuss
This is a fake issue. You should just be using window snapping which finally is included directly in the os
dent9
·6 เดือนที่ผ่านมา·discuss
> I'm sure AI can easily get to the 99%, but does it help with the rest?

Yes the AI can help with 100% is it. But the operator of the AI needs to be able to articulate this to the AI .

I've been in this position, where I had no choice but to use AI to write code to fix bugs in another party's codebase, then PR the changes back to the codebase owners. In this case it was vendor software that we rely on which the vendor hadn't fixed critical bugs in yet. And exactly as you described, my PR ultimately got rejected because even though it fixed the bugs in the immediate sense, it presented other issues due to not integrating with the external frameworks the vendor used for their dev processes. At which point it was just easier for the vendor to fix the software their way instead of accept my PR. But the point is that I could have made the PR correct in the first place, if I as the AI operator had the knowledge needed to articulate these more detailed and nuanced requirements to the AI. Since I didn't have this information then the AI generated code that worked but didn't meet the vendors spec. This type of situation is incredibly easy to fall into and is a good example of why you still need a human at the wheel on projects to set the guidance but you don't necessarily need the human to be writing every line of code.

I don't like the situation much but this is the reality of it. We're basically just code reviewers for AI now
dent9
·6 เดือนที่ผ่านมา·discuss
> Go should have similar difficulties with cross compilation

It doesn't. Go code can be cross compiled for any OS and any CPU arch from any supported system. And it comes out of the box that way. You don't have to go out of your way to install or configure anything extra to do it.
dent9
·6 เดือนที่ผ่านมา·discuss
This is such a big deal and I wish more people talked about it in these types of blog posts.

I used to be a Python programmer and there were two things that destroyed every project;

- managing Python dependencies

- inability to reason about the input and output types for functions and inability to enforce it ; in Python any function can accept any input value of any type and can return any type of value of any type.

These issues are not too bad if it's a small project and you're the sole developer. But as projects get larger and require multiple developers, it turns into a mess quickly.

Go solved all these issues. Makes deployment so much easier. In all the projects I've done I estimate that more than half have zero dependencies outside of the standard library. And unlike Python, you don't have to "install" Go or it's libraries on the server you plan to run your program on. Fully static self contained executable binary with zero external files needed is amazing, and the fact that you can cross compile for any OS+ CPU arch out of the box on any supported system is a miracle.

The issues described by the original post seem like small potatoes compared to the benefits I've gotten by shifting from Python over to Go
dent9
·6 เดือนที่ผ่านมา·discuss
I'm an og Pebble fan, I owned every one of the originals, but I'm PISSED because last year they ran a Kickstarter for the recently released Pebble Time 2 and Pebble 2 Duo; I spent $300+ to get both even though I'm not really that thrilled about them I just wanted to support the project. Now after those two have started shipping and I just got the 2 Duo they announce THIS which is way better! Wtf why didn't they tell us in the beginning that they were planning the Round 2? I would have just held off and only ordered that instead. Feels like I got scammed
dent9
·6 เดือนที่ผ่านมา·discuss
before long we will all just be sitting in cafés alone staring at each other alone and together we will all just take in the experience of being alone with each other in a café