sudo apt-get -y install nginx curl libcurl3 libcurl3-dev git redis-server
// Disable WordPress version reporting as a basic protection against attacks | |
function remove_generators() { | |
return ''; | |
} | |
add_filter('the_generator','remove_generators'); | |
add_filter('the_generator', create_function('', 'return "";')); | |
remove_action('wp_head', 'rsd_link'); | |
remove_action('wp_head', 'wlwmanifest_link'); |
<?php | |
$wp_include = '../wp-load.php'; | |
$i = 0; while ( !file_exists( $wp_include ) && $i++ < 10 ) { | |
$wp_include = "../$wp_include"; | |
} | |
require_once( $wp_include ); | |
header( 'Content-type: text/css; charset=' . get_option( 'blog_charset' ) ); |
{ | |
"folders": | |
[ | |
{ | |
"path": "." | |
} | |
], | |
"build_systems": | |
[ | |
{ |
I hereby claim:
To claim this, I am signing this object:
/** | |
* Created by alpipego on 04.12.2016. | |
*/ | |
jQuery(document).ready(function ($) { | |
var data = { | |
isValid: false, | |
errors: [] | |
}; | |
window.formDataIsValid = false; |
<?php | |
/** | |
* Traverse through folder and rebuild vagrant machine index | |
* | |
* @author Alexander Goller <[email protected]> | |
* @license MIT | |
*/ | |
// setup |
<?php | |
/** | |
* Created by PhpStorm. | |
* User: alpipego | |
* Date: 03.05.18 | |
* Time: 18:01 | |
*/ | |
//return; |
Title |
---|
Test Title |
#!/bin/sh | |
# Wrapper script around yay to try to ignore errors | |
# Copyright © 2019 Ashkan Kiani | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# This program is distributed in the hope that it will be useful, |