Panagiotis Kosmidis

Results 41 comments of Panagiotis Kosmidis

Will this pull request be merged or no? compress won't run with node 0.6 :(

For me when I press ⌘ + ⇧ + : the spellcheck window comes up and it works just fine, the only annoying thing is that right click is not...

I have the same issue as frank mentioned. In addition, if you try to use `DynamicProxyServiceProviderFactory` with `services.Decorate()` method that is provided by Scrutor like so: ![image](https://user-images.githubusercontent.com/400362/183240453-e3c0ba0a-3cbc-43df-8ec5-2a879b77e06d.png) You'll be getting...

@Hywan Sorry I might have missed your comment! yes, that is true for `\Hoa\Exception\Idle` but not for `\Hoa\Exception\Exception` (at least not for what I have downloaded with `composer require hoa/exception`...

Just in case anyone falls into the same issue as I did, check your `composer.json` file because you might either have `"minimum-stability": "stable"` or `"prefer-stable": true`. also after your modifications...

I prefer the current way, besides if all resource params will be named as `id` then how we will apply [Route Param Pre-conditions](http://expressjs.com/guide.html#route-param pre-conditions)? I think it is more clear...

ok, I got it wrong, `req.session` is undefined with `app.get` too, in the above example I didn't had `/404` route set as I though I had `app.use` with a method...

it seems that if I setup resources before `app.configure` they work but they don't have `req.session` object (which is normal since the session is not yet initialized) if I setup...

From what I understood so far from the debugging I did is that if you use `app.enable('strict routing')` with express-resource you'll have some un-expected behavior thus I disabled it (although...

What I ended up doing is the following: ```java import io.github.palexdev.materialfx.controls.BoundTextField; import io.github.palexdev.materialfx.controls.MFXTextField; import io.github.palexdev.materialfx.skins.MFXTextFieldSkin; import javafx.beans.property.*; import javafx.scene.control.IndexRange; import javafx.scene.control.Skin; import javafx.scene.control.TextFormatter; import java.util.ArrayList; import java.util.List; public class MaskField...