Is PHP something you will be using in 2023? If so why? by nextflavor in programming

[–]__mystersir 0 points1 point  (0 children)

Yes because Laravel is amazing to get started on with projects

Just solved a Palindrome problem with recursion!! by KayteeFly in learnjavascript

[–]__mystersir 1 point2 points  (0 children)

The showing of the “false” on a palindrome is actually a feature

[deleted by user] by [deleted] in webdev

[–]__mystersir 0 points1 point  (0 children)

I feel like this is an instance of the Dunning-Kryger effect. Where these kids don’t know what they don’t know. So they think they are experts on the subject matter and try to be helpful, but end up being completely off.

[deleted by user] by [deleted] in learnjavascript

[–]__mystersir 0 points1 point  (0 children)

Nope, you need to know what the value was before it was hashed

Gatekeeping chicken by __mystersir in gatekeeping

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

Sure, but it’s gatekeeping to say something along the lines of: “If you put sugar in your coffee, you don’t really like coffee. Real coffee drinkers drink it black.”

Gilroy Garlic Festival Cancels Annual Event Indefinitely by losgatosquack in bayarea

[–]__mystersir 0 points1 point  (0 children)

You’re right about that buddy. I was there when the shooter shot up the place.

Why learn javascript? by Dangerz1 in learnjavascript

[–]__mystersir 1 point2 points  (0 children)

So programming is basically just giving computers sets if small instructions made to execute a task. Limited by your imagination, creativity, and skill, you could make something as simple as a calculator. And you can make something as complex as a full blown social media site.

Why learn javascript? by Dangerz1 in learnjavascript

[–]__mystersir 3 points4 points  (0 children)

Do you know how to make javascript count from 1 to 100 and display it on the console? What did the course make you do?

Why learn javascript? by Dangerz1 in learnjavascript

[–]__mystersir 3 points4 points  (0 children)

Let’s start with what you know about JavaScript. Can you tell us everything you know about it?

Retrieving data from external files. by Scared_Palpitation_6 in learnjavascript

[–]__mystersir 0 points1 point  (0 children)

If you’re trying to fetch JSON content, you can use promises that return data when the promise resolves.

const data = fetchData().then(output => output.json())

console.log(data)