- Default
html.css
implementations on different browser engines: - Credits:
- Found via Thomas Steiner‘s blog post:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Remove all animations and transitions | |
// for people who prefer not to see them | |
@media (prefers-reduced-motion: reduce) { | |
* { | |
animation-duration: 0.01ms !important; | |
animation-iteration-count: 1 !important; | |
transition-duration: 0.01ms !important; | |
scroll-behavior: auto !important; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---json | |
{ | |
"permalink": "/feed.json", | |
"eleventyExcludeFromCollections": true | |
} | |
--- | |
{ | |
"version": "https://jsonfeed.org/version/1", | |
"title": "{{ config.name }}", | |
"home_page_url": "{{ config.url }}", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ----------------------------------------------------------- | |
# Network configuration metadata | |
# | |
# - https://github.com/drduh/macOS-Security-and-Privacy-Guide#wi-fi | |
# ----------------------------------------------------------- | |
alias macos-wifi-configuration="defaults read /Library/Preferences/SystemConfiguration/com.apple.airport.preferences.plist" | |
alias macos-wifi-configuration-backup="macos-wifi-configuration > ~/Desktop/macos-wifi-configuration-backup-$(date +%F-%H%M).txt" | |
alias macos-wifi-grep-ssid="macos-wifi-configuration | grep wifi.ssid | tr -d \"[:blank:]\" | sort | uniq" | |
alias macos-wifi-grep-SSIDString="macos-wifi-configuration | grep SSIDString | tr -d \"[:blank:]\" | sort | uniq" | |
alias macos-wifi-network-names="macos-wifi-grep-SSIDString" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<!-- Plotly.js --> | |
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script> | |
</head> | |
<body> | |
<header> | |
<h1>Heat Map with Plotly.js</h1> | |
</header> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Add `upstream` Git repository | |
# git remote add upstream https://github.com/d2s/companies.git | |
# Merge latest changes from the `upstream` Git repository | |
git fetch upstream | |
git checkout master | |
git merge upstream/master |
- README of the
code-spell-checker
VS Code extension.
- Open up VS Code
- Press button F1
- Type
ext install code-spell-checker
to the command promnt and press Enter key.
Depending on the used platform, there are different ways to install Hugo.
Good starting point for learning Docker is to read following sections from the official Docker documentation. It is mainly a series of short tutorials, together with related documentation about syntax of commands, etc..
- Install Docker Engine
- Verify your installation
- Learn about images & containers
- Find and run the image from Docker Hub
- Build your own image by extending existing Docker container image with new
Dockerfile
Those are focusing mainly on how to get existing things from Docker Hub. Next thing to learn would be how to create things for running custom software on top of base Ubuntu Linux system image.
NewerOlder