Where to start with JSON?
ESP32 MicroPython Tutorial: Parsing JSON
Awesome write up, thanks!
More on reddit.comJSON Formatting Tutorial #1
Damn that's creative. Very cool! Who'da thought an algorithm comprehends cold logical json better as opposed to plain English? ;) Devs should take a cue from this if they're gonna make a character builder or whatever.
More on reddit.comUnity Tip: Saving data with JSON and PlayerPrefs.
cool and on point! some quick thoughts:
use var: var saveJson = PlayerPrefs.GetString(...);
new int[0] is valid, as is new int[] { }.. probably better than the arbitrary 5
best to initialize arrays to empty inside the Save() constructor and or "inline" via public int[] numbers = new int[] {};
max size on PlayerPrefs is 1MB which could potentially be an issue depending on what you're saving. In that case you'd need to do something more complex/different but this will work for small data.
Videos
So, I can JavaScript a little (self-taught), enough to get myself out of trouble. But I need to know about JSON now. The issue is I have no idea where to start. I don't have a project to contextualise it all and was just hoping to find a codecademy or something course that would introduce me to the fundamentals and let me build from there. Am I entirely off track? Does anyone have any suggestions on where to start?