codinget

Results 11 comments of codinget

Thanks a lot, this pointed me in the right direction. What was happening was that there was a built-in NTFS driver that got automatically loaded by the UEFI, and that...

Bit late on the party, but howl compiles and runs on alpine aarch64 (which is another name for arm64), without applying any luajit patches. It sometimes complains a bit about...

@ajusa told me to put it here, so here goes ([discord thread](https://discordapp.com/channels/454435414044966913/454435533792346142/718630371855433809)) ```moon wrap = => setmetatable {_val: @}, __index: (k) => (_, ...) -> @_val=@_val[k] @_val, ... unwrap =...

1. that's not really a problem with invalid code, but yeah, the fact that it also does this on valid code is bad and IMO makes this a valid issue...

(this is for #431)

> If you put the term "Fixes #431" in your main pull request comment, GitHub will automatically link the PR with that issue and auto-close the issue if this PR...

So I have something that loads a taskfile from the fs recursively. [Link to the commit](https://github.com/natnat-mc/alfons/commit/3e30569eed0fc7ff598269d1a34f4e28ace38aaa) The question now is: - do I keep Alfons in the directory you invoked...

I was thinking of taskfiles like this one for local tasks: ```moon tasks: format: => sh "fish -c 'clang-format -i **.cpp'" compile: => sh "make" run: => sh "make run"...

Alright, I'll look into `relative!`/`mode "relative"` (which would probably imply a `"project"` mode) when I get back home, thanks!