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

11 Jan 2017 12:58:48
Env and BASH declare
Environmental variables on a Linux based system like Debian are named strings available to all applications initialized from text console or some graphical interface. These variables are gradually added by various processes as your system starts. Once login shell is invoked ...

03 Jan 2017 13:03:49
Updating WordPress database URLs - part 2
Updating WordPress database URLs, part 2 - a database-wide approach. All tables get scanned and old URLs updated to new ones. Also serialized data is properly dealt with. The script The script is a general purpose filter, it takes INPUTDB, which is name of the database (as ...

01 Jan 2017 15:27:35
Updating WordPress database URLs - part 1
Update URLs in WordPress database. A word of caution Make sure you don't introduce changes on a live website and that you keep the original backup file till you're sure that new setup works as required. Before you run the script given belowmake sure you have user ...

29 Dec 2016 06:59:28
Find first image URL in WordPress post content
Find first image URL in the article with PHP. function find_first_image_src($post) { $matches = array(); preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches); return count($matches[1]) > 0 ? ...