asrar

Results 97 comments of asrar

> In theory, it should be possible but unless Apache has stable ABI for modules, you would probably also need to ensure that the PHP is linked against the same...

> No. But that is what this repo is for. Ok, so older modphp versions can be added to this flake?

> If you want to to run Apache from Nix, you are best off looking at the relevant NixOS module. For example, this is how you get PHP with `mod_php`:...

> Sure, just do as mentioned above [#325 (comment)](https://github.com/fossar/nix-phps/issues/325#issuecomment-1934387999) I'm yet to try this overlays approach, it would be handier if it was prepackaged in this flake itself, basically I'm...

> i don't think what has been discussed in this issue is really the biggest challenge with what @aszenz is attempting to do - generating a configuration file for `apache`...

I have ran into the same issue, this causes issues when generating types from schema, i have to handle the interface type even though i already know it would be...

I would like to see a focus on component based templating over overriding/inheritance. For that macros need an improvement specifically the need to import them separately in every block. Would...

Yes creating own test doubles is indeed a nicer way. I personally think mocks are not useful for testing anything valuable, they provide a false sense of security and almost...

Thanks for the video, what i get from the video is that mocking is useful for fleshing out modular designs when doing TDD. One objects interaction with other objects is...

> 1) It's probably the problem when TDD is not used. TDD helps us write testable code. Highly complicated objects with lots of dependencies don't seem like a good design....