• 0 Posts
  • 80 Comments
Joined 4 years ago
cake
Cake day: March 23rd, 2020

help-circle











  • OsrsNeedsF2P@lemmy.mltolinuxmemes@lemmy.worldFlatpak be like...
    link
    fedilink
    arrow-up
    14
    arrow-down
    1
    ·
    4 months ago

    Dependency hell happens when you try to go against your distro and install something. Someone who used Linux for 20 years probably found a distro that works well for them, hence the no dependency hell.

    Or they just stopped tinkering. Either case is solvable by Nix/Flatpak/Bedrock/20+ other solutions






  • OsrsNeedsF2P@lemmy.mltolinuxmemes@lemmy.worldditch discord!
    link
    fedilink
    arrow-up
    4
    ·
    edit-2
    5 months ago

    If you explicitly add site:ourforum or quotes around large blocks of text, our forum does show up, but to appear anywhere near the front page naturally is a full-time job and not something we have the resources to dedicate.

    I think, unfortunately, things like GitHub discussions are the best place for users to find things off Google, but at the end of the day you’re still trusting a profit driven proprietary company




  • OsrsNeedsF2P@lemmy.mltoProgrammer Humor@programming.devTough break, kid...
    link
    fedilink
    arrow-up
    15
    arrow-down
    22
    ·
    edit-2
    5 months ago

    Thinking AI is an upgrade from pencil to pen gives the impression that you spent zero effort incorporating it in your workflow, but still thinking you saw the whole payoff. Feels like watching my Dad using Eclipse for 20 years but never learning anything more complicated than having multiple tabs.

    For anyone who wants to augment their coding ability, I recommend reading how GPT (and other LLMs) work: https://writings.stephenwolfram.com/2023/02/what-is-chatgpt-doing-and-why-does-it-work/

    With that in mind, work on your prompting skills and give it a shot. Here are some things I’ve had immense success using GPT for:

    • Refactoring code
    • Turning code “pure” so it can be unit-testable
    • Transpiling code between languages
    • Slapping together frontends and backends in frameworks I’m only somewhat familiar with in days instead of weeks

    I know in advance someone will tunnel vision on that last point and say “this is why AI bad”, so I will kindly remind you the alternative is doing the same thing by hand… In weeks instead of days. No, you don’t learn significantly more doing it by hand (in fact when accounting for speed, I would argue you learn less).

    In general, the biggest tip I have for using LLM models is 1. They’re only as smart as you are. Get them to do simple tasks that are time consuming but you can easily verify; 2. They forget and hallucinate a lot. Do not give them more than 100 lines of code per chat session if you require high reliability.

    Things I’ve had immense success using Copilot for (although I cancelled my Copilot subscription last year, I’m going to switch to this when it comes out: https://github.com/carlrobertoh/CodeGPT/pull/333)

    • Adding tonnes of unit tests
    • Making helper functions instantly
    • Basically anything autocomplete does, but on steroids

    One thing I’m not getting into on this comment is licensing/morals, because it’s not relevant to the OP. If you have any questions/debate for this info though, I’ll read and reply in the morning.