If you don't know what Wireguard is, well, you should. It's fast, easy to setup and highly configurable. We will configure Wireguard for multiple users with various restrictions using iptables.
This should fit most setups (not mine though 😉)
javascript: (function () { | |
function AddTaskId() { | |
var project = document.getElementsByClassName('TopbarPageHeaderStructure-title')[0].textContent; | |
project = project.replace("BCHU ", "") | |
.replace("Runway", "STORE") | |
.toUpperCase() | |
.replace("IOS APP", "iOS"); | |
var d = new Date(); | |
var month = ('0' + (d.getMonth() + 1)).slice(-2); | |
var day = ('0' + d.getDate()).slice(-2); |
If you don't know what Wireguard is, well, you should. It's fast, easy to setup and highly configurable. We will configure Wireguard for multiple users with various restrictions using iptables.
This should fit most setups (not mine though 😉)
---------------------------------------------------------------- | |
Page 1 | |
---------------------------------------------------------------- | |
"Tech meets Trend: Transforming Ideas into Impact" | |
Tech by Hexagon Labs | |
---------------------------------------------------------------- |
<div class="multitab-code-editor"> | |
<div class="border-b border-gray-200 dark:border-gray-700"> | |
<nav class="flex space-x-2" aria-label="Tabs" role="tablist"> | |
<button type="button" class="tab-title" id="tab-1" data-hs-tab="#tab-1" aria-controls="tab-1" role="tab"> | |
JavaScript | |
</button> | |
<button type="button" class="tab-title" id="tab-2" data-hs-tab="#tab-2" aria-controls="tab-2" role="tab"> | |
TypeScript | |
</button> | |
<button type="button" class="tab-title" id="tab-3" data-hs-tab="#tab-3" aria-controls="tab-3" role="tab"> |
#!/bin/bash | |
# Function to display usage information | |
usage() { | |
echo "Usage: $0 <container_name>" | |
echo " - container_name: Name of the Docker container running MySQL" | |
exit 1 | |
} | |
container_name="$1" |
# Backup | |
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
# Restore | |
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |
# docker compose for Ghost | |
networks: | |
proxy: | |
name: web | |
external: true | |
services: | |
ghost: | |
image: beevk/ghost-s3:v1.0.0 | |
restart: always |