Jon Ege Ronnenberg
Jon Ege Ronnenberg
I vote for a way to convert all properties to String but `S.Left` in the normal case. My thinking is that this might be wrong input that I need to...
@davidchambers How would I go about implementing specialised functions for Sanctuary? Would `TypedArray` encompass all of [Int8Array, Uint8Array, Uint8ClampedArray, Int16Array, Uint16Array, Int32Array, Uint32Array, Float32Array, Float64Array, BigInt64Array and BigUint64Array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray#typedarray_objects)? ```haskell takeTypedArray...
So that would be 11 specialized functions, just for `take`? ```haskell takeInt8Array :: Integer -> Int8Array -> Maybe Int8Array ``` ```haskell takeUint8Array :: NonNegativeInteger -> Uint8Array -> Maybe Uint8Array ```...
I tried to look through some code a few months back to find context for this. I did not find anything. But as I recall, I got a Buffer from...
@Avaq I'm imagining that working with Buffers without converting them to Array would be faster overall. But I should write some code to compare with. There is only one line...
I just did Ctrl + shift + p and typed `svg` - the first option is to open the editor. You can set your own keyboard shortcut the usual vscode...
I got the same error. I have installed [Dokany 1.3.1.1000](https://github.com/dokan-dev/dokany/releases/tag/v1.3.1.1000) and [Microsoft Visual C++ Redistributable for Visual Studio 2019](https://visualstudio.microsoft.com/downloads/). ```ps PS C:\Users\jonro\Tools\Shaman.Dokan.Archive> .\Shaman.Dokan.Archive.exe ..\..\Downloads\foobar.rar --open Mounted. C:\DokanFs\SevenZipFs-..-..-Downloads-foobar.rar Unhandled Exception: System.AggregateException:...
`dokan1.dll` is located in _C:\Windows\System32\dokan1.dll_ on my system.
So I guess I am missing [DokanNet](https://www.nuget.org/packages/DokanNet), since this is a .NET project. But after [setting up NuGet](https://docs.microsoft.com/en-us/powershell/module/packagemanagement/register-packagesource?view=powershell-7), I get the following: ``` Install-Package DokanNet The package(s) come(s) from a...
Hmm.. Perhaps it is the issue described in this article: http://martinmicunda.com/2015/10/19/how-to-start-writing-unit-tests-with-es6-angular-1x-and-jspm/ > Depends on your application file structure you might see 404 error when you run your test. To fix...