Windows 10/11 – Copy & Replace only new or modified files. Skip same/unchanged files.
Skipping unchanged/unmodified files using Copy&Paste on Windows? Did you ever try how to move a whole directory to a backup folder, skipping all files which were not changed? This can not be done with simple copy/paste in Windows GUI. However, Windows already has...PHP Linked List with end and start List Node pointers
<?php class ListNode { public $data = NULL; public $next = NULL; function __construct(string $data = NULL) { $this->data = $data; } } class LinkedList { private $_firstNode = NULL; private $_lastNode = NULL; private $_totalNodes = 0; function insert(string $data =...Why we love PHP 7?
Things to remember why PHP 7 is great. In PHP 7.0: New features:https://www.php.net/manual/en/migration70.new-features.phpDepreciated featureshttps://www.php.net/manual/en/migration70.deprecated.php PHP Sandbox online here Catch errors! We can catch errors or...
Convert windows path to WSL path format
Let say that we want to cd to a windows explorer directory and we don’t want manually to rewrite all the backslashes. We could write a bash cmd which does just that. cd $(echo ‘C:\laragon\www\docker\phpfpm-mysql-nginx’ | sed ‘s/\\/\//g’ |...