Tag Issue

WSL1 became unusable - I finally switched to WSL2

When WSL1 first appeared I was pretty excited, a lot of people claim today that because WSL, Windows is the best platform for developers, personally these days I think any OS from the big three can act as a perfect developing platform since many of us use docker anyway.

But back to WSL1, what I really liked was the WSL1 was Cygwin on steroids a kind of "Linux Wine", and that meant a lot from the perspective of OS development, because it really was a step in the direction of merging OSes rather...

View full article

Async Task without Queue or E-loop PHP

Most react-PHP code I've seen in the open that is not extension-based (doesn't extend the PHP core language) uses some kind Event-Loop, something similar to how many technologies or languages(I.e. JavaScript) implement concurrency that doesn't support threads.

And historically on single-core CPU's threads practically transformed into loops underneath. But the main idea is that in many languages, an async behavior is very easily achieved, maybe you need a keyword, maybe you need a special class,...

View full article

PHP 7.0.24 Curl Bug on Windows

As you probably know running PHP on Windows is a bad idea as you can get into a plethora of problems even for a simple development setup but, when you want to test a quick script or you just want to write maybe a solution to an algorithmic problem found on some type of programmer improvement site that accepts solutions in PHP you can use of course some prebuild windows binaries from windows.php.net. Anyway, the main gist of this mini-post is that I found a recurring bug with the CURL library, th... View full article

Avast breaks the ability to create new User on Win

I had to make a new user on a Windows 7 workstation machine, and the simple create user procedure failed miserably,  I thought maybe there are some permission problems.

The user created with GUI ( either control panel or MMC)  or from the console with the "net user command", spawned multiple 'profile' and 'temp' folders in the USERS folder, didn't create the necessary registry entries.

And if you logged in with any of the created users you got a perpetual "preparing desktop" and when ...

View full article