You are here |
ruudvanasseldonk.com | ||
| | | |
www.mathieupassenaud.fr
|
|
| | | | ||
| | | |
128bit.io
|
|
| | | | As I sit next to a gas store in Vermont, I once again have a hard copy book with me to read on vacation. This time it's "Learning ClojureScript" by Andrew Meredith, and just like Clojure For the Brave and True it's another free book that can easily be downloaded and read from any fancy gizmos. Unlike my trip to Italy, I have no fear of misplacing or having a piece of technology stolen because we are staying in one place for this trip. | |
| | | |
blog.nuculabs.de
|
|
| | | | I wanted to explore the magic of RFID and I bought a simple card reader from Banggood which allows me to read and write 13.56MHz cards. The reader comes with one id tag and one card and it can be used to implement projects like a door security system or a payment system. The card and id tag that come with the board use classic mifare technology. Wiring I'm going to use Arduino Nano for this example, you can use Arduino UNO and perhaps other Arduino's too. You can't use any pin for the module board, you need to verify your Arduino's pin map and map them accordingly, for example, you can only use SCK on pin D13. | |
| | | |
fluffyandflakey.blog
|
|
| | My favorite tool for using LLMs is Simon Willison's llm, but the output is unformatted visually even though most LLMs return Markdown-formatted outputs. Typically I pipe the output into batcat (which I also love) with llm 'say hi' | bat -l md -P --plain. This makes the output considerably easier for me to read. Unfortunately... |