Tomas Aschan
Tomas Aschan
A lot of CLIs with boolean flags have two versions of a flag, e.g. `bq --help` shows options like `--[no]debug_trace`, which allows the user to explicitly set either a true...
The main reason this was not already implemented, as outlined in #504 and linked discussions, was that modules sourced from git repositories, with urls like `[email protected]:...`, was rendered by Markdown...
### Terraform Version ``` Terraform v0.12.6 ``` ### Terraform Configuration Files ```hcl locals { test = true } resource "null_resource" "res" { lifecycle { prevent_destroy = locals.test } } terraform...
Are there any plans to support [the PubSubHubbub API for creating webhooks](https://developer.github.com/v3/repos/hooks/#pubsubhubbub)? I could try to create a PR for implementing this (I'm hoping to use it for implementing https://github.com/terraform-providers/terraform-provider-github/issues/275)...
I have worked out a scheme for linear interpolation of functions `f(x,y)` that I think might be fast enough to be useful (and might be possible to optimize really well...
A [recent post on julia-users](https://groups.google.com/forum/#!topic/julia-users/-bbJ_rVSOjs) made a case for [Cubic Hermite splines](http://en.wikipedia.org/wiki/Cubic_Hermite_spline), that seem to have some properties that regular B-splines might not have (although I must admit that I'm...
Now that #206 is implemented and the main way to use Interpolations.jl is with function call semantics, I think we should evaluate what value `AbstractArray` semantics provide, and whether maybe...
Looking at #5, this is one of very few things left to do before we might call ourselves ready for a version 0.1. I still think this makes sense only...
This is to discuss changes to, and completion of, documentation for this package. Major questions are: - How do we want to organize the documentation? Formats, locations etc... - What...
We currently have some benchmarks against other packages in [the `perf` folder](https://github.com/tlycken/Interpolations.jl/tree/master/perf). These should be updated to include testing of cubic splines.