Karl Mikkelsen

Results 10 issues of Karl Mikkelsen

``` return this.each(function() { var $element = $(this); var $window = $(window); var locator = new location($element); $window.scroll(function() { $element .stop() .animate(locator.getMargin($window), opts.speed); }).scroll(); }); ``` by adding the .scroll();...

As i am a windows user at my work i wanted to see the JS in action for the animation. So i took the encoded results from your website. I...

Proposed API - thoughts/feedback please. ``` //survey data POST /api/surveys - create new survey GET /api/surveys - all surveys GET /api/surveys/:id - get single survey PUT /api/surveys/:id - update survey...

bump dependencies and track changes to clojure.spec namespace change to clojure.spec.alpha

Added extra defmethods to replace nil value in `-unify` with a special `gensym`. Added a step just where the reducible value is passed to `with-env` to replace the special `gensym`...

Noticed a few of the tests weren't actually comparing results. Also added a .gitignore file so some of the build cruff doesn't come into the repo.

Allow support for `seq` and friends on `for-query` without having to convert to `vec` or `set` first.

Thanks for an awesome lib! I have found it extremely useful! I don't know if this is by design or not. I have noticed when using standard clojure functions that...

If a data set contains leaf values of `false` odin returns a `LVar` instead of `false`. ```clojure (set (o/for-query (d/query [1 2 3 false] ?path _ ?val) ?val)) ;;=>#{1 3...