One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
::-webkit-scrollbar { | |
-webkit-appearance: none; | |
width: 7px; | |
} | |
::-webkit-scrollbar-thumb { | |
border-radius: 4px; | |
background-color: rgba(0, 0, 0, .5); | |
-webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5); | |
} |
<!DOCTYPE html> | |
<html lang="en" class="no-js"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Unique page title - My Site</title> | |
<script type="module"> | |
document.documentElement.classList.remove('no-js'); |
ag -l "search string" | xargs sed -i '' -e 's/from/to/g' |
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
Here are the simple steps needed to create a deployment from your local GIT repository to a server based on this in-depth tutorial.
You are developing in a working-copy on your local machine, lets say on the master branch. Most of the time, people would push code to a remote server like github.com or gitlab.com and pull or export it to a production server. Or you use a service like deepl.io to act upon a Web-Hook that's triggered that service.
/* | |
If you ever had to fix element on scroll, | |
you probably had an issue on iOS Safari | |
(and other mobile devices). Element will | |
usually flicker, and disappear until scrolling | |
has stopped completely. | |
Just force GPU acceleration by adding transform: | |
translate3d(0,0,0); to your element. | |
*/ |
var mobileCheck = { | |
ios: (function(){ | |
return navigator.userAgent.match(/iPhone|iPad|iPod/i); | |
}()), | |
android: (function(){ | |
return navigator.userAgent.match(/Android/i); | |
}()), | |
blackBerry: (function(){ | |
return navigator.userAgent.match(/BB10|Tablet|Mobile/i); | |
}()), |
# To recursively give directories read&execute privileges: | |
chmod 755 $(find /path/to/base/dir -type d) | |
# To recursively give files read privileges: | |
chmod 644 $(find /path/to/base/dir -type f) | |
#Or, to reduce chmod spawning: | |
find /path/to/base/dir -type d -print0 | xargs -0 chmod 755 | |
find /path/to/base/dir -type f -print0 | xargs -0 chmod 644 |
// To get the language of your visitor: | |
var language = window.navigator.userLanguage || window.navigator.language; | |
console.log(language); |