Sandu Liviu Catalin

Results 12 comments of Sandu Liviu Catalin

Same issue on 21.04 with a GTX 1080.

It seems the key also escapes from text area to changing the texture/material quality (*screen bottom*) in the sample (*including specular*). I assume that 1. specific combination of those causes...

> Hi there, it looks like your PHP configuration is missing a few items that are responsible for making URL rewriting work. Or are they maybe part of the includes?...

This is the included `snippets/fastcgi-php.conf` ```cfg # regex to split $uri to $fastcgi_script_name and $fastcgi_path fastcgi_split_path_info ^(.+?\.php)(/.*)$; # Check that the PHP script exists before passing it try_files $fastcgi_script_name =404;...

@crazyhappygame I doubt he can. The original licensee would be [Creative Technology](https://en.wikipedia.org/wiki/Creative_Technology). He simply maintains the project. Which is allowed because it satisfies LGPL. You wouldn't be the first to...

While this is neat. I don't see people dealing with backwards compatibility. Or the engine itself. The way I see it is you pick a version and stick with it....

Maybe this might be a dumb suggestion. But what if we implement a thin wrapper type for fundamental types with an explicit constructor. So as to avoid implicit conversions. Imagine...

From what I could observe, the increase in CPU usage and duration might come from the **Real-time protection** feature of Windows. Which to this day I can't seem to be...

I haven't tried this but I'm guessing that one could add the `msys2` folder as an [exception to windows defender via a command line](https://stackoverflow.com/questions/40233123/windows-defender-add-exclusion-folder-programmatically): ``` Add-MpPreference -ExclusionPath "C:\msys64" ``` I...

I guess you could use an existing keyword `extends` if you don't want to overburden yourself with symbols or new keywords. ```D local x = {foo=null, bar=true} extends foo(); ```...