Nikolaos Dimopoulos

Results 47 issues of Nikolaos Dimopoulos

I tried find() and it worked. Specifying properties outside the table in columns may be a "don't do", but the results I get seem strange. Even if I didn't specify...

bug

Below is a list of all the NFRs that we have in the project. The list will be updated regularly. NFRs can be removed because they are implemented or will...

new feature request

```zephir private function filterQuery(string value) -> string { return preg_replace_callback( '/(?:[^%:!\$&\'\(\)\*\+,;=@\/\?]+|%(?![A-Fa-f0-9]{2}))/u', [this, 'doUrlEncode'], value ); } private function doUrlEncode(array matches) -> string { return rawurlencode(matches[0]); } ``` The above produces...

bug

We need support for `: self` as a return word for method calls.

nfr

It would be great if we can get support for variadic functions using the `...` operator (same as in PHP) instead of relying on `func_get_args()` This will greatly help when...

nfr

It would be great if we have the ability to build an extension using a sub namespace For instance: Project: `main-first`, namespace `Main\First` Project: `main-second` namespace `Main\Second` and then extension=main-first.so...

nfr

``` var manager, value, exists; let manager = new Manager(); let value = "4"; let exists = manager->exists((bool) value); ``` The last line does not compile and you get ```...

enhancement

It would be great if `zephir api` can produce markdown based on a template provided.

nfr

Relating to #1798 If we can get the `api` command to generate a JSON file then that would probably be better since then a simple parser can be used to...

nfr

**Describe the bug** Installed the client as per the instructions. Added my username/password. Issue `sudo protonvpn connect -r` Connection comes up, everything works fine. Roughly 45-60 minutes I lose connection....