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
# 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 | |
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
# This is a template .gitignore file for git-managed WordPress projects. | |
# | |
# Fact: you don't want WordPress core files, or your server-specific | |
# configuration files etc., in your project's repository. You just don't. | |
# | |
# Solution: stick this file up your repository root (which it assumes is | |
# also the WordPress root directory) and add exceptions for any plugins, | |
# themes, and other directories that should be under version control. | |
# | |
# See the comments below for more info on how to add exceptions for your |
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
# Beispiel-Datei für WP-Passwortschutz | |
# https://www.wp-sicherheit.info | |
# Marc Nilius, [email protected] | |
# Absicherung der wp-login.php | |
# Der Zugriff eines nicht-eingeloggten benutzers aucf /wp-admin | |
# leitet auch auf die wp-login.php weiter, so dass hiermit | |
# alles abgesichert ist | |
# | |
# Den Pfad zur .htpasswd entsprechend anpassen |
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
-- TweetSongViaTweetbot.applescript | |
-- Copy title, artist, album and year of playing song from iTunes to Tweetbot | |
-- Author: Sascha Foerster | |
-- based on script from: Romain Briche | |
-- iTunes and Tweetbot active? | |
tell application "System Events" | |
if not (exists application process "Tweetbot") or not (exists application process "iTunes") then | |
display alert "iTunes and Tweetbot required" message "You have to launch iTunes and Tweetbot before executing script" | |
end if |
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
<?xml version="1.0" encoding="utf-8"?> | |
<style xmlns="http://purl.org/net/xbiblio/csl" version="1.0" class="note" default-locale="de-DE"> | |
<!-- | |
================================================================================ | |
INFORMATIONEN ZUM ZITIERSTIL | |
================================================================================ | |
--> | |
<info> | |
<title>Sascha Foerster - Geisteswissenschaft (German)</title> | |
<title-short>zoteroSF</title-short> |