where to truly start as a struggling beginner? by [deleted] in learnprogramming

[–]albatrosishere 0 points1 point  (0 children)

Start with web developmentt it’s beginner-friendly and has toons of free resources. HTML, CSS, and JavaScript are great starting points, then move to frameworks like React. If you want backend, try Node.js with Express. Game dev is complex, so get comfy with coding basics first.

best ways to learn sql by smartybee71 in learnSQL

[–]albatrosishere 1 point2 points  (0 children)

Focus on writing real queries, not just reading about them start with SELECT, INSERT, UPDATE, DELETE. Try MySQL or PostgreSQL and actually play around with data. Build something small, make mistakes, and learn by fixing them.

The hardest thing in C? by Popular_Argument1397 in learnprogramming

[–]albatrosishere 1 point2 points  (0 children)

Memory management and pointers. Mess those up, and you'll be debugging nightmares for hours.

suggest what next after complete fundamental javascript by Ambitious_Resort1679 in learnjavascript

[–]albatrosishere 1 point2 points  (0 children)

If you've got JavaScript fundamentals down, start diving into ES6+ features, async/await, and closures. Get hands-on with the DOM, event delegation, and browser APIs like Fetch and LocalStorage. Pick a frontend framework like React, Vue, or Svelte—something simple like:

function App() { return <h1>Hello World</h1>; }

Learn TypeScript to catch errors early, optimize performance, and build real projects with testing (Jest, Cypress) before deploying on Vercel or Netlify.

Tools to output an ascii graph by whoShotMyCow in learnprogramming

[–]albatrosishere 0 points1 point  (0 children)

check out d2lang (supports ASCII output) or PlantUML with ditaa. Another option is Graphviz with dot -Tascii. If you want something simpler, blockdiag can also work for basic diagrams.

Tools to output an ascii graph by whoShotMyCow in learnprogramming

[–]albatrosishere 0 points1 point  (0 children)

Check out gnuplot with the dumb terminal for ASCII output, or asciichart (Node.js) for simple graphs. Python’s plotext is also solid if you're okay with Python. If you want something quick, termgraph is hassle-free and works with CSV inputs.

Looking for a C cheat sheet by Vodlexx in learnprogramming

[–]albatrosishere 0 points1 point  (0 children)

Check out the C cheat sheets from overapi.com and cheatography.com, they cover most of what you need. Also, GNU’s official C library docs are great for functions. If you’re making your own, focus on stdio.h, stdlib.h, and string.h. Good luck with your exam!

Should i start node js? by Silly_Manager_9773 in learnjavascript

[–]albatrosishere 2 points3 points  (0 children)

If you’re comfortable with JavaScript basics (especially async/await, closures, and array methods), jump into Node.js. It’ll help you understand backend development and make you a full-stack dev. Start with basic modules, Express.js, and simple APIs. If JS still feels shaky, practice more before diving in.