Brandon Mason

Results 22 comments of Brandon Mason

More info on dependencies. They seem to be all present, installed by pip. Additionally I installed `simplification` just in case. No change in behavior. ``` Name: requests Version: 2.28.1 Summary:...

Saving to `~/Trees.pdf` fails in the same way. It's running under my user, so it shouldn't be a permissions issue. I expanded the tilde to `/home/bitmage/Trees.pdf` and I get a...

I'm on Android 12. OpenGapps 12 not yet available. Tried installing the two apks from BitGApps. Got them installed and set permissions, but nothing happens. Gave up. This process feels...

I'm curious to know more. I have LineageOS 12 with MicroG and I am seeing this message. What could be shared to help the LineageOS developers, and to help users...

Here is a use case that I'm currently relying on CommonJS for: ```js // helper to load all files in a directory/subdirectories // we use sync because this is called...

I'm getting this error when I update a pinia store and save the file. HMR crashes. HMR works fine with my pages/components etc. And starting the server fresh after a...

It sounds like the "block lengths" and "block types" errors might be separate issues. I'm working with a 3.5 MB zip file. When I use the Mac OSX compression tool...

+1 I'm troubleshooting memory leak issues on an application. What I'd like to be able to do is use my existing suite of Mocha tests to help uncover where the...

Currently I have two workarounds for this: 1. precompiling all my assets to js, and having karma reference those. This has the disadvantage of slowing down the feedback loop a...

Eh, I don't like their native API very much. [Lots of object initialization](https://github.com/sendgrid/sendgrid-nodejs/blob/master/examples/helpers/mail/example.js). Doesn't feel very idiomatic for Node.js. I just decided to call [their API](https://sendgrid.com/docs/API_Reference/api_v3.html) directly, and the code...