Johnny Lee-Othon

Results 8 issues of Johnny Lee-Othon

Tried to use with a Python 3.4 project. Failed when tried to call Faker.getPopulator(). ``` Python 3.4.1 (v3.4.1:c0e311e010fc, May 18 2014, 00:54:21) [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)]...

The `psr-0` field in `composer.json` is wrong since the `ParsedownExtra` class (and also the classes in test files) are not PSR-0-compliant e.g. the classes are not even namespaced. Maybe it...

The list API (`ll.h`) supports the `find` and `hasObject` methods, which do the same thing except comparing objects by address or by custom comparison functions. Other functions such as `remove`...

Corto:TypeSystem
Hacktoberfest

`corto_ll_replace` has no return type so it is not possible to tell if a replacement was made. Maybe the return type could be `bool` such that it returns `TRUE` when...

Hacktoberfest

Take the following inheritance line `TestJsonInt < TestJsonValue < BaseTestJson < Suite`. `TestJsonInt` has the method `testMaxInt16`, together with many other methods. The classes exist in a package with a...

bug
question

Based on a conversation between @Seldomberry/owners: Important factors to take into consideration: - What are the needs of the intended primary users of Hyve? - Can we define the permitted...

Corto:TypeSystem

Generated methods for virtuals include snippets like the following: ``` /* Lookup method-object. */ _method = corto_interface_resolveMethodById(_abstract, _methodId); corto_assert(_method != NULL, "unresolved method '%s::visitScope(Scope node)@%d'", corto_idof(_this), _methodId); ``` `corto_idof(_this)` fails...

bug

After updating to v2.0.0, my minimal script (in Node): ```js const pcloudSdk = require('pcloud-sdk-js'); const client = pcloudSdk.createClient(process.env.MY_ACCESS_TOKEN); async function run() { const root = await client.listfolder(0); console.log(root); } run().catch(error...