board:"IT" created:day
[what you're searching for]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run Go Access | |
# When prompted select the first format,NCSA combined (press space) then hit enter | |
goaccess -f /var/log/apache2/id.log -c |
- Download vim-plug
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
note: You may be able to skip curling the file as the config should automatically download it for you
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/**************** | |
***** FONT ****** | |
***************/ | |
body { | |
font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif !important; | |
font-size: 1rem !important; | |
font-weight: 300; | |
line-height: 1.5; | |
color: #83ACD8 !important; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* The header for our theme | |
* | |
* This is the template that displays all of the <head> section and everything up until <div id="content"> | |
* | |
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials | |
* | |
* @package WordPress | |
* @subpackage Twenty_Seventeen |
Moved files or directories and git thinks they're deleted and new vs renamed.
The following will resolve most of this assuming the file contents themselves have not changed too much.
git add . -A
Add only previsouly staged or deleted files andd exclude unstaged (new) files
git add -u
Add only a portion of the changes in a file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Template Name: Fullpage Slider | |
* @author: VLThemes | |
* @version: 1.0.2 | |
*/ | |
get_header(); |