Skip to content

Instantly share code, notes, and snippets.

View ohadcn's full-sized avatar

ohad ohadcn

  • rehovot/jerusalem, israel
View GitHub Profile
#!/bin/bash
export ROS_VERSION=lunar
sudo apt-add-repository -y universe
sudo apt-add-repository -y multiverse
sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list'
sudo apt-key adv --keyserver hkp://ha.pool.sks-keyservers.net:80 --recv-key 421C365BD9FF1F717815A3895523BAEEB01FA116
sudo apt-get update
sudo apt-get -y dist-upgrade
sudo apt-get install -y ros-$ROS_VERSION-desktop-full python-rosinstall htop zip unzip build-essential rar unrar
sudo rosdep init
#!/bin/bash
sudo apt install git build-essential python3-pip libpq-dev libxml2-dev libxslt1-dev python-dev libffi-dev
git clone https://github.com/patreon-opensource/patreon.git
cd patreon
sudo pip3 install -r requirements.txt
sudo pip3 install kombu billiard 'celery<=3.1' maxminddb rsa
pytohn3 runserver.py #if all is working fine, you should get an error about firebase configs
sudo apt-add-repository -y universe
sudo apt-add-repository -y multiverse
sudo apt update
sudo apt --force-yes dist-upgrade
sudo apt --force-yes install screen htop zip unzip rar unrar build-essential cmake autoconf libtool autoconf git
# for lamp server
sudo apt install --force-yes --no-install-recommends php5 php5-fpm nginx mysql-client mysql-server
#if the main server is python, install pip then the rest of the requirment with it
wget https://wordpress.org/latest.zip
unzip latest.zip
mv wordpress/* .
rm -rf xmlrpc.php wordpress latest.zip
<?
include_once('./wp-load.php');
echo(wp_hash_password($argv[1]));
?>
@ohadcn
ohadcn / upload_apk.sh
Last active August 29, 2015 14:20
upload_apk.sh
#!/bin/bash
if test $# -lt 1 ; then
echo "Usage: download_apk.sh <target-dir>"
exit 1
fi
for APK_FILE in $(ls --color=none); do
echo 'installing ' $APK_FILE;
adb install $1/$APK_FILE;
done
#!/bin/sh
if test $# -lt 1 ; then
echo "Usage: download_apk.sh <target-dir>"
exit 1
fi
for APK_PATH in $(adb shell pm list packages -f -3|sed 's/package://g'|sed s/=.*$//g) ; do
echo -n "Pulling $APK_PATH from device... "
adb pull $APK_PATH $1
done