Activate SSH
Connect via SSH with either
ssh root@IP
or
ssh admin@IP
and sudo su
Change VERSION file as needed.
vi /etc.defaults/VERSION
Change:
Activate SSH
Connect via SSH with either
ssh root@IP
or
ssh admin@IP
and sudo su
Change VERSION file as needed.
vi /etc.defaults/VERSION
Change:
<?php | |
// ID of gallery, you get it from URL. | |
$galleryId = 'nuAM3'; | |
$url = 'http://imgur.com/ajaxalbums/getimages/'.$galleryId.'/hit.json?all=true'; | |
$jsonContent = file_get_contents($url); |
Read and prepare: https://wiki.cyanogenmod.org/w/Install_CM_for_enrc2b
Install: sudo apt-get install android-tools-adb android-tools-fastboot
Shell: sudo bash
In dem Buch wird eingebettet in der Rahmenhandlung eines Klassentreffens eine Geschichte von zwei Mäusen und zwei Zwergen in einem Labirynth erzählt. Die vier Wesen müssen Käse suchen und finden um zu überleben.
Als das aktuelle Käselager K alle wird, suchen die Mäuse direkt nach einem neuen Lager und finden auch sehr bald Käselager N welches größer und besser ausgestattet ist als K. Der Zwerg "Knobel" braucht einige Zeit um es den Mäusen nach zu machen und schreibt in diesem Prozess so einige Erkentnisse an Wände. Der zweite Zwerg "Grübel" macht hier keinen Prozess von sich aus, sondern ist in seiner Angst/Schuldzuweisungen gefangen.
<?php | |
// Using array_diff to calculate changesets by ids. | |
// @author Julius Beckmann http://twitter.com/h4cc | |
$existingIds = [1, 2]; | |
$newIds = [2, 3]; | |
$addedIds = array_diff($newIds, $existingIds); | |
$removedIds = array_diff($existingIds, $newIds); |
<?php | |
use Psr\Log\NullLogger; | |
use Psr\Log\LoggerInterface; | |
/** | |
* Helping trait for using Loggers. | |
* | |
* This on is more powerfull and offers only setLogger() and getLogger() as API methods. | |
* If no logger is set, a fallback to a NullLogger is used. Should be failsafe enough. |
<?php | |
use Psr\Log\AbstractLogger; | |
/** | |
* Psr3 compliant logger that will forward all logs to a given closure. | |
* | |
* @author Julius Beckmann twitter.com/h4cc | |
*/ | |
class CallablePsr3Logger extends AbstractLogger |
#--- apt-get | |
# Shortcuts for apt-get | |
alias apt-ud="sudo apt-fast update" | |
alias apt-ug="sudo apt-fast upgrade" | |
alias apt-in="sudo apt-fast install" | |
# Some auto apt-get magic. | |
alias apt-auto="sudo apt-get autoclean ; sudo apt-get autoremove" |
# This is an example resource file for rTorrent. Copy to | |
# ~/.rtorrent.rc and enable/modify the options as needed. Remember to | |
# uncomment the options you wish to enable. | |
# Maximum and minimum number of peers to connect to per torrent. | |
min_peers = 1 | |
max_peers = 100 | |
# Same as above but for seeding completed torrents (-1 = same as downloading) | |
min_peers_seed = 1 |