Skip to content

Instantly share code, notes, and snippets.

View michalkortas's full-sized avatar
:octocat:
Working hard

Michal Kortas michalkortas

:octocat:
Working hard
View GitHub Profile
@michalkortas
michalkortas / index.htm
Created December 10, 2020 07:53 — forked from bennadel/index.htm
Checking To See If An Element Has A CSS Pseudo-Class In JavaScript
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>
Checking To See If An Element Has A CSS Pseudo-Class In JavaScript
</title>
<link rel="stylesheet" type="text/css" href="./demo.css" />
</head>
@michalkortas
michalkortas / deploy.sh
Created December 28, 2019 20:23 — forked from BenSampo/deploy.sh
Laravel deploy script
# Change to the project directory
cd /home/forge/domain.com
# Turn on maintenance mode
php artisan down
# Pull the latest changes from the git repository
# git reset --hard
# git clean -df
git pull origin master