Mike Slinn

Results 96 issues of Mike Slinn

Here is `certbot53`, a script I wrote to use this project: ``` #!/bin/bash #STAGING=--staging CERT_DIR=/etc/pound/certbot DOMAIN=scalacourses.com MAIL_ADDR='[email protected]' SCRIPT_NAME=certbot-route53.sh if [ ! -d "$CERT_DIR/letsencrypt" ]; then sudo mkdir -p $CERT_DIR/letsencrypt; fi...

I'm working on adding CloudFront support in a [fork](https://github.com/mslinn/AWScala). I've hit a problem that puzzles me and I posted it on [StackOverflow](http://stackoverflow.com/questions/23456265/deleting-an-aws-cloudfront-distribution-using-java-api). Anyone here care to take a look?

I just ran `sbt test` on the `develop` branch, and got: ``` [info] Run completed in 54 seconds, 301 milliseconds. [info] Total number of tests run: 9 [info] Suites: completed...

bug

Here is a short test program: ``` import caseapp._ case class EwApiDemoOptions ( @ExtraName("l") displaySpeciesList: Boolean = false, @ExtraName("s") displaySpecies: String = "" ) extends App { if (displaySpeciesList) {...

All the standard SBT commands can be specified as hyphenated-words or as camelCase. For example, run-main can be used or runMain can be used. The gen-idea command is not currently...

Here are examples of range sliders I made with Adobe Flex years ago. The skins emulated an audio mixer console. ![Flex slider](https://static.wixstatic.com/media/64df34_9acc14621c1d4374b08bfefece7ac212~mv2.png/v1/fill/w_1003,h_725,al_c,q_85/prlEditor.webp) Each slider had a minimum and maximum value,...

Discussion

The `README` makes no mention of the `muxer` or `streaming` dependencies. * https://mvnrepository.com/artifact/org.mp4parser/muxer * https://mvnrepository.com/artifact/org.mp4parser/streaming

Issue #188 fixed the dependency reference in the README, but the "Current central released version 2.x branch" badge points to https://maven-badges.herokuapp.com/maven-central/com.googlecode.mp4parser/isoparser, which still points to the old location.

The [Frobshop tutorial says](https://django-oscar.readthedocs.io/en/latest/internals/getting_started.html#creating-product-classes-and-fulfilment-partners): “For a deployment setup, we recommend creating product classes as [data migration](http://codeinthehole.com/writing/prefer-data-migrations-to-initial-data/).” As a new Django user, I asked for help on StackOverflow to understand what...

✎ Docs

The cors documentation [conflates](https://www.merriam-webster.com/thesaurus/conflate#verb) the words URL and origin. Everywhere the word `URL` appears in the documentation, the word `origin` should be understood. I write about this in my [blog...