Sending an Alert for Short Wait Time at Disney

Yesterday I had some fun with a web app that made use of APIs to report on rides with the shortest wait times at amusement parks. This was done via the excellent, and free, Queue Times service. The application I built let you select a park, and then rides were displayed sorted by the shortest wait time. While working with the API, I also had another idea for a useful service – notifications for short wait times. Imagine you’re at Disney, or any amusement park, and while you’re there, you would like to be notified when rides have a short wait time. How could you automate this? For now, let’s skip the ‘hard part’ of imagining the service that would let you sign... more →
Posted in: JavaScript

BoxLang Quick Tips – Sending Email

Welcome to another BoxLang Quick Tip! As with my other quick tips, I’ll end this blog post with a link to the video version so feel free to skip down to it, or read, or both if you prefer! Today’s quick tip is a look at how BoxLang supports sending email, and as with my previous tips, an additional module is all you need to do. The Mail module can be installed via the CLI like so: install-bx-module bx-mail. Once installed, you get three new components for your runtime: mail – This is the core component and handles all mail operations. You’ll always use this. It has quite a few options so be sure to check the docs, but in general you’ll provide the to, from, subject,... more →
Posted in: JavaScript