When we talk about operating systems, Linux stands out as a preferred and best in openness and collaboration. Over the years Linux has grown as free software and community-driven development platform, Linux has evolved into a powerful ecosystem that underpins a vast array of technologies, from smartphones and servers to embedded systems and supercomputers. At…
Join my Youtube Channel and Weekend session
Protected: KST
There is no excerpt because this is a protected post.
php laravel step by step
This tutorial is practical experience we use to learn php and laravel framework. First step is to have an php environment with laravel framework, a web server and a Database. you can install XAMP on your MAC/Windows/Linux I have setup the environment on my Linux server with mysql database. once your php setup is ready…
Git Repo, push from linux server
To push an existing Project directory to Git Repository, follow below steps –
Laravel Add botman package
To install botman package cd into laravel project directory – composer require botman/botman Warnings – Class App\Http\Controllers\Controller located in ./app/Http/Controllers/admin/Controller.php does not comply with psr-4 autoloading standard. Skipping. > Illuminate\Foundation\ComposerScripts::postAutoloadDump > @php artisan package:discover –ansi
Oracle Weblogic Server Overview and SSL Setup
Oracle WebLogic Server is a Java EE application server, which is developed by Oracle Corporation. It is one of the best and leading application servers for building and deploying enterprise class Java EE applications. WebLogic Server provides a very strong, robust, scalable, and secure runtime environment for Java applications. Oracle weblogic server offers below outlined…
Cloud and on-premises Security
Are security appliances in your network sufficient to keep your infrastructure and applications safe? Cyber threats in the form of- Application exploits (code problems, weak ciphers, deprecated code usage etc.) Database vulnerabilities (SQL injections, privilege escalation, weak passwords stored, deprecated keywords usage) Malware phishing Various forms of network attacks like – Man in the middle Retrovirus…
Docker and docker swarm, quick commands –
docker image ls docker ps -a docker container ls Docker Swarm – docker swarm init docker service ls docker service ps <name of the service> this will show the node where service is running docker swarm leave –force docker service logs kst-lv-de docker service logs kst-lv-de docker service ps kst-lv-dev docker service rm kst-lv-dev docker…
iPhone 12(Mini)
Apple launched its new product iPhone 12 and iPhone 12 mini, in October 2020. The new model is improved from the other models. It has the best camera, battery life, and screen size. In this blog, you will get to know all the specifications of the new iPhone 12 Mini. The Main Specifications of iPhone…
Python by examples
Python is high level object oriented language and is getting acclaimed beacuase of its simple yet robust features to develop, automate and visualise the applications. Its data analystics capabilities are amazing. I am going to share the example programs that I am using while learining it …. Call a Function-: import os, time, sys print(“hello”)…