Restore home folder from backup. You better have a backup.
Important files and folders:
- ~/.bash_profile
- ~/.ssh/
- ~/Library/Preferences/
<?php | |
namespace Cache\Driver; | |
use Cache\Driver; | |
/** | |
* Redis | |
* | |
* @package Kirby Redis |
javascript:window.location='https://huffduffer.com/add?popup=true&page='+encodeURIComponent(location.href); |
<?php if( function_exists('acf_add_local_field_group') ): | |
acf_add_local_field_group(array ( | |
'key' => 'group_558c7f75de508', | |
'title' => 'Stories', | |
'fields' => array ( | |
array ( | |
'key' => 'field_558c7fe4df0bc', | |
'label' => 'Select artist', | |
'name' => 'select_artist', |
<?php | |
require_once('highlight/geshi.php'); | |
kirbytext::$pre[] = function($kirbytext, $value) { | |
return preg_replace_callback('!```(.*?)```!is', function($code){ | |
$code = @$code[1]; | |
$lines = explode("\n", $code); |
<?php | |
/** | |
* Move this file to /site/snippets/ and rename it video.php | |
*/ | |
// stop without videos | |
if(empty($videos)) return; | |
// set some defaults |
<?php | |
class kirbytextExtended extends kirbytext { | |
function __construct($text=false, $markdown=true, $smartypants=true) { | |
parent::__construct($text, $markdown, $smartypants); | |
// define custom tags | |
$this->addTags('figure'); |
<!doctype html> | |
<html class="no-js"> | |
<head> | |
<meta charset="utf-8" /> | |
<script>(function(H){H.className=H.className.replace(/\bno-js\b/,'js')})(document.documentElement) /* removes no-js class */</script> | |
<title>Untitled Document</title> | |
</head> | |
<?php | |
function query_google_spreadsheets( $key, $query, $sheet_name = '' ) { | |
// queries a spreadsheet url and returns a clean array | |
$sheet_url = 'https://spreadsheets.google.com/tq?key='. $key .'&tq='. $query .'&sheet='. $sheet_name; | |
$str = file_get_contents( $sheet_url ); | |
// clean json string | |
$str = str_replace( "// Data table response\ngoogle.visualization.Query.setResponse(", '', $str ); | |
$str = rtrim( $str, ');' ); |
<?php | |
// Add role class to body | |
function add_role_to_body($classes) { | |
foreach (wp_get_current_user()->roles as $user_role) { | |
$classes[] = 'role-'. $user_role; | |
} | |
return $classes; | |
}); | |
add_filter('body_class','add_role_to_body'); |