This file contains hidden or 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
wget http://cdn.geekbench.com/Geekbench-4.2.2-Linux.tar.gz | |
tar -zxvf Geekbench-4.2.2-Linux.tar.gz | |
cd Geekbench-4.2.2-Linux | |
./geekbench_x86_64 | |
echo END |
This file contains hidden or 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
sudo add-apt-repository ppa:wireguard/wireguard | |
sudo apt-get update -y | |
sudo apt-get install -y libmnl-dev libelf-dev linux-headers-$(uname -r) build-essential pkg-config | |
sudo apt-get install -y wireguard | |
sudo apt-get install -y resolvconf | |
sudo modprobe wireguard && lsmod | grep wireguard | |
sudo wg-quick up wg0 |
This file contains hidden or 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 | |
error=0 | |
# To use this script to assign Apple Remote Desktop permissions, define the following: | |
# | |
# The username of the account that needs to be assigned Apple Remote Desktop permissions. | |
# The name of the Apple Remote Desktop management group which assigns the right permissions. | |
# | |
# The Apple Remote Desktop group permissions are defined below: |
This file contains hidden or 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"> | |
<title>title</title> | |
<link rel="stylesheet" href="style.css"> | |
<script src="script.js"></script> | |
</head> | |
<body> |
This file contains hidden or 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/bash | |
# Finde alle Filmordner | |
MOVIES=$(find . | grep STREAM$) | |
# Für jeden Film: | |
for M in $MOVIES | |
do | |
# Liste alle Filmdateien auf |
This file contains hidden or 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/bash | |
# Finde alle Filmordner | |
MOVIES=$(find . | grep STREAM$) | |
# Für jeden Film: | |
for M in $MOVIES | |
do | |
# Liste alle Filmdateien auf |
This file contains hidden or 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
const ids = { | |
'www.mediamarkt.de': [ | |
2661939, | |
2661938 | |
], | |
'www.mediamarkt.at': [ | |
1716302, | |
1797340, | |
1797339, | |
1821625, |
This file contains hidden or 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 | |
prometheus_version=$1 | |
sudo useradd --no-create-home --shell /bin/false prometheus | |
sudo mkdir /etc/prometheus | |
sudo mkdir /var/lib/prometheus | |
sudo chown prometheus:prometheus /etc/prometheus | |
sudo chown prometheus:prometheus /var/lib/prometheus | |
curl -LO https://github.com/prometheus/prometheus/releases/download/v$prometheus_version/prometheus-$prometheus_version.linux-amd64.tar.gz | |
tar xvf prometheus-$prometheus_version.linux-amd64.tar.gz | |
sudo cp prometheus-$prometheus_version.linux-amd64/prometheus /usr/local/bin/ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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 | |
# Usage : ./scanio.sh <save file> | |
# Example: ./scanio.sh cname_list.txt | |
# Premium | |
function ech() { | |
spinner=( "|" "/" "-" "\\" ) | |
while true; do | |
for i in ${spinner[@]}; do | |
echo -ne "\r[$i] $1" |