In this tutorial, we are going to create a Shopping Cart using HTML and CSS. We’re going to use Google Fonts for this tutorial, more specifically “Roboto.”
Perl Hashes
Variables whose names begin with %
are hashes, which are essentially arrays subscripted by strings. As with arrays, %sue
is a hash, and it is a different variable from $sue
, though members of %sue
are selected by $sue{$s}
.
How To Install LAMP in Ubuntu 18.04
The objective of this tutorial is to install the LAMP stack (Linux, Apache, MySQL and PHP server) on Ubuntu 18.04 “Bionic Beaver”, which is now available in the ITLC’s Xen Orchestra sandbox as a “Quick Instance”.
Create a WordPress Post from Node.js
WordPress uses an XML-RPC interface by default. XML-RPC is a remote procedure call (RPC) protocol which uses XML to encode its calls and HTTP as a transport mechanism. With WordPress XML-RPC support, you can post to your WordPress blog using many popular clients. You could even consider writing your own client application using Node.js. Let’s do a proof of concept.
Saving Data to MongoDB Database from a Node.js Application
How To Configure DHCP Server 2016 Filters
DHCP Filters are primarily used to further shield an infrastructure by allowing or denying specific clients based on their MAC addresses. Setting up DHCP Filters is quite simple and works at the server level, not at Scope level.
Random Password Generator with Node.js
Now that Node.js server is available as a template via Xen Orchestra it’s time to look at some of the cooler stuff you can do with Node.js. Here are instructions for how to build your own online Random Password Generator.
Ruby Methods (Part 2)
Here’s another use of methods. Notice that when we send an array as a parameter, changes in the function do update the value to the caller.
How to install Mono on Ubuntu 16.04
Sponsored by Microsoft, Mono is an open source implementation of Microsoft’s .NET Framework based on the ECMA standards for C#and the Common Language Runtime. A growing family of solutions and an active and enthusiastic contributing community is helping position Mono to become the leading choice for development of cross platform applications.
Get and Show Parameter from URL in Contact Form 7
There are times when using the popular Contact Form 7 WordPress plugin where you need to pass a parameter from the URL and into a hidden field or display it in the form.