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
{ | |
"results": [{ | |
"url": "https://netflix.com", | |
"favicon": "https://api.faviconkit.com/netflix.com/144", | |
"name": "Neflix", | |
"description": "Filme und Serien" | |
}, | |
{ | |
"url": "https://app.plex.tv", | |
"favicon": "https://api.faviconkit.com/app.plex.tv/144", |
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
{ | |
"array": [ | |
1, | |
2, | |
3 | |
], | |
"boolean": true, | |
"null": null, | |
"number": 123, | |
"object": { |
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
# first, install Cypress, then run all tests (in parallel) | |
stages: | |
- build | |
- test | |
# to cache both npm modules and Cypress binary we use environment variables | |
# to point at the folders we can list as paths in "cache" job settings | |
variables: | |
npm_config_cache: "$CI_PROJECT_DIR/.npm" | |
CYPRESS_CACHE_FOLDER: "$CI_PROJECT_DIR/cache/Cypress" |
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
<!DOCTYPE html> | |
<html> | |
<title>Hello Strapdown</title> | |
<xmp theme="united" style="display:none;"> | |
# Markdown text goes in here | |
## Chapter 1 | |
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore |
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
cat ~/.ssh/id_rsa.pub | ssh <user>@<hostname> 'cat >> .ssh/authorized_keys && echo "Key copied"' | |
# ALTERNATIVE | |
ssh-copy-id "[email protected] -p <port-number>" | |
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
#!/bin/bash | |
### $0 is a simple bash script to control your Plex client | |
### | |
### Usage: plex [<command>] | |
### | |
### Available commands: | |
### up Navigate up | |
### down Navigate down | |
### left Navigate left | |
### right Navigate right |
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
synoindex -R [all|media|photo|music|video|thumb|dirpath] | |
# only subfolder | |
synoindex -R /volume1/photo/ordner/ | |
#start/stop packages | |
/var/packages/Docker/scripts/start-stop-status stop |
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
# .zshrc Source Basic | |
source /usr/local/share/antigen/antigen.zsh | |
# Load the oh-my-zsh's library. | |
antigen use oh-my-zsh | |
antigen bundles <<EOBUNDLES | |
# Bundles from the default repo (robbyrussell's oh-my-zsh). | |
brew |
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
#!/bin/sh | |
if [ "$1" ]; then | |
open -a "Marked" "$1"; | |
else | |
open -a "Marked"; | |
fi |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>HTML5 Test Page</title> | |
</head> | |
<body> | |
<div id="top" class="page" role="document"> | |
<header role="banner"> |