Kyle Fazzari

Results 27 issues of Kyle Fazzari

Hey there! First of all, I love the project. It's been very useful to me! I've been maintaining a [snap for it](https://snapcraft.io/testssl) for a few years now, and it has...

## Summary (include Python version) Using Python 3.6.9 and iexfinance v0.4.3, I'm trying to fetch the closing price of a number of stocks. Some of them are oddly `None`: ```...

awaiting provider
provider bug

How do I go about defining a command-based mock that can be shared between `*_spec.sh` files?

Snapcraft v7 ripped out APIs we are using in our plugins (no deprecation notices or anything). As a result, the Nextcloud snap doesn't build with snapcraft v7. See [here](https://forum.snapcraft.io/t/snapcraft-7-refuses-to-build-core18-snap/30592?u=kyrofa) for...

feature

The snap upgrade process is frustratingly opaque. It looks like Nextcloud is down for however long it takes to complete the upgrade. This should be far more user-friendly, at least...

feature

I recommend [acme.sh](https://github.com/acmesh-official/acme.sh) or something similar. Requirements: - Existing installations shouldn't even notice the switch (will require configuration [migrations](https://github.com/nextcloud-snap/nextcloud-snap/tree/master/src/migrations)) - Existing certs should continue renewing seamlessly (see the [`renew-certs`](https://github.com/nextcloud-snap/nextcloud-snap/blob/master/src/https/bin/renew-certs) executable)...

feature
help wanted

This test passes ``` it("should compare properly", function() { var galQty = Qty("1 gal"); var qtQty = Qty("4 qt"); expect(galQty.eq(qtQty)).toBeTrue(); }); ``` However, for more complex units it fails: ```...

There are numerous libraries out there (sugarjs, prototypejs) that extend the `Array` prototype. The `simplify` function in js-quantities relies on setting/checking properties on an array instance, which means that it's...

When simplifying numerators/denominators, js-quantities uses an array as both an array and an object, setting properties on it. This makes js-quantities incompatible with libraries that extend `Array.prototype`, like sugarjs and...

This means I need to pass around non-const references to packets if I want to serialize them, which isn't ideal as it makes my API unclear (and somewhat unsafe). Is...