cy_narrator

joined 3 years ago
[–] cy_narrator@discuss.tchncs.de 40 points 1 month ago (4 children)

Do you know something? When Chinese copy AI they open source it but your American companies would never do that

[–] cy_narrator@discuss.tchncs.de 3 points 2 months ago

It could be someone copy pasting the entire reddit thread into Claude and asking it to generate a response

[–] cy_narrator@discuss.tchncs.de 54 points 2 months ago (9 children)

"You are right to raise this and we want to address this directly"

Isnt that how Claude Sonnet or Opus writes?

[–] cy_narrator@discuss.tchncs.de 1 points 2 months ago

We get it for $6.5 lol cuz we from poor region

[–] cy_narrator@discuss.tchncs.de 2 points 2 months ago

KDE like a real grown up

[–] cy_narrator@discuss.tchncs.de -2 points 2 months ago

How do you know?

[–] cy_narrator@discuss.tchncs.de -2 points 2 months ago

Where do you define it? Do you define it in CLAUDE.md? That thing gets loaded on every conversation so it should pick up.

Ohh and one thing, you are only supposed to put there something that is absolutely necessary. Things like "This project uses Typescript" is absolutely unnecessary because its something claude will auto infer. Something like "Do not push into master branch" should be there. Also as it gets loaded on every conversation, you should keep it short or else your token usage blows up.

You can have something like "YOU MUST STRICTLY FOLLOW GUIDELINES LISTED IN commit_guidelines.md BEFORE YOU RUN ANY GIT COMMANDS" if you feel your CLAUDE.md is getting too large.

But honestly, you should ask CLAUDE itself to write CLAUDE.md with strict and proper guardrails rather than yourself

[–] cy_narrator@discuss.tchncs.de -4 points 2 months ago (2 children)

Yes because most people who hate AI dont even know the ABC of AI or that they hate AI for a completely wrong reason. I dont like AI everywhere either but if we continue hating this greatest achievement of 21st century so far unconditionally we will never get to the light

[–] cy_narrator@discuss.tchncs.de -3 points 2 months ago (2 children)

First you write your requirements properly in a text or a markdown file. It should properly explain what you want and more importantly what you dont want. Then you give that to AI and dont forget to include "ask any number of clarifying questions before we begin"

Next, be prepared to answer all of its clarifying questions. If you dont know you can ask it to suggest recommended option and pros and cons of each approach

Yeah it will take an entire day. Deal with it. If your requirement is not to just create a few pages of html and css it may take upto half day to a full day but once you are clear. Ask it to write specs and plan and it will.

Then when you are happy with the plan it will start building it. At that point you can step off and let it do its thing

[–] cy_narrator@discuss.tchncs.de -2 points 2 months ago

If you ask it to it will

 

Found this gem. A single well made video in a channel. The Channel owner probably made this channel just to house one video I guess.

I havent watched it all the way through but it seems to have alot of substance. By the looks of it the guy probably has spent atleast a year developing professionally in C++ and is pretty pissed to make that video as a ventfest

See if you cant agree with something he said

 

Link to research paper on Pubmed

There is a huge debate on whether to use head or sed 11q command on your shell scripts, it turns out using the latter can be a sign of dimentia as far as I understand from reading the above research paper. Its in a very reputed journal so it must be true

I can link to a Research paper with that in the title therefore I am right

 

The nicest thing I saw today

 

Employees use AI to craft resumes, Employers use AI to filter them

 

Alot of Viruses or Bacteria remain dorment for some time before unleashing attacks, though for a very short time, these viruses are still spreading from one person to another though various orifice including the one behind into the sewer, and if they monitor the sewer they can catch something like this early in the group of population and hence a preventive measure before the next pandemic

Yes, the above was just in someone's head during pandemic era

But then, they were able to also determine stress level in a given population with a study done in China from sewer water Link to paper in Pubmed

Your shit reflects what you eat, what you feel and underlying health conditions

For now, you are anonymous among the group of people living in the same town so they cannot exactly tell you apart from other's sewer. But what if they find a way to shitprint where they can uniquely identify you from the shit you just dumped? Maby just a way to extract DNA from your shit stuff.

Maby if you are a wistleblower or someone the government would want to keep track of, they may somehow engineer a biological weapon that does not harm but will replicate itself just enough for it to be released from behind and let them know where you are.

Again, this is a far fetched and frankly stupid. But our current surveillance reality was just as stupid a decade ago.

I can imagine data brokers trying to get into the sewers to gather health data for advertisement far in the future. So I guess the only viable alternative would be to build septic tank to fight such surveillance like we currently do with selfhosting to protect our data. Just like we dont let these corporations get the hold of our data willingly, should we let our sewers get into their hand?

 

There is a bug in Youtube's AI filter that is causing some videos to flicker. The content creator have no idea that is happening and no way to opt out. If you have Epilepsy it is recommended that you watch out for these situations

Also as content creators dont know this may be happening, if you find these issues you should try to contact the respective content creator and let them know this is happening on your specific device. Again, its so random it may only happen on some devices

 

This only happens when viewing my profile

Version: 0.2.1

Video on Reddit as Lemmy doesnt allow video upload though I included old reddit

Phone: OnePlus Nord CE 3 Lite 5G with no custom ROM crap

 

Only technology itself. Do not include any human being associated with that technology

 

That s seems to be a bit off

Phone: Oneplus Nord CE Lite

 

Please remove it if unallowed

I see alot of people in here who get mad at AI generated code and I am wondering why. I wrote a couple of bash scripts with the help of chatGPT and if anything, I think its great.

Now, I obviously didnt tell it to write the entire code by itself. That would be a horrible idea, instead, I would ask it questions along the way and test its output before putting it in my scripts.

I am fairly competent in writing programs. I know how and when to use arrays, loops, functions, conditionals, etc. I just dont know anything about bash's syntax. Now, I could have used any other languages I knew but chose bash because it made the most sense, that bash is shipped with most linux distros out of the box and one does not have to install another interpreter/compiler for another language. I dont like Bash because of its, dare I say weird syntax but it made the most sense for my purpose so I chose it. Also I have not written anything of this complexity before in Bash, just a bunch of commands in multiple seperate lines so that I dont have to type those one after another. But this one required many rather advanced features. I was not motivated to learn Bash, I just wanted to put my idea into action.

I did start with internet search. But guides I found were lacking. I could not find how to pass values into the function and return from a function easily, or removing trailing slash from directory path or how to loop over array or how to catch errors that occured in previous command or how to seperate letter and number from a string, etc.

That is where chatGPT helped greatly. I would ask chatGPT to write these pieces of code whenever I encountered them, then test its code with various input to see if it works as expected. If not, I would ask it again with what case failed and it would revise the code before I put it in my scripts.

Thanks to chatGPT, someone who has 0 knowledge about bash can write bash easily and quickly that is fairly advanced. I dont think it would take this quick to write what I wrote if I had to do it the old fashioned way, I would eventually write it but it would take far too long. Thanks to chatGPT I can just write all this quickly and forget about it. If I want to learn Bash and am motivated, I would certainly take time to learn it in a nice way.

What do you think? What negative experience do you have with AI chatbots that made you hate them?

 

Chrome does not do it either but are we supposed to be the ones that start a new trend or the ones that follow the trend?

I made a post into their feature request section about how important it is for privacy and security. It is perfectly possible to do but they are not interested in doing.

What I asked was that they provide a feature that allows users to opt in to encrypt all browsing data including history, passwords, cookies, etc. With this feature I can only access my browser information after I open up Firefox and provide my encryption password.

How would this help? Well, there could be viruses that can read Firefox browsing history and cookies and send that to the server. With this feature enabled, one can be even more safer.

There is an option to encrypt Passwords. Thats not enough, every other piece of browsing data should also be encrypted.

view more: next ›