The fox edition.>Free beginner resources to get started with HTML, CSS and JShttps://developer.mozilla.org/en-US/docs/Learn - MDN is your best friend for fundamentalshttps://web.dev/learn/ - Guides by Google, you can also learn concepts like Accessibility, Responsive Design etchttps://eloquentjavascript.net/Eloquent_JavaScript.pdf - A modern introduction to JavaScripthttps://javascript.info/ - Quite a good JS tutorialhttps://flukeout.github.io/ - Learn CSS selectors in no timehttps://flexboxfroggy.com/ and https://cssgridgarden.com/ - Learn flex and grid in CSS>Resources for backend languageshttps://nodejs.org/en/learn/getting-started/introduction-to-nodejs - An intro to Node.jshttps://www.phptutorial.net - A PHP tutorialhttps://dev.java/learn/ - A Java tutorialhttps://rentry.org/htbby - Links for Python and Gohttps://quii.gitbook.io/learn-go-with-tests - Learn Go with Tests>Resources for miscellaneous areashttps://github.com/bradtraversy/design-resources-for-developers - List of design resourceshttps://www.digitalocean.com/community/tutorials - Usually the best guides for everything server related>Need help? Create an example and post the linkhttps://jsfiddle.net - if you need help with HTML/CSS/JShttps://3v4l.org - if you need help with PHP/HackLanghttps://codesandbox.io - if you need help with React/Angular/Vue/wdg/ may or may not welcome app development discussion. You can post and see what the response is.Some app technologies of course have overlap with web dev, like React Native, Electron, and Flutter.We have our own website: https://wdg-one.github.ioSubmit your project progress updates using this format in your posts, the scraper will pick it up::: my-project-title ::dev:: anontools:: PHP, MySQL, etc.link:: https://my.website.comrepo:: https://github.com/user/repoprogress:: Lorem ipsum dolor sit ametPrevious: >>107504416
>>107576128Fox edition you say?
Down to 54
up
>>107576128
Thoughts on the elephant stack?
Actual previous thread>>107535725
>>107578975I liek
>PHP 8.5 has loads of cool new features>Server is still on 8.3
Any jeets in chat? Where are (you) from
>>107579452Use a VPS lad
What's better: putting check constraints in your database so that invalid data can never be entered, or validating data in your server code before that data is sent to the database?Maybe "both" is the best answer, but implementing both is more work.
>>107578975It gets shit done and makes you a lot of money
>>107582148database constraints are a pain for migrations and are never enough, you usually end with complex business logic that the database can't enforce. Plus, you are mixing up responsibilities. Checks should be the responsibility of the business layer. Despite SQL having checks you shouldn't use them at all besides unique and foreign keys.
>>107582289What if some bozo accesses the production database and inserts invalid data? It could happen. Then your web app could produce unexpected behaviour