Web Developer

Web developer is a programmer who specializes in development of World Wide Web applications. These applications utilize a client-server model and rely on technologies an programming languages like HTML, CSS, JavaScript for client and PHP or Python for server.
Web developers build all the visual elements that users see and use in a Web application as well as all the web services that are needed to power the Web application.
There are three kinds of Web developers: front-end Web developer, backend-end Web developer and full stack Web developer. Front-end developers are responsible for behaviour and visuals on the client side, you know all these flashy images and animations, while back-end developers deal with code run on the server. Full stack Web developers develop both for the client and the server. They are the go-to guys when a database needs an update or a search form is not returning results properly.
In simple words, if you need a website or already have one that needs an update or an extension you most likely need a Web developer. Which one, you will ask? Well, it depends on what needs fixing. More often than not, both pieces of code on the server and the client side need rewriting. So, a full stack web developer is the safest choice.
Web Development

Web development is work involved in developing web applications and refers to writing markup and coding. For the last 20+ years web development has been a fast growing industry with the growth driven by businesses wishing to use their Web sites to advertise and sell their products and services to customers.
In simple terms, if you need a new Web site or want to extend or update an existing one you need web development work done.
Search Engine Optimization

Search Engine Optimiazation (SEO) is the process of improving the quantity and quality of unpaid traffic to a Web application from search engines. Quantity of traffic means as many visitors should see your Web application as posible, while traffic quality referes to visitors who are genuinely interested in contents of a web application they are being directed to by a search result.
In simple terms, if you own a Web site, you most likely want many visitors to see it. No matter what service or product you sell, the ultiamte goal is to convert as many of these visitors into returning customers. SEO can greatly help with this.
Web Developer for Hire
If you need a web developer for web development or SEO work on you website, drop me a line!
I am based in the UK but more than happy to consider remote work opportunities.
Certificates



Web Developer Zone
Web Developer Zone is a code first section devoted to tools and techniques used in web development. Entries in the section contain minimum descriptions and are intended for web developers used to reading lightly documented computer code. Thematically the focus of this section is on PHP, Linux + BASH, JavaScript and Python.
Pick of the week

Formatting array of numbers recursively in PHP
12 Aug 2017 15:57:38
Article on formatting arrays of numbers using sprintf PHP function and recursion.
Popular

29 Jun 2018 19:38:09
Symmetric and asymmetric - key encryption with gpg and gpg-zip
Encrypting files and directories of files with public key and ciphers using GnuPG and gpg-zip.

21 Dec 2016 11:07:56
Genericons unicode values
List of Unicode code points for Genericons vector icon set and a BASH script that finds the codes.

14 Jul 2020 11:08:06
Recursively updating deeply nested arrays in PHP
An article on recursively updating deeply nested arrays using array_walk_recursive and custom nested array traversal function in PHP.

29 Apr 2017 16:41:28
Sorting UTF-8 strings in PHP
Sorting UTF-8 encoded strings using strcoll and usort functions or alternatively Collator library in PHP.

03 Jul 2017 13:58:12
Traversing trees in pre-order recursively in PHP
Article on traversing tree data structure depth-first in pre-order recursively with examples in PHP programming language.

27 Apr 2018 14:14:09
Dissecting Mister Spy Bot website hack
An article on Mister Spy Bot website hack and how to defend against it.
Recent

05 Apr 2017 10:53:55
Number of primes between two numbers
A script for finding all the primes there are between two given numbers. Primes class /* Class: Primes - find whether number is a prime or find all primes between a pair of numbers Author : Sylwester Wojnowski WWW : wojnowski.net.pl Methods: public ...

17 Mar 2017 13:36:30
Optimizing JPEG graphics files with ImageMagick
A script for optimizing JPGs with ImageMagick below. The script #!/usr/bin/env bash # script : optimize_jpegs.sh # description : optimize JPEG images in place # prerequisites : ImageMagick program suite installed on the system # Author : Sylwester Wojnowski # WWW : ...

05 Mar 2017 16:33:19
Substituting file contents in place with BASH and sed
Here is how to substitute file contents in place with sed or BASH Substituting in place with sed # Usage : sed_sub_in_place search replace file # ^[\].*$ escaped in search (Basic Regular Expressions) # / and & escaped in replace ( escape BRE special characters: ^[\].*$ ...

18 Feb 2017 15:10:51
installing PHPUnit
Install PHPUnit with a BASH script. PHPUnit installing and executing script The script below, called install_phpunit.sh, can be run with no arguments, in such circumstances it installs current stable release of PHPUnit. It checks for root privileges before it begins ...