Ask HN: What programming tutorial/course/article/blog would you like to see?
41–50 of 93 posts
Re: Ask HN: What programming tutorial/course/article/blog would you like to see?
#42For 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?
#43What 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…
Re: Ask HN: What programming tutorial/course/article/blog would you like to see?
#44I’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?
#45Earlier 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…
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?
#46I 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…
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?
#47The 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?
#48I 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…
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?
#49I 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.