Mine would be creating pen and paper ciphers for my made up secret communication needs.

  • agent_flounder@lemmy.one
    link
    fedilink
    arrow-up
    20
    ·
    1 year ago

    I don’t usually mention embedded programming, electronics, vintage stereo hi-fi, home automation, and fountain pens, among a few others. Of course finding someone who is into any of that could lead to some fun conversation.

    • all-knight-party@kbin.cafe
      link
      fedilink
      arrow-up
      8
      ·
      1 year ago

      For a second I thought you were implying that you embedded programming into the rest of that list and I was trying hard to think of what you’d program into a fountain pen

        • BlueKittyMeow@beehaw.org
          link
          fedilink
          arrow-up
          1
          ·
          1 year ago

          Next Gen actually flexible livescribe fountain pen?? I honestly spent WAY too long trying to design a system that would automatically digitize what I wrote but work with a fountain pen. I eventually gave up and moved on to designing a system for a single handed braille keyboard to let me text while walking. Which I also have on hold. (I HAVE completed some projects, I have a knit shawl of silk/yak that I spun all the yarn for and then added 4000 beads to the edge work. I actually made two of them in different colors and materials. And I’ve made some crud apps and artwork. There is just too much that is interesting!)

          Favorite fountain pen and ink (or at least your favorite at the moment)?

          I love vinta perya (I dilute it further with water) in my Noodler’s clear flex pen. I have a million pens and inks but that’s the combo that makes me happy and that I keep going back to 💕

    • Shinji_Ikari [he/him]@hexbear.net
      link
      fedilink
      English
      arrow-up
      2
      ·
      1 year ago

      What kind of home automation?

      I recently rolled my own environment sensing, from the ESP32 C code up to the web front end. I basically got it functional and have been using it daily.

      • agent_flounder@lemmy.one
        link
        fedilink
        arrow-up
        2
        ·
        1 year ago

        That sounds awesome. What is the front end written in? I always struggle writing front end stuff.

        I want to get there with ESP32 sensors but haven’t had the motivation or energy to make it happen.

        I have a few use cases in mind – soil moisture sensors for the garden, temp monitoring for fridge/freezer, stuff like that.

        But so far all my home automation / smart home / “dumb home on the internet” stuff has been off the shelf stuff… so pretty boring.

        • Shinji_Ikari [he/him]@hexbear.net
          link
          fedilink
          English
          arrow-up
          1
          ·
          1 year ago

          I struggle with frontend too, it was a super basic jinja templates with html and a plotly js applet that I just fed data to. Its ugly but functional.

          I Started to re-write the server in Go, I have like 90% feature parity with postgres instead of mongo, but I need to figure out vue when I have a chance to make something a little nicer. I have an old obsolete ipad with a bunch of touch deadzones I’d like to load up in kiosk mode for a nicer data display.

          I really liked the ESP32 ecosystem. I figured out the ESP-idf and really liked the build system and freeRTOS. The examples given are really exhaustive and super useful. I basically did format strings into static HTML headers to send the data to the server since it only has like 3-4 readings.

          Interfacing with any common hobbyist sensor is mostly a matter of finding a basic C driver and adapting it for the ESP build system.