Programming

Articles about Programming

Entries feed - Comments feed

November 28, 2022

How to make simple Authentication with CodeIgniter 4

I looking for great php framework and great choice for me is Codeigniter 4. Framework have a small footprint, simple for use over complexity and very fast. Question: How to make simple Authentication with CodeIgniter 4 ? Answer: You can to use official packages Shield or build own. I will fast build  […]

Continue reading

October 26, 2021

Install Node.js 17 on Debian 11

As an asynchronous event-driven JavaScript runtime, Node.js is designed to build scalable network applications. Nodejs team build Debian custom repositrory and instalation of nodejs is very simple : sudo curl -fsSL https://deb.nodesource.com/setup_17.x | bash - sudo apt-get install -y nodejs    […]

Continue reading

October 22, 2021

Installation of latest Composer

Composer is a tool for dependency management in PHP. It allows you to declare the libraries your project depends on and it will manage (install/update) them for you. Composer requires PHP 5.3.2+ to run. A few sensitive php settings and compile flags are also required, but when using the installer  […]

Continue reading