Amos King

Results 14 issues of Amos King

Polling gives us a friendly interface for sending event and messages, but it also limits some of the more advanced work that someone may want to do with their systems....

There are two different addresses and devices that makeup RGBLCD. I believe that they would be better served by splitting them into two modules. We can still have the top...

Terminal notifier has some options that could be useful when testing. I personally would like to have the notifier use the SOUND option. It would be nice to be able...

## Version Propcheck v 1.4.1 ## Example Code ~~~elixir let count Enum.to_list() end ~~~ ## Error ~~~ssh ** (FunctionClauseError) no function clause matching in :proper_arith.rand_non_neg_float/1 The following arguments were given...

I have some property tests that I wrote for a project where we are using tz. I ran into a specific date time that has an issue. Here is a...

## Description I didn’t want development workflows or older projects to break, so I thought a warning would be an excellent solution to reduce the debugging time but still allow...

This is one of the most frustrating things in any library. If you want it to pretend to be something else then use SimpleDelegator. This caused a lot of pain...

activemodel
reminder

Here is my config Webrat.configure do |config| if ENV['INTEGRATION_MODE'] config.mode = :selenium config.application_framework = :rails config.application_port = 3001 config.selenium_server_port = 4444 Mainline.enable do |mainline_config| mainline_config.port = 3001 end else config.mode...

I often want to get the time that we have blown past the deadline for logging, debugging, or gathering more information about the response times of downstream services. Since we...

It would be nice for a user to be able to create something that mimics OTP and handles a lot of the processing and hands things to the user. ```elixir...