Skip to content

Instantly share code, notes, and snippets.

View yoanmalie's full-sized avatar
👋
Hello World

Yoan Malié yoanmalie

👋
Hello World
View GitHub Profile
#!/bin/sh
# Deploy through Rsync to the server
echo "Uploading files…"
rsync -avhP --delete --update --exclude 'site/accounts/.logins' --exclude 'site/cache/*' --exclude '.DS_Store' --exclude '.gitkeep' ~/Projets/portfolio/ user@host.com:~/portfolio
echo "Uploading done!"
exit 0
@yoanmalie
yoanmalie / error.txt
Created May 8, 2020 08:44
Kirby 3 default content files
# ./content/error/error.txt
Title: Error
@yoanmalie
yoanmalie / README.md
Last active March 29, 2020 16:17
Shaarli Manager - Automated installation, update and backup. With plugin and theme example.

Shaarli Manager

Automated installation, update and backup of Shaarli, with plugins and themes.

How it work?

By just running a command you will proper install or update Shaarli, with Material theme and Code-Coloration plugin as examples. Change the PATH_ROOT on the setting section, then you can run the script everywhere.

👍 Tested on macOS and Linux Debian.

Available arguments:

@yoanmalie
yoanmalie / SassMeister-input.scss
Last active March 31, 2018 11:40 — forked from vincent-valentin/SassMeister-input.scss
Generated by SassMeister.com.
// ----
// Sass (v3.4.21)
// Compass (v1.0.3)
// ----
@mixin tag($elt) {
@at-root #{$elt}#{&} {
@content;
}
}
#!/bin/sh
# Testé pour Ubuntu 16.04
# Tuto KGAUT
# Essayer de l'automatiser au max
# - https://kgaut.net/journal/bien-commencer-le-developpement-php-sous-ubuntu.html
# - https://kgaut.net/journal/creer-son-premier-virtual-host-sous-ubuntu.html
# - https://kgaut.net/journal/installer-et-faire-fonctionner-phpmyadmin-sur-ubuntu-1604.html
@yoanmalie
yoanmalie / .scss-lint.yml
Last active October 9, 2016 09:18
Configuration file for scss-lint
# Documentation:
# https://github.com/brigade/scss-lint/blob/master/lib/scss_lint/linter/README.md
scss_files: 'assets/src/css/**/*.scss'
exclude:
- node_modules
- assets/src/css/vendors/**
linters:
BangFormat:
enabled: true