The official docker python images set LANG to C.UTF-8 at least.
@sethmlarson Жыл бұрын
Ah yes, "en_CA" meaning "Canadia".
@Carbonator50009 ай бұрын
I wonder if just using the KIS (Keep it Simple) principle when coding ANYTHING is just a good rule of thumb? Love the details in your videos dude, you’re opening my eyes to why I love this language. ❤🐍
@Ownermode Жыл бұрын
Ha, laughs in Go where everything is utf-8! As long as cgo is disabled
@انامسلموكفى8 ай бұрын
Thank you for the tipp. I like the keyboard where you buy it ?
@vaisakh_km Жыл бұрын
Wait, nano? Really? i never saw anyone with that keyboard and actually uses nano
@therealslimaddy Жыл бұрын
Actually it’s not even nano, it’s actually an editor he created. I think it’s just aliased to nano
@helicopterpilot4810 Жыл бұрын
How did you make she'll display suggestions on 3:05 ?
@anthonywritescode Жыл бұрын
I pressed tab!
@helicopterpilot4810 Жыл бұрын
@@anthonywritescode no way!
@Zir0h Жыл бұрын
woops, now I know what to do tomorrow :D thanks!
@con-f-use Жыл бұрын
What is your opinion on `ENV TZ=UTC` which is similar?
@anthonywritescode Жыл бұрын
iirc no set TZ is the same as UTC so adding that doesn't really fix anything
@Chris-rm1pn Жыл бұрын
You probably explain it in some previous video but what's the RUN : \ && syntax you did in your dockerfile?
@anthonywritescode Жыл бұрын
kzbin.info/www/bejne/eJXblYWiidODe6c
@Chris-rm1pn Жыл бұрын
Thank you!
@con-f-use Жыл бұрын
@@Chris-rm1pn tl;dr ":" is a noop in bash, like "true" and "\" just escapes the newline so it's one command for docker. Makes it look nice.
@paoloose Жыл бұрын
but why just not writing separate RUN commands?
@guidodinello136911 ай бұрын
@@paoloosethats generally not good in docker. Separate runs generate separate layers in your image thus ending in larger image sizes