this post was submitted on 16 Aug 2024
0 points (50.0% liked)

Programming

16975 readers
1288 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 1 year ago
MODERATORS
 

Today I had a little aha moment. If anyone asked me yesterday about AI tools integrated into their editor, I would say its a bad idea. Ask me today, I would still say its bad idea. :D Because I don't want to rely on AI tools and get too comfortable with it. Especially if they are from big companies and communicate through internet. This is a nogo to me.

But since weeks I am playing around with offline AI tools and models I can download and execute locally on my low end gaming PC. Mostly for playing with silly questions and such. It's not integrated in any other software, other than the dedicated application: GPT4All (no it has nothing to do with ChatGPT)

I'm working on a small GUI application in Rust and still figure out stuff. I'm not good at it and there was a point where I had to convert a function into an async variant. After researching and trying stuff, reading documentation I could not solve it. Then I asked the AI. While the output was not functioning out of the box, it helped me finding the right puzzle peaces. To be honest I don't understand everything yet and I know this is bad. It would be really bad if this was a work for a company, but its a learning project.

Anyone else not liking AI, but taking help from it? I am still absolutely against integrated AI tools that also require an online connection to the servers of companies. Edit: Here the before and after (BTW the code block in beehaw is broken, as certain characters are automatically translated into < and & for lower than and ampersand characters respectively.)

From:

    pub fn collect(&self, max_depth: u8, ext: Option<&str>) -> Files {
        let mut files = Files::new(&self.dir);

        for entry in WalkDir::new(&self.dir).max_depth(max_depth.into()) {
            let Ok(entry) = entry else { continue };
            let path = PathBuf::from(entry.path().display().to_string());
            if ext.is_none() || path.extension().unwrap_or_default() == ext.unwrap() {
                files.paths.push(path);
            }
        }
        files.paths.sort_by_key(|a| a.name_as_string());

        files
    }

To:

    pub async fn collect(&self, max_depth: u8, ext: Option<&str>) -> Result {
        let mut files = Files::new(&self.dir);

        let walkdir = WalkDir::new(&self.dir);
        let mut walker =
            match tokio::task::spawn_blocking(move || -> Result {
                Ok(walkdir)
            })
            .await
            {
                Ok(walker) => walker?,
                Err(_) => return Err(anyhow::anyhow!("Failed to spawn blocking task")),
            };

        while let Some(entry) = walker.next().await {
            match entry {
                Ok(entry) if entry.path().is_file() => {
                    let path = PathBuf::from(entry.path().display().to_string());
                    if ext.is_none() || path.extension().unwrap_or_default() == ext.unwrap() {
                        files.paths.push(path);
                    }
                }
                _ => continue,
            }
        }

        files.paths.sort_by_key(|a| a.name_as_string());

        Ok(files)
    }
top 11 comments
sorted by: hot top controversial new old
[–] [email protected] 1 points 1 month ago (1 children)

Post the original code to [email protected] and point to where you got stock, because that AI output is nonsensical to the point where I'm not sure what excited you about it. A self-contained example would be ideal, otherwise, include the crates you're using (or the use statements).

[–] [email protected] -1 points 1 month ago

Why is it nonsenical? It works and compiles and the output from my code and the new async code is the same. So I don't know what the problem here is.

[–] [email protected] -1 points 1 month ago

I’m shocked and appalled! Isn’t the whole point of using Rust to prove you’re a better developer by using an extra hard language? At least that’s what I like about it.

I’m kidding, of course. Whoever has never copied and pasted code they didn’t understand from Stack Overflow can go ahead and complain about using a local LLVM.

Ultimately, what makes a good developer includes understanding and being really good with the tools they use, but the biggest impact comes from identifying problems and asking the right questions to solve them.

[–] [email protected] -1 points 1 month ago

I love using ai to assist with programming.

I often use it for boring stuff like mass refactoring or generating regex or SQL.

I wouldn't use it to write big chunks of code, more to figure out how to do things.

It's like an interactive docs that I can ask follow up questions to.

[–] [email protected] -1 points 1 month ago

I sporadically use it. Sometimes it can pin point the specific algorithm I need that I didn't know about.

[–] [email protected] -1 points 1 month ago

I don't mind AI for coding assistance. Sometimes I am writing a function and it suggests basically what I was going to write anyways, then I just have to hit tab and move to the next section. Sometimes I use it to add comment descriptions to my functions so I don't have to type it manually. Sometimes I use it to spitball ideas.

I think the trick is to use it as a tool to make yourself better, not to do the work for you.

[–] [email protected] -1 points 1 month ago

oobabooga is better than GPT4ALL. The software is better. You load gguf files using llama.cpp that is integrated with it.

[–] [email protected] -1 points 1 month ago

It's just another tool. For me personally, at worst it's like advanced rubber ducky programming. As long as you have the discipline to not use code that you don't understand you'll be fine, but that goes for any resources, LLM or not.

[–] [email protected] -1 points 1 month ago* (last edited 1 month ago) (2 children)

AI is surprisingly helpful with providing a starting point. When you want a helloworld app, an example of how to use some part of a crate, or a code snippet showing how to take what you have and do something unusual with it, AI is super useful.

I would love to be able to get the same quality of AI locally as I do from ChatGPT. If that's possible, please let me know. I've got two 3090s ready to go.

But for now, I'm just enjoying the fact that ChatGPT is free. Once they put up a pay wall, it's back to suffering (or maybe/probably trying out some open-source models).

[–] [email protected] 0 points 1 month ago

I agree. Even when copilot gets something completely wrong it's usually easier to think "no that's wrong, it should be this" than "ok the first line of code should be...".

It completely solves the "blank page" problem.

[–] [email protected] -1 points 1 month ago* (last edited 1 month ago)

gemma2 27b IT is reasonably good for computer related things. It's a hugging face gguf model which is compatible with koboldcpp which means multi gpu acceleration.