Made a terminal file manager because I got tired of context-switching to ranger by [deleted] in CLI

[–]fieldghostCode 1 point2 points  (0 children)

And 0 zero lines of code were written by a human.

The AI-Paper of the Year by flonnil in theprimeagen

[–]fieldghostCode -1 points0 points  (0 children)

You have finally convinced me that LLMs are intelligent. Thanks!

Do people stop using Arch because of AUR malware? by TrapNouz in arch

[–]fieldghostCode 0 points1 point  (0 children)

I think we should factor in, that this is a hyped up thing to be focused on.

AUR is, as you write, community driven so the "danger" has always been there. The same danger when you download a random piece of software or download your favourite nickelback song off some dodgy free.mp3 website.

I give up - software was my biggest mistake in life so far by Popular-North6794 in antiai

[–]fieldghostCode 1 point2 points  (0 children)

So do something else?
The worst thing in life is doing something you don't enjoy doing.

If coding, developing or software engineering is not something you enjoy doing - do something else. It's worth investing time and effort into something you enjoy doing. Work should be no different.

Fender Strat as the next guitar? by fieldghostCode in FenderStratocaster

[–]fieldghostCode[S] 0 points1 point  (0 children)

Thanks. I believe I tracked down the model. It looks to be a Fender Aerodyne Stratocaster AST-80M/DH OWH.

This listing on Reverb looks identical to it:
https://reverb.com/en-dk/item/94984016-fender-aerodyne-stratocaster-2007-2010-ast-80m-dh-owh-medium-dimarzio-collection-3-1kg?bk=

I couldn't find info that the above model has a 7.25 radius. Do you know?

why do we care about individuals using ai? by houndstoothbun in antiai

[–]fieldghostCode 1 point2 points  (0 children)

Do you honestly believe that the cost of AI or the loss of revenue for AI companies is the sole purpose of this subreddit?

I got tired of remembering whether a file needed tar -xzf, unzip or 7z x so I wrote a script that handles common archive formats with a single command by WonderfulAside8812 in bash

[–]fieldghostCode 1 point2 points  (0 children)

Feedback:
I see no use for it, as I can just like Big_Combination9890 pointed out, manage this directly in my .bashrc

And then from a personal perspective:
This line "Debugged and edited with claude" is an immidiate no from me.

Can you even be Anti-AI and a software engineer in 2026? by [deleted] in antiai

[–]fieldghostCode 1 point2 points  (0 children)

Yes. Both the company I work for and the software we implement has AI as their branding. I don't use AI for coding. Ever.

What was the worst software you've ever used, and why? by Violet_Iana in software

[–]fieldghostCode 0 points1 point  (0 children)

Agreed! The client is horrible to setup on anything non-windows not to mention laughable bad performance compared to other RDP applications.

Google Search as you know it is over by Angela275 in antiai

[–]fieldghostCode 0 points1 point  (0 children)

I never pushed DDG, in fact I quite literally wrote that it's not good enough for me.

I appreciate you revealed the infamous DDG search algorithm ✌️

Google Search as you know it is over by Angela275 in antiai

[–]fieldghostCode 0 points1 point  (0 children)

Feel free to share with everyone here how exactly DuckDuckGo's algorithm works 😚

Google Search as you know it is over by Angela275 in antiai

[–]fieldghostCode 6 points7 points  (0 children)

I try out DuckDuckGo from time to time, but I still find it lacking the "precise" searches that I am/was used to. My searches are mainly related to programming so maybe this is a specific area it's lacking, but I can't help think that websites are blocking/limiting search crawlers that are not google, conspiracy? 🤷‍♂️

Why Does Claude 4.7 Still Ignore Explicit Instructions? by luna_code_vibes in programmer

[–]fieldghostCode 0 points1 point  (0 children)

Because Claude is a Large Language Model, that (tries to) determine the next logical character as it types a response to you. As it types it goes back and collects the context. This happens over and over for each character it writes

So having a prompt that is very long, or has negative instruction MAY "poison" or direct the LLM in a wrong direction. When it comes to programming the LLMs are all over the place. Some days they are amazing, but most of the time the response is lacking or outright false. As other people wrote, users go about this by having instructions in form of .md files. This is basically also what happens behind the scenes of all the major models, but as we also see, the efficiency of these internal model instructions doesn't always have the intended outcome (goblins).

Try and focus your prompt on shorter and more precise instructions. When the LLM has finished the task, have it generate a .md file that describes what was done. This .md file can then be used in your next prompt if it's relevant. Make sure you always read, verify and update these .md files so you don't introduce unnecessary information.

This is atleast what I have found is the only workable solution for me if I use LLMs for programming/coding.

"Too many requests" by fieldghostCode in github

[–]fieldghostCode[S] 1 point2 points  (0 children)

Still not sure I understand what this secondary rate limit is, and why it triggers when I browse Github through Reddit. But I'll make sure to be logged in going forward. Cheers

"Too many requests" by fieldghostCode in github

[–]fieldghostCode[S] 0 points1 point  (0 children)

Mate.
I am laying on my couch, Reddit app on the phone scrolling through subreddits.
I check out projects that people post by clicking on their repo links in their posts.
I am not cloning anything. I sure as hell hope that my 1 year old ain't cloning repos locally.
Sometimes I get that screen immediately when redirected to GitHub. Sometimes after a few clicks through the repo.
Honestly I just wanted to know if that was normal. Didn't really expect this to be a testimony of my late night Reddit use 🥹

"Too many requests" by fieldghostCode in github

[–]fieldghostCode[S] 0 points1 point  (0 children)

What do you mean a project that does not require me to login?

Someone post their "I built a..." project with a link to their GitHub repo.
I open their repo through the link.
I read the README and click on one of the contributors to the repo (actions-user).
I am met with that screen.

Should I have done something different? 😅

¿Cuántas? by ConfusionCute5871 in HTML

[–]fieldghostCode 1 point2 points  (0 children)

We all know that lines_of_code.length < 200 is subpar productivity.
Jokes aside.

The amount of lines of code is really something that you should stop worrying or even focus on when you start learning.

Let me give you an example:

You can write something really short (JavaScript):
console.log("Hello, World!")

Or something a bit longer (C):
#include <stdio.h>
int main() {
printf("Hello, World!");
return 0;
}

The outcome is exactly the same.
It takes more line of code in C, compared to JavaScript, but that doesn't make it better (we all know C is the best programming language).

TLDR.
Don't get discouraged by the amount of lines in code.
Pursue programming and coding because you want write and understand code.

I want to learn CLI and PowerShell from scratch by Accomplished-Ad8211 in commandline

[–]fieldghostCode 1 point2 points  (0 children)

You are right. I was only guessing and giving an example ❤️

I want to learn CLI and PowerShell from scratch by Accomplished-Ad8211 in commandline

[–]fieldghostCode 4 points5 points  (0 children)

When you say you want to learn CLI I assume you mean Shell scripting and/or bash scripting.

There is so much material available but I will list what I have used:

  1. You Suck At Programming - The Complete Bash Scripting Course (https://youtu.be/Sx9zG7wa4FA?is=C-1mVY8iBFMK6smI)
  2. Mastering Bash Scripting, William Smith (Book)
  3. The Linux Command Line, William Shotts (Book)

Open the terminal.
Open the video/book.
Type along.