It is loaded by default by /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist.
If you run
launchctl unload -w /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist
It is loaded by default by /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist.
If you run
launchctl unload -w /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist
2019-06-03
Note that Office2019 DO NOT support activate via simple copy/paste plist license file which is the simplest way to activate Office 2016. Fortunately, you can also use the VL Serializer tool, just install Office 2019 and Serializer, then run Serializer to activate.
//HTTPS redirect middleware | |
function ensureSecure(req, res, next) { | |
//GC stores the origin protocol in a header variable. The app itself is isolated within the dyno and all request objects have an HTTP protocol. | |
if (req.get('X-Forwarded-Proto')=='https' || req.hostname == 'localhost') { | |
//Serve App by passing control to the next middleware | |
next(); | |
} else if(req.get('X-Forwarded-Proto')!='https' && req.get('X-Forwarded-Port')!='443'){ | |
//Redirect if not HTTP with original request URL | |
res.redirect('https://' + req.hostname + req.url); | |
} |
application: you-app-name-here | |
version: 1 | |
runtime: python | |
api_version: 1 | |
default_expiration: "30d" | |
handlers: | |
- url: /(.*\.(appcache|manifest)) | |
mime_type: text/cache-manifest |
const gulp = require('gulp'); | |
const nunjucksRender = require('gulp-nunjucks-render'); | |
const sass = require('gulp-sass'); | |
const browserSync = require('browser-sync').create(); | |
const uglify = require('gulp-uglify'); | |
const imagemin = require('gulp-imagemin'); | |
const changed = require('gulp-changed'); | |
const sourcemaps = require('gulp-sourcemaps'); | |
const concat = require('gulp-concat'); | |
const autoprefixer = require('gulp-autoprefixer'); |
function slugify(text) | |
{ | |
return text.toString().toLowerCase() | |
.replace(/\s+/g, '-') // Replace spaces with - | |
.replace(/[^\w\-]+/g, '') // Remove all non-word chars | |
.replace(/\-\-+/g, '-') // Replace multiple - with single - | |
.replace(/^-+/, '') // Trim - from start of text | |
.replace(/-+$/, ''); // Trim - from end of text | |
} |
const gulp = require('gulp'); | |
const nunjucksRender = require('gulp-nunjucks-render'); | |
const gulpGrayMatter = require('gulp-gray-matter'); | |
const debug = require('gulp-debug'); | |
const markdown = require('gulp-markdown'); | |
const data = require('gulp-data'); | |
const through = require('through2'); | |
const fs = require('fs'); | |
const path = require('path'); |
'use strict'; | |
const browserSync = require( 'browser-sync' ).create(); | |
const gulp = require( 'gulp' ); | |
const gulpif = require( 'gulp-if' ); | |
const rename = require( 'gulp-rename' ); | |
const uglify = require( 'gulp-uglify' ); | |
const rollup = require( 'rollup' ); | |
const rollupStream = require( 'rollup-stream' ); |
// Gulp | |
import gulp from 'gulp'; | |
import plumber from 'gulp-plumber'; | |
import file from 'gulp-file'; | |
import filter from 'gulp-filter'; | |
import rename from 'gulp-rename'; | |
import sourcemaps from 'gulp-sourcemaps'; | |
import uglify from 'gulp-uglify'; | |
// Rollup | |
import { rollup } from 'rollup'; |