Ask HN: Where can I go to ask/get answers for general web app dev questions?
I realised that I've asked quite a few of these kinds of questions on HN and stack exchange forums. The question type being general, non application, non language specific web app related questions. These are questions anyone developing any web app will probably have to answer. The answers expected would be mostly in the lines of abstract strategies to solve the problem as opposed to concrete "your solution for this case" ones.
To clarify a little bit, some example questions:
* How to securely store passwords? (answer would be discussion on hashing and encryption with no domain/language specific answer)
* How to handle reset password links? (answer would involve strategies for generating links, how to store the reset link etc)
* The above DB related question.
Is there a good single resource for asking/reading up on these types of questions?
3 comments
[ 3.3 ms ] story [ 18.4 ms ] threadIf you're interested in network security and so forth, r/netsec is also a great subreddit. Honestly, I don't think it's very productive to try to teach yourself database management and security unless you are actively running a database-backed product and need that knowledge, like, immediately. I learned databases because I needed to learn how to join different databases when doing research on governmental agencies...that led to learning more about programming on how to build workflows and clean data. I learned websites because, well, I wanted to publish my work online. Through that learn-as-I-need-to path, I was able to pick up a good amount of security practices. But honestly, nothing trains you better for DB admin and security than doing it in the workplace. As a hobby, it strikes me as one of the least appealing ways to get into programming.
Initially when reading your answer I thought I might be giving the wrong impression in that I'm looking for security based answers. But the longer I think about it, I realise that most general web app related questions will be security related stuff too.