A thorough review of V by Kris Tun:
https://t.co/drxl9BTeZj
"I like V a lot. The abstraction over the syntax is so nice that made me enjoy writing the syntax as a whole."
"V has come a lot further than when I tried it in 2023. I’ll be actively using it from now on."
Pierre-Étienne Meunier's #BOBkonf2023 talk "Version control in the age of distributed computing" shows how newer version control systems like Pijul can lead to more predictable and reliable workflows.
Read more:
https://t.co/6Q5cujVoQI
Database check is faster if you allocate more heap space with 'gc' first:
: (load "@lib/too.l")
-> loadDB
: (gc 1200) (dbCheck)
...
#PicoLisp#lisp#REPL
A simpler way (if no other alarm is currently scheduled by the application):
: (alarm (- (time 12 30) (time)) (kill *PPid))
-> 0
$
#PicoLisp#lisp#REPL
Stop current server process family (parent and all child processes) at 12:30 o'clock:
: (wait (* 1000 (- (time 12 30) (time)))) (kill *PPid)
-> T
$
#PicoLisp#lisp#REPL
List all IP addresses of this machine:
: (make
(in '(ip addr)
(while (from " inet ")
(link (till " " T)) ) ) )
-> ("127.0.0.1/8" "176.221.46.93/24")
#PicoLisp#lisp#REPL