Matt Haggard

Results 35 issues of Matt Haggard

For the case when a build step produces multiple targets. For my case, using `tsc` to compile TypeScript files to JavaScript.

I've tried the following: ``` atlas use argparse==4.0.1 atlas use argparse=4.0.1 atlas use [email protected] atlas use 'argparse == 4.0.1' atlas use 'argparse = 4.0.1' ``` How do tell it to...

Installing `msgpack4nim` on Windows versus Linux/macOS yields a different hash for the nimble lock file. I think it's because of https://github.com/jangko/msgpack4nim/blob/master/.gitattributes#L1 which the comment suggests changes line endings for all...

I thought for a while that the error I was getting was from dbus. This change makes it explicit.

Steps to Duplicate: 1. Obtain a PDF with internal links (you click the link and it takes you to another page in the PDF) 2. Encrypt the PDF with the...

I have a situation where JSON strings omit default values. For instance in the code below, if `interval` is omitted or less than 0, it should be set to 100....

I'm bumping into this error ``` syncfile.nim(48) getSyncFilePath Error: Sync file require current working directory to be under some supported type of version control. Hint: Put package's working directory under...

I've received bug reports from Actual users for failures at this line and I'd really like to see the response body people are receiving here. I have NOT tested this...

🔍 Ready for Review

This is a shot in the dark attempt at adding Deflate64 support for #11 . I've made this change by trial and error with the given sample Deflate64 zipfile. I...

### Example ```nim macro fn*(fun:untyped):untyped = echo "first" fun macro fn*(key:string, fun:untyped):untyped = echo "second" fun let c = fn(proc(count:int):string = return "x = " & $count ) ``` ###...

Macros