Skip to content

Instantly share code, notes, and snippets.

View alpipego's full-sized avatar
😴
So very tired.

Alex Goller alpipego

😴
So very tired.
View GitHub Profile
@alpipego
alpipego / gist:5182657
Created March 17, 2013 17:34
wp_functions remove generator
// 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');
@alpipego
alpipego / gist:5947694
Last active December 19, 2015 11:29
wp css.php
<?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":
[
{
@alpipego
alpipego / Install-php7.md
Last active August 31, 2018 08:24 — forked from hollodotme/Install-php7.md
Server Setup

Install packages

sudo apt-get -y install nginx curl libcurl3 libcurl3-dev git redis-server

Install php7.2

Ubuntu

Keybase proof

I hereby claim:

  • I am alpipego on github.
  • I am alpipego (https://keybase.io/alpipego) on keybase.
  • I have a public key ASB_siigXOpA0FbG4cU40EcWpdrggf0HCd8ud_lW4SCdUAo

To claim this, I am signing this object:

@alpipego
alpipego / formvalidation.js
Last active October 11, 2017 08:08
jQuery Formvalidation Script
/**
* Created by alpipego on 04.12.2016.
*/
jQuery(document).ready(function ($) {
var data = {
isValid: false,
errors: []
};
window.formDataIsValid = false;
@alpipego
alpipego / rebuild-vagrant-machine-index.php
Created June 23, 2017 11:01
Traverse a directory and add all 'unknown' virtual machines to vagrants index.
<?php
/**
* Traverse through folder and rebuild vagrant machine index
*
* @author Alexander Goller <hello@alpipego.com>
* @license MIT
*/
// setup
<?php
/**
* Created by PhpStorm.
* User: alpipego
* Date: 03.05.18
* Time: 18:01
*/
//return;
Title
Test Title
<title>Title Tag</title>
@alpipego
alpipego / yay-update-ignore-errors
Created January 18, 2020 08:34 — forked from norcalli/yay-update-ignore-errors
A wrapper script to run yay and incrementally build a list of packages to ignore if they error out.
#!/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,