Category: Work

  • Using Layers with AWS Lambda

    We run some Python functions on AWS Lambda, and we originally used serverless. We set up the config files, node packages, etc. for that to deploy to our different environments. It worked pretty well. The main benefit is that serverless packaged up Python dependencies and deployed them with our main function code. Believe it or…

  • Arduino – arrays, for loops, switch case examples

      Arduinos are pretty fun little machines. Using them combines programming with electronics, which is a great combination. I’m starting Arduino with a background in PHP and Javascript. While some things are quite different (Arduino programs, called sketches, are C and C++ at heart), I felt fairly comfortable diving right in and learning things as…