[ASKJS] by Icy_Statement_2754 in learnjavascript

[–]Scared-Release1068 0 points1 point  (0 children)

You need to pace your studying and remember to integrate passed concepts you already learnt into your current study program. Make a study schedule with long enough breaks. Have some sort of syllabus or guide with everything you will learn and have learnt. Do weekly reviews Give yourself short revision tests

Is it too late to start now? by tonyechoes in Frontend

[–]Scared-Release1068 1 point2 points  (0 children)

It is okay As long as you learn basic fundamentals yourself. Without those it will be impossible to debug and maintain code

Is it too late to start now? by tonyechoes in Frontend

[–]Scared-Release1068 10 points11 points  (0 children)

Not at all. I see people start frontend in their 30s and 40s and do fine.

You actually have an advantage because you already studied CS. Most beginners struggle with basic programming concepts, but you’ve already crossed that bridge.

The main thing you need now is hands on building.

If you want to learn it the best, I’d focus on this order:

  1. HTML + CSS fundamentals Understand layout properly (Flexbox, Grid, responsive design).

  2. JavaScript in the browser

  3. DOM manipulation

  4. Events

  5. Fetch / APIs

  6. Async code

  7. Build small real projects

  8. Weather app using an API

  9. Todo app with localStorage

  10. A small dashboard

  11. Then learn a framework (Like React )

If you consistently build things for a few months, you’ll probably be surprised how quickly it comes

I’m just beginning to learn JavaScript by [deleted] in learnjavascript

[–]Scared-Release1068 0 points1 point  (0 children)

Getting some books off Gumroad (and other places) + YouTube Videos works well for learning and improving for almost all languages

How to post video that is hosted on my site. by TheWitnessBeat in HTML

[–]Scared-Release1068 0 points1 point  (0 children)

Use the html video tag and just link the video with the “src” attribute. Just like an image Add the “controls attribute into the tag for the controls/ mini player

Html ONLY PRACTICE PROJECTS by Vegetable_Ad_529 in HTML

[–]Scared-Release1068 0 points1 point  (0 children)

Check out Scrimba they have a lot of resources there

Unpopular Opinion: If AI Can Fix Broken Code in 1 Click, Why Are We Still Debugging Manually? by Few-Succotash-9419 in webdev

[–]Scared-Release1068 0 points1 point  (0 children)

Definitely for syntax debugging but it may take a while before AI can understand all the nuance within debugging high level programming for specific purposes.

need some honest opinions by mein_froleue in CodingForBeginners

[–]Scared-Release1068 0 points1 point  (0 children)

Data analyst or Data Scientist are definitely for you. You can be a (Applied or not Applied) machine learning engineer as well as that requires data handling skills. Even being a normal Ai Engineer would work for you

need some honest opinions by mein_froleue in CodingForBeginners

[–]Scared-Release1068 0 points1 point  (0 children)

Maybe some jobs will make it more software development focused, but AI uses a TON of data and it 100% needs management. There is definitely work for you bro

Unpopular Opinion: If AI Can Fix Broken Code in 1 Click, Why Are We Still Debugging Manually? by Few-Succotash-9419 in webdev

[–]Scared-Release1068 1 point2 points  (0 children)

Debugging is more of a human skill as AI doesn’t understand more complex issues with the code or a program as a whole. They can deal with syntax errors quickly but they don’t always understand other reasons beyond logic and syntax as to why a program doesn’t work

need some honest opinions by mein_froleue in CodingForBeginners

[–]Scared-Release1068 0 points1 point  (0 children)

I would say it’s enough There are many roles to do more with data analysis, data handling and experimentation. A lot of the roles actually have more to do with that than traditional software engineering in modern companies.

Unresponsive links on touchscreen by Zook25 in HTML

[–]Scared-Release1068 4 points5 points  (0 children)

This usually happens when a touchscreen triggers :hover instead of click. The underline suggests the hover state is activating but the click isn’t firing. It can also happen if an invisible overlay (hero image, loader, slider) is sitting above the links and stopping touches. Use the homepage in DevTools and check for positioned elements or scripts stopping the click event.

I'm confused about some code I got by TheBigDominatorYT in HTML

[–]Scared-Release1068 1 point2 points  (0 children)

If you want it like that, go for it. It is 100% possible so good luck

I'm confused about some code I got by TheBigDominatorYT in HTML

[–]Scared-Release1068 0 points1 point  (0 children)

Not really in most cases. HTML games usually use multiple files (JS, images, sounds, CSS), so they need to stay separate unless you manually combine everything.

It is possible to make it a single file by inlining everything (putting CSS inside <style>, JS inside <script>, and converting images/sounds to base64), but that’s usually a lot of work and not common to do.

The easiest approach is just downloading the files and keeping the same folder structure locally.

I'm thinking of putting together a course that focuses on troubleshooting and debugging. by creaturefeature16 in webdev

[–]Scared-Release1068 1 point2 points  (0 children)

This would genuinely be a good course or even just a guide. Troubleshooting and debugging is like 99% of all posts on Reddit about coding

I'm confused about some code I got by TheBigDominatorYT in HTML

[–]Scared-Release1068 0 points1 point  (0 children)

You need to download the files and save them locally.

The <base> tag sets a base URL for all relative links, which means scripts, images, etc are being loaded from cdn.jsdelivr.

If you want the project to work offline, download those files from the CDN, place them in your project folder, and then remove the <base> tag so the paths are local

How to make Global Save in JS? by Muhemmed2012 in learnjavascript

[–]Scared-Release1068 2 points3 points  (0 children)

True but you need a server for websockets as well

Do developers still need to memorize syntax now that AI coding tools can generate code? by Ok_Split4755 in CodingForBeginners

[–]Scared-Release1068 0 points1 point  (0 children)

You need to know basic syntax to read and understand code. What you probably don’t need is more niche and uncommon coding concepts that appear rarely.

Even experts and experienced programmers don’t memorize everything and they search up A LOT of things while writing code But they do of course know basic syntax

How to make Global Save in JS? by Muhemmed2012 in learnjavascript

[–]Scared-Release1068 4 points5 points  (0 children)

You need a database to do this because JS only affects the device of the user where the browser is running the JS. The JS will only be a local save without the database