-
### Steps to reproduce
```ruby
require 'active_support'
require 'active_support/core_ext'
class Foo
def self.foo(val1, **hash1)
p val1, hash1
end
end
Foo.foo(10, b: 20) # ok
…
-
Run `pulumi up` on the following program:
``` ts
import * as aws from "@pulumi/aws";
import * as pulumi from "@pulumi/pulumi";
const role = new aws.iam.Role("mylambda-role", {
assumeRoleP…
-
From the readme:
> ```
> for (#i, 100) {
> elif (i % 3 == 0) "Fizz"
> elif (i % 5 == 0) "Buzz"
> else i
> }
> ```
gives
![image](https://user-images.githubusercontent.com/44…
-
I am currently dealing with a result collection that contains different "types" of objects, a union of queries. This means that I cannot set a `type_` field to the schema's meta, it must be determined…
-
There should be a python version for this problem.
-
Bad interviewing process.
-
We propose a new package providing structured logging with levels. Structured logging adds key-value pairs to a human-readable output message to enable fast, accurate processing of large amounts of lo…
jba updated
10 months ago
-
When you move a group of selected lines up or down, Atom auto indents them to where it thinks they should fit in the code and it is not always correct. It should have the option to disable this flavor…
-
Add `.keys()`, `.values()` `.entries()` methods similar to the `Map` spec but instead they should return a Promise that resolves to an iterable.
Something like:
```js
const keyv = new Keyv();
…
-
## New feature
Hi, when using Nextflow in AWS it would be really useful to be able to tag all the child jobs as well. So far, when submitting a job, one can Tag the Nextflow job but the tags are no…