Cody A. Taylor

Results 26 issues of Cody A. Taylor

I have a high distain for reporters where **silence** means "everything is fine". ![this is fine](https://cdn.vox-cdn.com/thumbor/69uyYrsxeAHDegcL1-nnyT0rYik=/75x0:825x500/1310x873/cdn.vox-cdn.com/uploads/chorus_image/image/49493993/this-is-fine.0.jpg) Recently I changed some tests in a core project of mine and found that...

I just finished writing [toflush](//github.com/CodeMan99/toflush) because I wanted something that could consume both sync and promise-returning values inside of a stream. I couldn't quite find anything out there I liked....

Opening as an Issue because I am not sure where to land the code. ```javascript /** * Convert a flat object to an array of values suitable for use with...

enhancement

Opening as issue because I am not sure where the code should land. Shipping a writable wrapper is easy as defining `_write` and `_final` methods. ```javascript const {Writable} = require('stream');...

enhancement

## Describe the bug in a sentence or two. Many options type arguments are using [union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) when the intention is an [intersection](https://www.typescriptlang.org/docs/handbook/2/objects.html#intersection-types). ## Issue Type (Can be multiple) * [...

bug

I had the same issue as #53 & #87. Can we please document the use of `req.originalUrl` in the README?

Specifically, I want to always specify `--no-install` and I want that configuration to be very robust such that it isn't shell dependent. Executing remote code can be dangerous. Then you...

enhancement

Quite possible I missed something visually while using this tool. If that is the case, just let me know. 1. I had two conflicts in the same file. I clicked...

Implements #1091 with documentation.

For the [Binary Search](https://exercism.org/tracks/fsharp/exercises/binary-search) exercise, there is nothing to prevent an implementation using [`Array.tryFindIndex`](https://fsharp.github.io/fsharp-core-docs/reference/fsharp-collections-arraymodule.html#tryFindIndex). So this implementation is accepted. ```fsharp module BinarySearch let find input value = Array.tryFindIndex ((=) value)...