Skip to content

Instantly share code, notes, and snippets.

View dwehrmann's full-sized avatar
🎯
Focusing

Dennis Wehrmann dwehrmann

🎯
Focusing
View GitHub Profile
@dianjuar
dianjuar / Install update WordPress puglins directly.md
Last active June 4, 2025 18:16
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');
@thom4parisot
thom4parisot / _gradients.css.scss
Last active July 10, 2020 14:18 — forked from thbar/_gradients.css.scss
Horizontal Gradient Sass Mixin
@mixin horizontal-gradient($from, $to, $stop: 100%) {
/* fallback/image non-cover color */
background-color: $from;
/* Firefox 3.6+ */
background-image: -moz-linear-gradient(left, $from 0%, $to $stop);
/* Safari 4+, Chrome 1+ */
background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, $from), color-stop($stop, $to));