Live data from Hacker News

Ask HN: What programming tutorial/course/article/blog would you like to see?

news.ycombinator.com

41–50 of 93 posts

Re: Ask HN: What programming tutorial/course/article/blog would you like to see?

#42
Coming from a ML domain, I feel there is so much terminology and its duplication floating around which could be better explained, maybe with an example or a picture (or even a simple howto). The technical debt is just too high.

For example, hundreds of papers talking about 'inductive bias' or 'SE(3) operators' and what not. There isn't even a general boundary between unsupervised and self supervised learning (Remember Yann Lecun stepping in one such debate but without a conclusively clear demarcation). Very few actually try to explain a view that general practitioner can connect (with some basic exposure). Google maintains a ML glossary but that sorely needs some updation beyond the very basic stuff.

Re: Ask HN: What programming tutorial/course/article/blog would you like to see?

#43
post #9

What I would find interesting is a page which lists all steps to be performed on the command line to create a web application from scratch. Say we start with a fresh Debian install, the first line might be apt update && apt upgrade The second line might be apt install php Or Python or Node. And then the commands to create the project directory, switching to it, installing a webserver etc would follow. At some point t…

That sounds like a Dockerfile

Re: Ask HN: What programming tutorial/course/article/blog would you like to see?

#44
I find it hard to read manuals and documentation. I learn much better from seeing real code, and then trying and playing with it myself.

I’ve had an idea for a while that it would be interesting to document a computer language with a complete set of example code. This example code would exhibit all the language’s functionality. It would be written with best practices in mind.

The code wouldn’t necessarily need to do anything useful, The goal would be the code itself.

Re: Ask HN: What programming tutorial/course/article/blog would you like to see?

#45

Earlier tonight I was making a programming challenge list for experienced programmers. These are all small tasks but the question is can you do them. Create a 1. Mandelbrot 2. Julia set 3. Ray tracer with shading and shadows of a few simple spheres 4. A simple virtual machine 5. Rewrite the first three programs in the virtual machines assembler 6. A simple language such as Forth for the virtual machine 7. Rewrite the…

> If you know what you're doing, each one individually should take under an hour.

In other words - the second or third time you do it, it should take under an hour.

Re: Ask HN: What programming tutorial/course/article/blog would you like to see?

#46

I would be glad to find an integrated guide on how to build a state-of-the-art website and how to deploy/maintain it on a server like AWS or DigitalOcean. I mean, I'm not interested in a html/css/javascript tutorial, we have enough resources on that. What I found really missing on the internet (maybe I'm not that good at searching), is a step-by-step detailed guide on how to deploy/update/maintain a website. An unord…

This is actually exactly what Molecule.dev is all about. All of the documentation, guides, and tutorials are written with both teams and individuals in mind.

It includes detailed step-by-step guides for every little thing you need to know to develop, release (and rerelease) your app on every platform you've selected, using the tools you've selected. It also covers many edge cases and obscure issues which we know that you will probably run into.

It's written for developers of varying levels of experience so that any member of the team (present or future) can quickly jump on board and get started building and deploying.

It also includes a (very meta) guide which explains how to update the guide itself and regenerate new documentation as you (and your team) add to it for your own purposes.

Re: Ask HN: What programming tutorial/course/article/blog would you like to see?

#47
Something I've seen multiple times from junior developers is an expectation that the technology will tell them how to fix their errors/exceptions/unit tests/problems.

The technology in IDEs, the things you Google, the bugs you get, stack trace messages, none of these things TELL YOU WHAT TO DO OR FIX. They are clues or evidence. You have to bring the understanding and intention.

I expect that some people disagree about this being a problem, but I've seen it enough times to recognize it. Senior developers need to remember that they were not always senior.

Re: Ask HN: What programming tutorial/course/article/blog would you like to see?

#48
post #37

I would be glad to find an integrated guide on how to build a state-of-the-art website and how to deploy/maintain it on a server like AWS or DigitalOcean. I mean, I'm not interested in a html/css/javascript tutorial, we have enough resources on that. What I found really missing on the internet (maybe I'm not that good at searching), is a step-by-step detailed guide on how to deploy/update/maintain a website. An unord…

Unfortunately much of the answers, and in fact your questions are transient, they will become outdated fairly quickly - or are not necessary even now for arbitrary "websites". The tooling for web development has become overly complex and we are now starting the trend back down to the basics instigated by projects such as esbuild. If you aren't familiar with any of this stuff, i'd recommend focusing on the fundamental…

> they will become outdated fairly quickly - or are not necessary even now for arbitrary "websites". The tooling for web development has become overly complex and we are now starting the trend back down to the basics instigated by projects such as esbuild.

To add to my other comment in this thread, as this relates to your particular comment, we try to keep Molecule.dev as up to date as possible. We cannot of course cover every piece of tech out there, but we attempt to cover what we think are the best tools available and will continue to exist and improve for many years to come.

It is definitely a very difficult problem to solve and will need constant maintenance, but I think it's worth it if it helps people get started building awesome, high quality things faster.

Re: Ask HN: What programming tutorial/course/article/blog would you like to see?

#49

I would be glad to find an integrated guide on how to build a state-of-the-art website and how to deploy/maintain it on a server like AWS or DigitalOcean. I mean, I'm not interested in a html/css/javascript tutorial, we have enough resources on that. What I found really missing on the internet (maybe I'm not that good at searching), is a step-by-step detailed guide on how to deploy/update/maintain a website. An unord…

For me, it would be great if the tutorial can focus on minimising the amount of work required to maintain or update the site while still retaining flexibility.

I'm not sure if you will see my other comments in this thread, but please check them out. Molecule.dev covers all of this.

Re: Ask HN: What programming tutorial/course/article/blog would you like to see?

#50
I wish there were more good courses on AR and VR development, especially for non-gaming applications. I'm not an engineer but managed to learn web dev thanks to amazing courses and YouTube channels, but find it difficult to kick start my AR projects
Post reply on HN