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 | |
# | |
# Script migrates git repos incl. branches and tags | |
# from an old remote host to a new one | |
# | |
# Specify one old and new remote destination per line | |
# and separate them with a space | |
repos=( | |
"[email protected]:inlupus_servers/ansible_config.git [email protected]:inlupus/ansible_config.git" |
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 | |
# this script lists all images and available tags and proposes commands to delete older images | |
# adapt the registry uri of the gcp container registry | |
registry=eu.gcr.io/YOUR_PROJECT_ID | |
NL=$'\n' | |
echo "fetching repos..." | |
repos=$(gcloud container images list --repository $registry | tail -n +2) |
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
from datetime import timedelta, datetime | |
from calendar import monthrange | |
from exchangelib import DELEGATE, Account, Credentials, EWSDateTime, EWSTimeZone, Configuration | |
import getpass | |
email = raw_input('Enter your email address: ') | |
password = getpass.getpass('Enter your password: ') | |
credentials = Credentials(email, password) | |
config = Configuration(server='outlook.office365.com', credentials=credentials) |
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
//Disclaimer: this code is a quick and dirty proof of concept and I am not a JavaScript developer | |
//see the full story on Medium: https://medium.com/@schafele/serverless-firefighting-deliver-emails-to-slack-using-mailgun-google-cloud-functions-a7e10475d1a2 | |
const channel = "#yourchannel"; | |
const username = "alarm"; | |
const token = "your token"; | |
const { WebClient } = require('@slack/client'); | |
const web = new WebClient(token); |
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 Step: Migrate Tool | |
Second Step: Setup of InvoicePlane | |
Additional SQL Commands: | |
ALTER TABLE `ip_invoices` ADD `invoice_status_id` TINYINT(2) NOT NULL DEFAULT '1' AFTER `client_id`; | |
ALTER TABLE `ip_quotes` ADD `quote_status_id` TINYINT(2) NOT NULL DEFAULT '1' AFTER `client_id`; | |
set all invoices to status "paid" (sent=2): |
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
var germanFormatters = d3.locale({ | |
"decimal": ",", | |
"thousands": ".", | |
"grouping": [3], | |
"currency": ["€", ""], | |
"dateTime": "%a %b %e %X %Y", | |
"date": "%d.%m.%Y", | |
"time": "%H:%M:%S", | |
"periods": ["AM", "PM"], | |
"days": ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"], |