Skip to content

Instantly share code, notes, and snippets.

View LPMAXI's full-sized avatar

Linus Persson LPMAXI

View GitHub Profile
@LPMAXI
LPMAXI / provision.sh
Last active November 20, 2018 07:20
Provision script for Ubuntu 16.04 LTS - Apache, PHP7, MySql, Git, Composer, NodeJS
#! /usr/bin/env bash
#
# Provision script for Ubuntu 14.06 LTS
# ------------
#
# Inspired and modified from: https://gist.github.com/maoosi/d3a4c5670d4f014fe0082f88e48e89af
# Includes: Apache, PHP7, MySql, Git, Composer, NodeJS
#
@LPMAXI
LPMAXI / style.css
Last active March 11, 2016 14:53
Responsive background
body {
background-size: cover;
background: #464646 url(image.jpg) no-repeat fixed center center;
}
@LPMAXI
LPMAXI / Wordpress update-config
Created October 22, 2012 17:25
Uppdatera Wordpress plugin utan FTP-uppfifter
define( 'FS_METHOD', 'direct' );
define( 'FS_CHMOD_DIR', 0755 );
define( 'FS_CHMOD_FILE', 0644 );
@LPMAXI
LPMAXI / How to create .gitignore in Windows
Created August 28, 2012 14:00
Create .gitignore file in Windows using commandprompt
1. Create a text file
2. Run this command
ren "New Text Document.txt" .gitignore