backdoor to any Android APK file
https://github.com/dana-at-cp/backdoor-apk
Attach disk on boot in linux
auto mounting partitions is very easy in linux with the disk utility which have a nice gui explaining everyting. but now i am going to show you a staright forward process of automonting partitions by editing /etc/fstab file. Attach disk on boot in linux this tutorial is not solely for...
[Read More]
Install oracle-java8 in ubuntu
Install oracle-java8 in ubuntu
add-apt-repository ppa:webupd8team/java
sudo apt-get install software-properties-common python-software-properties
add-apt-repository ppa:webupd8team/java
apt update; sudo apt install oracle-java8-installer
apt install oracle-java8-set-default
How to create your perfect server with ubuntu xenial
How to create your perfect server with ubuntu xenial
apt-get update && apt-get -y upgrade
apt-get install -y unzip
cd /tmp
wget --no-check-certificate -O installer.tgz "https://github.com/servisys/ispconfig_setup/tarball/master"
tar zxvf installer.tgz
cd *ispconfig*
bash install.sh
[Read More]
Add jquery to webpage from javascript console
Add jquery to webpage from javascript console
var jq = document.createElement('script');
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
// ... give time for script to load, then type (or see below for non wait option)
jQuery.noConflict();