<author>/<type>/<ticket>/<title>
revett/feature/24101/skeleton-service-for-email-sender
#!/bin/sh | |
# Configure homebrew permissions to allow multiple users on MAC OSX. | |
# Any user from the admin group will be able to manage the homebrew and cask installation on the machine. | |
# allow admins to manage homebrew's local install directory | |
chgrp -R admin /usr/local | |
chmod -R g+w /usr/local | |
# allow admins to homebrew's local cache of formulae and source files | |
chgrp -R admin /Library/Caches/Homebrew |
echo "Fixing ownership and permissions..." | |
chmod -R 755 /System/Library/Extensions/* | |
chown -R root:wheel /System/Library/Extensions/* | |
chown root:admin / | |
echo "Rebuilding kext cache..." | |
kextcache -system-prelinked-kernel | |
kextcache -system-caches |
--- | |
# Dataset Stuff ------------------------------------------------- | |
# | |
data_path: ~/data | |
output_path: ~/output | |
val_size: 10000 | |
train_chunk_size: 40000 | |
Sometimes you want to have a subdirectory on the master
branch be the root directory of a repository’s gh-pages
branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master
branch alongside the rest of your code.
For the sake of this example, let’s pretend the subfolder containing your site is named dist
.
Remove the dist
directory from the project’s .gitignore
file (it’s ignored by default by Yeoman).