Categories
Uncategorized

Live Text Editing on a Remote Server using Rmate and Rsub

Update October 2022: VSCode Shell Extension is different option What is a remote server? A remote server is a computer in a datacenter somewhere accessible through the internet (not your local network). Remote servers can be: Database servers Web servers DNS (Domain Name Service) servers Mail servers Proxy servers Application servers, and Real-time Communication Servers […]

Categories
MVC Web Development

What is MVC?

In the web development realm it is very common we hear the term MVC. Well What is MVC? MVC is a software design approach. MVC stands for: Model View Controller It is a template or pattern on how to structure a program. MVC has its origin in the Smalltalk language, MVC has been widely adopted […]

Categories
PHP PHP 5 Web Development

PHP & OOP: A Fundemental Tutorial on Object Oriented Programming and PHP

PHP & Object Oriented Programming PHP can be used both procedurally and with an object oriented approach. In PHP & procedural programming the emphasis lies with the actions and the steps that must be taken to perform actions such as submitting a form or retrieving a record from a database. In PHP & Object Oriented […]

Categories
Javascript Web Development

Why Javascript is not Working in Head Tag?

Why my javascript is not working in Head Tag? Have you been frustrated, and wonder why the javascript in your <head> tag is not working? Why javascript is not working in head tag? You must keep in mind that the position of your javascript within the code MATTERS. Your javascript’s code position with respect to […]