Cyril Sobierajewicz
Cyril Sobierajewicz
According to [this article](http://www.html5rocks.com/en/tutorials/speed/script-loading/#toc-dom-rescue), setting the `async` property of dynamically created scripts to `false` let the browser download them in parallel (unlike `$script.order`) but preserve the execution order. The difference...
This PR slightly adjusts the regexps used to rewrite require paths in modules read from the output directory so it supports both CJS and ES modules, in anticipation of https://github.com/purescript/purescript/pull/3791.
Why not using the patterns defined in `folder_exclude_patterns` and `file_exclude_patterns` (plus `folder_exclude_patterns` and `file_exclude_patterns` if inside a project) to filter files instead of relying on `dired_hidden_files_patterns` ?
In https://github.com/purescript/purescript-control/issues/63 we‘re considering to merge `Plus` into `Alternative` and then remove the illegal instance of Plus for Aff, Plus and Alternative for ParAff and add an Alt instance for...
There’s a few inconsistencies between Foreign.Object.ST, Record.ST and Data.Array.ST: + Foreign.Object exports thawST, freezeST and runST whereas those functions are exported as thaw, freeze and run from Data.Array.ST and Record.ST...
With [deriving via](https://github.com/purescript/purescript/pull/3824) and some newtypes we could simulate defaults methods and alleviate a bit the implementation of typeclasses with generic defaults. For instance implementing `Show`, `Enum` and `Bounded`: ```purs...
We have `Type.Data.Ordering.Equals` and `Type.Data.Symbol.Equals` but no `Type.Data.Boolean.Equals`. Is there any reason for not wanting or needing this class? I assume it would be implemented like this: ```purs class Equals...
Chrome throws: ``` javascript Uncaught SecurityError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': The canvas has been tainted by cross-origin data. ``` As a workaround, I tried to load the images...
This allows to swap the currently selected file with files from another panes, nothing fancy but useful in some cases. I commented the keybindings because I use `super+k, super+ctrl+shift+` on...
This allows to call `save_layout`, `restore_layout`, `remove_layout` and `new_window_from_saved_layout` with a nickname argument to execute the command without asking the user for it. Useful to trigger those commands programmatically. There...