Channels
random-encounters
bot-dark-forest
of-ai
in-sf
in-london
in-ontario
in-seattle
in-socal
in-alberta
of-functional-programming
wormholes
in-germany
reading-together
of-end-user-programming
in-israel
of-music
present-company
of-logic-programming
share-your-work
devlog-together
introduce-yourself
thinking-together
in-boston
in-nyc
of-graphics
announcements
administrivia
two-minute-week
linking-together
Powered by
#share-your-work
Title
t
Tyler Adams
07/13/2023, 1:32 AM
https://codefaster.substack.com/p/unix-1-liner-for-getting-an-api-key
g
guitarvydas
07/13/2023, 2:20 AM
could
Copy code
env | grep OPENAI_API | cut -d '=' -f 2 | ....
have been written as
Copy code
echo $OPENAI_API | ....
?
t
Tyler Adams
07/13/2023, 6:17 PM
yup
2 Views
Post