Not at the moment, but I'd love to get into it. Having a stream where people can follow my coding process sounds like fun, but I'd have to figure out how to hide sensitive information
Yeah hiding sensitive stuff like API credentials is tricky. The simplest solution is to only work on stuff where the likelihood of exposing such things is low. (i.e. nothing involving API usage, production data, etc)
I use Custom hotkeys to change screens on the fly. So if I am looking at something that shouldn't be shown, I hide my screen temporarily.
And when its about using that sensitive bit in code, put that into a flat file somewhere and just read from it in code while you work on it on-stream. Easy fix! :)
Not at the moment, but I'd love to get into it. Having a stream where people can follow my coding process sounds like fun, but I'd have to figure out how to hide sensitive information
Yeah hiding sensitive stuff like API credentials is tricky. The simplest solution is to only work on stuff where the likelihood of exposing such things is low. (i.e. nothing involving API usage, production data, etc)
I use Custom hotkeys to change screens on the fly. So if I am looking at something that shouldn't be shown, I hide my screen temporarily.
And when its about using that sensitive bit in code, put that into a flat file somewhere and just read from it in code while you work on it on-stream. Easy fix! :)