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

23 Jan 2022 01:25:58
Database queries with bindings and Query Builder essentials in CodeIgniter 4
CodeIgniter 4 offers a good range of tools for fetching data from database. There are simple queries, queries with bindings and a very good Query Builder class. I do not use simple queries, so leave them aside, and focus on the later two. A couple of (almost) self-explanatory ...

22 Jan 2022 19:08:58
Selecting items created within the current month in MySQL
Here is a quick query, which helps to find all the items added to a MySQL database table in the current month. Suppose today is January 18, 2022, and you want to get all the blog posts stored in Posts table, which were created within the last 18 days. Assuming that the table ...

11 Jan 2022 00:42:58
Make sass watch and compile scss files in the background
In this short article I look at how to make sass command watch and compile scss file in the background. If you run sass on the command line with --watch switch, it will block your terminal. You can regain access to the console with Ctrl+C, which will kill the process, or just ...

08 Jan 2022 20:42:47
Quick node and npm installation using nvm on Debian
Below is a bunch of CLI commands for installing Node using nvm command. NVM is a node version manager, basically a BASH script, which makes it easy to install and manage Node versions on an operating system like Debian GNU/Linux. Debian has a package called nodejs which contains ...