(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| /etc/supervisor/conf.d/sidekiq.conf | |
| [program:sidekiq] | |
| command=/usr/local/bin/sidekiq.sh | |
| directory=/usr/local/bin/ | |
| user=ubuntu | |
| startsecs=10 | |
| autostart=true | |
| autorestart=true | |
| stdout_logfile=/var/log/supervisor/sidekiq.log |
Note: these are pretty rough notes I made for my team on the fly as I was reading through some pages. Some could be mildly inaccurate but hopefully not terribly so. I might resort to convenient fiction & simplification sometimes.
My top contenders, mostly based on popularity / community etc:
Mostly about MVC (or derivatives, MVP / MVVM).
| This is available [here] as a .lhs file. | |
| Let's just deal with the `MaybeT` transformer. | |
| First some imports: | |
| > import Control.Monad | |
| > import Control.Monad.Trans | |
| > import Control.Monad.Trans.Maybe |