Pat Pannuto

Results 246 comments of Pat Pannuto

> One thing to note is that a commit's hash includes both the state of the repository (as a filesystem), but also the commit message... Hmm, this is a very...

+1, I agree this is an issue. I might bikeshed to `DMACell`, as the cell metaphor is well understood, and I think we can explain it as a cell whose...

I don't think this is about the time it takes, it's solving the problem where people forget to run markdown-toc. CI services shouldn't be pushing commits when they run. [rustfmt](https://github.com/rust-lang-nursery/rustfmt)...

I think we're confusing things a bit here, let's give a concrete example: I have a repository with some documentation written in markdown. Someone comes along to improve the documentation,...

I'm not sure if this should be part of the same issue or something separate, but this interface also doesn't really match my expected behavior. All of the other APIs...

Yeah, there's not a whole lot of magic really. Netlify is your standard CI container environment that runs arbitrary commands. For the kernel specifically, it calls https://github.com/tock/tock/blob/master/tools/netlify-build.sh, which basically just...

> Moreover, there should be one and only one build system (not a combinations). I disagree with this. These two tools solve different problems, and each tools should solve the...

Not quite like that unfortunately. `normpath` alone is insufficient, it would need to be basically what's suggested in the python docs of `normpath(join(os.getcwd(), path))`. The deeper problem here is that...

It looks like it is failing when it tries to open the file to save to: s.capture_to_file('~/Desktop/test.logicdata') Does that path exist on the machine that the Logic software is running...

For the future, the library uses the standard Python logging facility. Before calling saleae.demo() ``` python import logging, saleae logging.basicConfig(level=logging.DEBUG) saleae.demo() ``` I can also add something to pick up...