This file contains hidden or 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
services: | |
web: | |
image: python:latest | |
env_file: .env | |
... | |
unoserver: | |
image: libreofficedocker/libreoffice-unoserver:3.19-9c28c22 | |
... | |
... | |
This file contains hidden or 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 | |
# Remove Docker images | |
rm -rf ~/Library/Containers/com.docker.docker | |
echo "Docker images removed" | |
# Docker prune | |
docker image prune | |
# Remove Spotify Cache |
This file contains hidden or 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
https://fonts.adobe.com/fonts/novel-mono | |
https://fonts.adobe.com/fonts/jaf-bernini | |
https://fonts.adobe.com/fonts/operetta | |
https://fonts.adobe.com/fonts/beastly | |
https://fonts.adobe.com/fonts/upgrade | |
https://fonts.adobe.com/fonts/urbana | |
https://fonts.adobe.com/fonts/kandin | |
https://fonts.adobe.com/fonts/bagatela | |
https://fonts.adobe.com/fonts/brother-1816 | |
https://fonts.adobe.com/fonts/hucklebuckjf |
This file contains hidden or 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
<?php | |
class SomePlugin { | |
const CUSTOM_DIR = '/custom_dir'; | |
static function install() { | |
$uploads_dir = wp_upload_dir(); | |
$custom_uploads_dir = $uploads_dir['basedir'] . self::CUSTOM_DIR; | |
if( ! file_exists($custom_uploads_dir) ) { |
This file contains hidden or 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 gulp = require('gulp'); | |
var sass = require('gulp-sass'); | |
var sassConfig = { | |
inputDirectory: 'scss/**/*.scss', | |
outputDirectory: 'css', | |
options: { | |
outputStyle: 'expanded' | |
} | |
} |