Clay Sweetser

Results 99 comments of Clay Sweetser

@ringabout Can you fix the conflicts? Then I can merge this.

Personally, I'd merge this in now, but @Araq will need to give the final approval.

Ok, so first, let me see if I understand your requirements: - Nimble needs to support installation to arbitrary locations - Nimble needs to support multiple installations in a single...

@mindplay-dk Eh, what? Nim _dynamically links_ by default. It loads things from dynamic libraries by default.

Well, most browsers have a developer console that features a network graph. On Chrome at least, you can right-click anywhere on the page, click "Inspect", then click "Network" on the...

To save tabs, you have two options: - Save all your [open tabs as bookmarks](https://www.cnet.com/how-to/how-to-bookmark-all-open-browser-tabs-at-once/) - Use an extension like [TooManyTabs](https://chrome.google.com/webstore/detail/toomanytabs-for-chrome/amigcgbheognjmfkaieeeadojiibgbdp?hl=en) Given the hardware you described, the slowdown is probably...

Well, currently the parsing procedures take in a string containing the entire file, and output a sequence containing all the json nodes. While this works well for most cases, it...

@ghost91- If a user of the template uses NPM/Yarn, this will tell Dependabot to file PRs for dependency updates.

Ok, I've removed the NPM/Yarn configuration. Regarding the GitHub Action configuration, the reason I added it is because if there's a security bug or fix in a GitHub Action, it's...

- [x] Does this work across scopes? For example: ``` var x: ptr int block: var y = @[1, 2, 3] x = addr y ```