RNRed Nose Hackerinrednosehacker.hashnode.dev·Dec 13, 2021 · 2 min readSend an SMS with Guile and Twilio APIThese last days, I tried to send an SMS with a Guile script. TL;DR: I succeeded! Since the code is just a simple HTTP POST request, the longest part should have been the creation of the Twilio account (with a Regulatory Bundle and a phone number). Bu...00
RNRed Nose Hackerinrednosehacker.hashnode.dev·Oct 6, 2020 · 7 min readCode Kata with SRFI-64I got into the habit of doing about 30 minutes of Code Kata) every morning. I practice these Kata following the test-driven development (TDD) approach. Guile distribution includes the SRFI-64 module: a unit testing framework. In this article, I expla...00
RNRed Nose Hackerinrednosehacker.hashnode.dev·Sep 13, 2020 · 1 min readBooleans with GuileThe two boolean values are: "true" and "false". Respectively #t or #true and #f or #false in Guile. In a conditional test context, "true" means any expression other than #f or #false. Here is a small test suite that illustrates all this: (use-modules...00