sWWW - Sylwester Wojnowski
CODE FOR THE WEB
30 Aug 2017 15:51:20
Article on middle-item-first array traversing schemes implemented in PHP with code examples.
Read full article »
21 Dec 2016 11:07:56
List of Unicode code points for Genericons vector icon set and a BASH script that finds the codes.
Read »
29 Apr 2017 16:41:28
Sorting UTF-8 encoded strings using strcoll and usort functions or alternatively Collator library in PHP.
03 Jul 2017 13:58:12
Article on traversing tree data structure depth-first in pre-order recursively with examples in PHP programming language.
29 Jun 2018 19:38:09
Encrypting files and directories of files with public key and ciphers using GnuPG and gpg-zip.
27 Apr 2018 14:14:09
An article on Mister Spy Bot website hack and how to defend against it.
01 Aug 2020 16:35:27
Using cURL over HTTP with TLS to access your web mailbox and collect data from it.
08 Mar 2017 07:21:06
A couple of days ago I needed a jQuery plugin scaffolding with Qunit and grunt tasks. I had a quick look at what was available online and I found a scaffolding that seemed decent but it was also fairly outdated. Among other issues, grunt qunit task wouldn't work with it ...
Read more »
05 Mar 2017 16:33:19
The problem of substituting file contents in place on the command line is an old one. Often it creeps out when dealing with configuration or other text files. You just need a quick substitution , perhaps with sed, but what you end up with is frequently either none or a wrong ...
28 Feb 2017 17:14:22
Recently, I have written an article on installing PHPUnit with a BASH script. In this post I take a step forward with the subject and build a skeleton for testing PHP class(es) with the framework. Like in the first article on PHPUnit, and in fact in pretty much every post on ...
18 Feb 2017 15:10:51
If you are any serious about writing code in PHP computer language you have tried some unit testing frameworks by now. Some of them are better than others, one that really stands out, both in terms of code quality and documentation is Sebastian's Bergmann PHPUnit. ...