Miles Frain

Results 96 comments of Miles Frain

The exercises will certainly be opt-in for readers of the guide. I'm envisioning that the exercises will only be suggested things to add to each example, so there's no risk...

How about we just stick to the "suggested additions" approach for now, since that only involves a small change to each readme, and closely matches the solution-less strategy of the...

Progress update: Here are some [exercises](https://github.com/milesfrain/learn-halogen/commit/e632c8d57db1d3a8629e274adf5fa6eaf6f0994b) along with [solutions](https://github.com/milesfrain/learn-halogen/commit/c9caa99cb67d79c7c174ec570477ab2f51cfcfbd) for sections 01/01 - 02/05. Future additions will be applied to those branches. Will file a PR once all the exercises...

The folks who wrote [mdbook](https://github.com/rust-lang/mdBook) put some thought into this already. It would be great to match [their format](https://rust-lang.github.io/mdBook/format/mdbook.html#including-portions-of-a-file) to maximize compatibility in case anyone wants to host docs both...

Alacritty is consistently crashing on my system when the window is resized to cover more than 50% of the screen area on my 4k (3840 x 2160) display. Might be...

This would be a helpful feature to improve user experience when working-around the limitation of not being able to interleave plots and printed text in a cell without the append...

Would either of these options work: * Create all gists through a tryPureScript account * Store snippets directly on the tryPureScript backend Unfortunately, both of the above are vulnerable to...

What are your thoughts on storing code as a compressed string in the URL? The typescript web editor does this with [lz-string](https://github.com/pieroxy/lz-string) ([code link](https://github.com/orta/typescript-play/blob/d23941e4a4e4cd1658449a422b5a353126448d78/public/main-3.js#L912)). ```js const hash = `code/${LZString.compressToEncodedURIComponent(State.inputModel.getValue())}`; //...

Here's an editor prototype with both gist and url-compressed code saving and sharing. https://milesfrain.github.io/gist-prototype/?gist=66a6389000ac663e8ba6d97381bfe4d0 https://github.com/milesfrain/gist-prototype This eliminates the need for local storage, and the confusion that happens when folks try...