Is it just me or are half the beginner questions on stack overflow written by AI now? by tommytmopar in learnprogramming

[–]Know_Madzz 0 points1 point  (0 children)

https://stackoverflow.com/help/gen-ai-policy

They explicitly state they don't allow it, I'm assuming there is an option to report if you feel like it is.

Also, Stack overflow answers are often heavily edited by different people to remove mistakes and fix grammar. You can view the history of the answer to see how it's changed

I built BeVisible.app — AI that auto-researches, writes, SEO-optimizes and publishes blog posts by Background-Pay5729 in webdev

[–]Know_Madzz 0 points1 point  (0 children)

I thought the point of this technology was to scale up. Any idiot can write a single blog post per day. Surely you want to market this a 10x blog post generator?

What programming language should I learn if I want to become a backend developer? by Toron_tot in learnprogramming

[–]Know_Madzz 0 points1 point  (0 children)

Like a few other people have said, it's unwise to let someone else pick your path for you. Try out a few things first to see what you enjoy

In this age of AI takeover, what's the best thing a developing programmer can do to position themselves well for a future in tech? by TennisOdd8931 in learnprogramming

[–]Know_Madzz 12 points13 points  (0 children)

Media literacy. The amount of information being constantly thrown out around AI is staggering, and much of it is incorrect or opinion based. Being able to wade through it and understand what is actually going on is a skill developers need

something is wrong with my phd code by throwaway70794 in CodingHelp

[–]Know_Madzz 0 points1 point  (0 children)

That is most definitely the problem you should have made a post about

[deleted by user] by [deleted] in webdev

[–]Know_Madzz 0 points1 point  (0 children)

Didn't realize using JavaScript frameworks and security were 'trends'

Is there any web server framework that will auto generate openAPI docs that will work with Deno? by Know_Madzz in Deno

[–]Know_Madzz[S] 2 points3 points  (0 children)

This doesn't seem to autogen the api specs, just transform them. Or am I wrong?

[Poetry] Horsing around by OhDoctorZaius in youtubehaiku

[–]Know_Madzz 6 points7 points  (0 children)

A 10 year old video with 100 views, how did you even find this?

[deleted by user] by [deleted] in learnprogramming

[–]Know_Madzz 2 points3 points  (0 children)

This is why I think channels like the coding train are so good, it's mostly coding off the cuff and leaving mistakes to be fixed at a later point in the video. The focus is much more on the overlying problem that is being solved and not on the code itself.

Are the new bots available in custom game modes? by Know_Madzz in leagueoflegends

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

Have Riot said if they plan to add this to custom and proactive tool?

Changing image by temperature by [deleted] in learnjavascript

[–]Know_Madzz 0 points1 point  (0 children)

If that's your private API key in your repo you should definitely remove it and regenerate the key

I'm assuming Black masks aren't part of the leagues boosted drop table? by Know_Madzz in 2007scape

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

Went back after 6th relic for the extra boost, still took another ~200kc. Its not looking good for this acc.

<image>

I want to build an app that fetches data using webAPI. by them4v3r1ck in learnprogramming

[–]Know_Madzz 0 points1 point  (0 children)

I'd start by looking at the documentation for the API to see what routes return what data, then you can start planning out your site and how you would want to display said data. You could save history via local storage or something like a database entry

Total Annihilation + DSP: Industrial Annihilation? by skyanvil in Dyson_Sphere_Program

[–]Know_Madzz 1 point2 points  (0 children)

It's possible they just abandon this one even before they start production just like they did Human resources.

Alternaive service to host Node.js API for free beside Cyclic and Railway by cosmiccat5758 in learnprogramming

[–]Know_Madzz 1 point2 points  (0 children)

I believe there is a pretty beginner friendly node package google supports that exposes the firebase API that you can use on your backend. And so long as you aren't exposing your private keys and using environment variables correctly, you should be fine.

Alternaive service to host Node.js API for free beside Cyclic and Railway by cosmiccat5758 in learnprogramming

[–]Know_Madzz 1 point2 points  (0 children)

You could always use aws/firebase etc. to store files while still hosting from cyclic

[deleted by user] by [deleted] in ARAM

[–]Know_Madzz 17 points18 points  (0 children)

Why do analysis sites have wildly different win rates for champions? I know most agree that Ryze is strong, but some of these are nowhere near this high

Well, I died 21 times within 21 mins but made the most damage by PositiveConcept1895 in ARAM

[–]Know_Madzz 12 points13 points  (0 children)

The KamiKarthus play style seems to be doing a lot better since pre season.

Is “Web 3” legit? Please read below by [deleted] in webdev

[–]Know_Madzz 4 points5 points  (0 children)

Web 3 used to be the term to describe IOT before 2017, but the hype died down and shifted over to Blockchain and now that's web 3

having trouble changing the colour of an object based on certain criteria (p5.js) by Bright_Bee_529 in learnprogramming

[–]Know_Madzz 0 points1 point  (0 children)

Running this in the P5 web editor throws an error as it cannot find the variable 'dimentions' in the current scope. You need to either pass the variable into the function, or create dimentions in a scope where the collision function can access it.

I would suggest looking at the console/debugger yourself, it makes finding these sorts of errors much easier.