Skip to content

Instantly share code, notes, and snippets.

View BaronVonPerko's full-sized avatar

Chris Perko BaronVonPerko

View GitHub Profile
@dianjuar
dianjuar / Install update WordPress puglins directly.md
Last active April 16, 2024 12:21
Install update WordPress plugins without providing ftp access

Install WordPress plugins directly (without FTP)

Put this on your wp-config.php

/* That's all, stop editing! Happy blogging. */
define('FS_METHOD', 'direct');
@ewistrand
ewistrand / gulpfile.js
Created March 3, 2016 14:25
Underscores Gulp File for Sass
var gulp = require('gulp');
var sass = require('gulp-sass');
gulp.task('styles', function() {
gulp.src('sass/**/*.scss')
.pipe(sass().on('error', sass.logError))
.pipe(gulp.dest('./'));
});
//Watch task