1
local duration=0
if [[ "$1" == "-m" && -n "$2" ]]; then
duration=$(($2 * 60))
fi
local count=0
while true; do
# shift arrow key down
# osascript -e 'tell application "System Events" to key code 126 using {shift down}'
# F-13
osascript -e 'tell application "System Events" to key code 105'
sleep 30
count=$((count + 30))
if [[ $duration -gt 0 ]]; then
if [[ $count -ge $duration ]]; then
break
fi
fi
# Print elapsed time every 60 seconds
if (( count % 60 == 0 )); then
echo -ne "\r$((count/60)) minutes elapsed\n"
fi
done
}In the age of agentic AI, Claude code and all the amazing stuff like Kiro, Q and Cursor. How do you stay relevant? What are the things a web / react developer should learn to be better prepared to go get that next job?
Any advice, books, training courses, things to read and consider would be appreciated.
I'm a principal web developer and am thinking about a pivot long term into something more interesting and helpful to the world, something like quantum engineer, quantum computing, AI research or something with a hard science like chemistry.
What are you doing?