Skip to content

Instantly share code, notes, and snippets.

View kevinmmansour's full-sized avatar
🏠
Working from home.

Kevin M. Mansour kevinmmansour

🏠
Working from home.
  • MSK
  • Earth
View GitHub Profile
@kevinmmansour
kevinmmansour / Toggle-Stack-Overflow-Chat-Sidebar.user.js
Last active June 13, 2021 15:07
Toggle Stack Overflow Chat Sidebar.user.js
// ==UserScript==
// @name ToggleStackOverflowChatSidebar
// @version 1.0
// @description Toggle Stack Overflow Chat Sidebar (Hide & Show).
// @match https://chat.stackoverflow.com/*
// @match https://chat.stackexchange.com/*
// @author Kevin M. Mansour : https://stackoverflow.com/users/14945696/
// ==/UserScript==
var $document = $(document),
@kevinmmansour
kevinmmansour / README.MD
Created February 21, 2021 19:52
How to install LEMP in Ubuntu?

A LEMP software stack is a gathering of open source programming that is ordinarily installed together to enable a server to have dynamic sites and web applications. This term is really an acronym which speaks to the Linux working framework, with the ENginx web server (which replaces the Apache part of a LAMP stack).

First, update the system.

sudo apt-get update Then Install Nginx in your system.

sudo apt-get install nginx We can make autostart nginx in nginx by

@kevinmmansour
kevinmmansour / README.MD
Created February 21, 2021 19:49
How to install WordPress in Ubuntu Nginx Server?

WordPress is incredibly versatile, in that although it is primarily known as a blogging platform, it can be used to run a non-blog web site as well.

We already setup LEMP in ubuntu. If not then click the following link

When you finished LEMP then come back here for WordPress installation.

First, update your software.