Clone Mastodon's repository.
# Clone mastodon to ~/live directory
git clone https://github.com/tootsuite/mastodon.git live
# Change directory to ~/live
cd ~/live
version: '2' | |
services: | |
gitlab: | |
container_name: gitlab | |
image: gitlab/gitlab-ce:latest | |
restart: always | |
environment: | |
GITLAB_OMNIBUS_CONFIG: | | |
## GitLab configuration settings | |
##! Check out the latest version of this file to know about the different |
// This class implements the same interface that the cache created by $cacheFactory does | |
// See https://github.com/angular/angular.js/blob/master/src/ng/cacheFactory.js#L142 | |
// This cache evicts an entry once it's expired (which we define as 5 seconds). | |
class ExpirationCache { | |
constructor(timeout = 5000) { | |
this.store = new Map(); | |
this.timeout = timeout; | |
} | |
get(key) { |
# Turn on Notifications | |
do shell script "defaults -currentHost write com.apple.notificationcenterui doNotDisturb -bool FALSE; defaults -currentHost delete com.apple.notificationcenterui doNotDisturbDate; osascript -e 'quit application \"NotificationCenter\" ' && killall usernoted" -- this set 'Do not disturb' to false in the pref | |
# Show Desktop | |
do shell script "defaults write com.apple.finder CreateDesktop -bool true; killall Finder" | |
# Show all windows | |
tell application "System Events" | |
set visible of (every process) to true | |
end tell |
for f in $(find path/to/client -name '*.js'); | |
do | |
ng-annotate -a $f -o $f; | |
echo $f; | |
done | |
echo "Done!"; |
; acceleration_enabled = {acceleration_enabled} | |
; acceleration_infill = {acceleration_infill} | |
; acceleration_ironing = {acceleration_ironing} | |
; acceleration_layer_0 = {acceleration_layer_0} | |
; acceleration_prime_tower = {acceleration_prime_tower} | |
; acceleration_print = {acceleration_print} | |
; acceleration_print_layer_0 = {acceleration_print_layer_0} | |
; acceleration_roofing = {acceleration_roofing} | |
; acceleration_skirt_brim = {acceleration_skirt_brim} | |
; acceleration_support = {acceleration_support} |
hdiutil makehybrid -iso -joliet -o [filename].iso [filename].dmg
// get an array of all the keys on the window | |
const dirty = Object.keys(window); | |
// Then create an iframe set to nothing | |
const iframe = document.createElement('iframe'); | |
iframe.src = ''; | |
// put it into the DOM | |
document.body.append(iframe); |