This post actually encouraged me to tidy up my working space, so thank you :)
I have a light umbrella and boom-mic at my desk to facilitate online instruction for software engineering courses (I teach application development as my 9-to-5).
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! :)
Late to the thread, but wanted to hop in!
This post actually encouraged me to tidy up my working space, so thank you :)
I have a light umbrella and boom-mic at my desk to facilitate online instruction for software engineering courses (I teach application development as my 9-to-5).
Love the light setup. Do you do any Twitch streaming as well?
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! :)