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 | |
# | |
# Create a post for Jekyll | |
# Configuration | |
EDITOR='Atom' | |
DATE=`date +%Y-%m-%d` | |
DOCFORMAT='md' # Without Point (!) | |
DIRECTORY='./_posts/' |
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 | |
# | |
# 1. This script copies all *.jpg-files to a new folder | |
# 2. Jumps into folder and resizes all files with sips | |
# 3. Renames all files and uses information from sips | |
# | |
folder="processed" | |
height="320" | |
width="160" # not used |
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 | |
# | |
# Dieses Script fragt nach einer Bildatei, die dann in die | |
# verschiedenen Favicon-Größen mittels sips-Kommandos | |
# umgewandelt werden. Ist auf dem Rechner das Programm | |
# ImageOptim installiert, dann werden die Bilddateien | |
# anschließend verlustlos optimiert. | |
# Farbvariablen für formatierte Ausgabe | |
reset='\033[0m' |
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 | |
# Rename Files with Date from File plus Extra Characters | |
clear; | |
# Farben zurücksetzen | |
printf '\e[0m' | |
echo " ____ ____ ____ ____ ____ ____ ____ " | |
echo " ||R |||e |||n |||a |||m |||e |||r ||" | |
echo " ||__|||__|||__|||__|||__|||__|||__||" | |
echo " |/__\|/__\|/__\|/__\|/__\|/__\|/__\|" | |
echo |
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
# | |
# When renaming files in terminal, you can use their time stamp. This bash/shell script helps you. | |
# | |
# One liner: for f in *.jpg; do D=$(date -r $(stat -f %B $f) +%Y-%m-%d-%H-%M-%S); mv -vi "$f" "$D-$f"; done | |
for datei in *.jpg | |
do VARIABLE_WITH_FORMATTED_DATE=$(date -r $(stat -f %B $datei) +%Y-%m-%d-%H-%M-%S) | |
mv -vi "$datei" "$VARIABLE_WITH_FORMATTED_DATE-$file" | |
done |
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
{% comment %} | |
# | |
# This is a nested liquid loop for Jekyll to iterate through YAML data with | |
# a depth of three levels. The example loops through a potential table of | |
# contents of a book. | |
# | |
# This is the example YAML content' | |
- chapters: 'Einführung' | |
sub_chapters: |
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
{% comment %} | |
# | |
# I modified the original code from http://anjesh.github.io/2015/01/25/collection-pagination-working-github-pages/ | |
# | |
# Make a collection in _config.yml and create the folder _your_collection in your root. | |
# | |
# collections: | |
# your_collection: | |
# output: true | |
# permalink: /:collection/:title/ |
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
# Prevent wp-config.php and .htaccess | |
# from being accessed use this code | |
<Files wp-config.php> | |
order allow,deny | |
deny from all | |
</Files> | |
<Files .htaccess> | |
order allow,deny |
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
<IfModule mod_deflate.c> | |
# Komprimiere HTML, CSS, JavaScript, Text, XML und fonts | |
AddOutputFilterByType DEFLATE application/javascript | |
AddOutputFilterByType DEFLATE application/rss+xml | |
AddOutputFilterByType DEFLATE application/vnd.ms-fontobject | |
AddOutputFilterByType DEFLATE application/x-font | |
AddOutputFilterByType DEFLATE application/x-font-opentype | |
AddOutputFilterByType DEFLATE application/x-font-otf | |
AddOutputFilterByType DEFLATE application/x-font-truetype |