Create authentication SSH-Kegen key on local/client host
cd ~ && ssh-keygen -t rsa
You could skip passphrase.
From host1, create .ssh directory on remote host via ssh
<?php | |
/* | |
Author: Sai Varun KN | |
This is a redis caching system for wordpress. | |
some caching mechanics are summarized below: | |
- cached pages do not expire not unless explicitly deleted or reset |
<?php | |
/* | |
* PHP: Recursively Backup Files & Folders to ZIP-File | |
* (c) 2012-2014: Marvin Menzerath - http://menzerath.eu | |
* contribution: Drew Toddsby | |
*/ | |
// Make sure the script can handle large folders/files | |
ini_set('max_execution_time', 600); | |
ini_set('memory_limit','1024M'); |
Create authentication SSH-Kegen key on local/client host
cd ~ && ssh-keygen -t rsa
You could skip passphrase.
From host1, create .ssh directory on remote host via ssh
docker rmi $(docker images -q -f dangling=true) |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
<script type="text/javascript"> | |
(function () { | |
"use strict"; | |
// once cached, the css file is stored on the client forever unless | |
// the URL below is changed. Any change will invalidate the cache | |
var css_href = './index_files/web-fonts.css'; | |
// a simple event handler wrapper | |
function on(el, ev, callback) { | |
if (el.addEventListener) { | |
el.addEventListener(ev, callback, false); |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
<?php | |
use Predis\Client; | |
class RedisSession implements SessionHandlerInterface { | |
private $redis; | |
private $keyPrefix; | |
private $maxLifetime; | |
/** |