Skip to content

Instantly share code, notes, and snippets.

@z2z
z2z / googlePlay.sh
Created February 16, 2018 13:58 — forked from chipoglesby/googlePlay.sh
Upload your Google Play Installation Reports with a simple shell script Raw
#!/bin/bash
# Global variables for shell script
shopt -s nocaseglob
shopt -s nullglob
shopt -s nocasematch
yearMonth=$(date "+%Y%m" -d "1 month ago")
# On macs: yearMonth=$(date -v-1m +%Y%m)
reports=(overview carrier country device language os_version app_version tablets)
@z2z
z2z / lnmp-install
Created December 22, 2017 11:25 — forked from sharmy/lnmp-install
php mysql nginx enviroment on linux
#!/bin/bash
currdir=$(cd $(dirname $0) ; pwd)
#default softdir
softdir=${currdir}/soft
[ -d ${softdir} ] || mkdir -p ${softdir}
packages="
#list all soft name and source file's URL address.
#url filename
@z2z
z2z / CentOS 7.3 - User config
Created December 22, 2017 11:23 — forked from phackwer/CentOS 7.3 - User config
CentOS 7.3 - User config
PRIMEIRA COISA
https://copr.fedorainfracloud.org/coprs/duh/GNOME_3.22_for_RHEL_and_CentOS_7.x/
#############################################################################################################################
#
# INSTALAÇÃO DO CENTOS 7.2 - CUSTOMIZAÇÃO BÁSICA
#
#############################################################################################################################
# Passos básicos - Configuração do Gnome (como root)R
@z2z
z2z / github-to-bitbucket
Created December 14, 2017 11:25 — forked from hongshunyang/github-to-bitbucket
Forking a Github repo to Bitbucket
Go to Bitbucket and create a new repository (its better to have an empty repo)
git clone git@bitbucket.org:abc/myforkedrepo.git
cd myforkedrepo
Now add Github repo as a new remote in Bitbucket called "sync"
git remote add sync git@github.com:def/originalrepo.git
Verify what are the remotes currently being setup for "myforkedrepo". This following command should show "fetch" and "push" for two remotes i.e. "origin" and "sync"
git remote -v
@z2z
z2z / pd2htmlEX.Ubuntu16.sh
Created September 8, 2017 07:00 — forked from agyemanjp/pd2htmlEX.Ubuntu16.sh
pdf2htmlEX install shell script for Ubuntu 16.04, using latest sources
#!/bin/bash
# pdf2htmlEX install shell script for Ubuntu 16.04, using latest sources
# Created by James A. Prempeh ( github.com/prmph )
HOME_PATH=$(cd ~/ && pwd)
LINUX_ARCH="$(lscpu | grep 'Architecture' | awk -F\: '{ print $2 }' | tr -d ' ')"
POPPLER_SOURCE="https://poppler.freedesktop.org/poppler-0.43.0.tar.xz"
FONTFORGE_SOURCE="https://github.com/fontforge/fontforge.git"
PDF2HTMLEX_SOURCE="https://github.com/coolwanglu/pdf2htmlEX.git"
@z2z
z2z / install-pdf2htmlEX-ubuntu-14.04.sh
Created September 8, 2017 06:17 — forked from giordanocardillo/install-pdf2htmlEX-ubuntu-14.04.sh
Installing pdf2htmlEX on Ubuntu Server 14.04
#!/bin/sh
RESTORE=$(echo '\033[0m')
BOLD=$(echo '\033[1m')
GREEN=$(echo '\033[1;32m')
echo
echo ${GREEN}
echo "------------------------------"
echo " Installing prerequisites "
echo "------------------------------"
echo
@z2z
z2z / SetupDevMachine.bat
Created January 6, 2017 11:51 — forked from winiciuscota/SetupDevMachine.bat
Script to setup a new windows machine with the programs I use
REM -----------------------------------------------
REM Install basic programs
REM -----------------------------------------------
echo Installing chocolatey
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
echo Installing utility programs
@z2z
z2z / gist:3c2f9a0d31cbc1cf17c785562d72a79e
Last active June 15, 2016 13:52 — forked from pitch-gist/gist:2999707
HTML: Simple Maintenance Page
<!doctype html>
<title>Site Maintenance</title>
<style>
body { text-align: center; padding: 20px; }
@media (min-width: 768px){
body{ padding-top: 150px; }
}
h1 { font-size: 50px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; max-width: 650px; margin: 0 auto; }
##############################################################################
# INSTALL isolated PHP 5.6 ZTS (Thread-safe) with pthreads on Ubuntu 14.04 ###
##############################################################################
1) Install necessary bison version
wget http://launchpadlibrarian.net/140087283/libbison-dev_2.7.1.dfsg-1_amd64.deb
wget http://launchpadlibrarian.net/140087282/bison_2.7.1.dfsg-1_amd64.deb
dpkg -i libbison-dev_2.7.1.dfsg-1_amd64.deb
dpkg -i bison_2.7.1.dfsg-1_amd64.deb
@z2z
z2z / install.sh
Last active December 23, 2015 15:18
CentOS LAMP + 5.5, Laravel and Composer install script.
echo ">>> Starting install script"
sudo yum -y update
echo ">>> Installing Apache, MySQL and PHP"
sudo rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm
sudo yum install -y nano git-core httpd php55w php55w-common php55w-mysql php55w-mcrypt php55w-gd php55w-xmlrpc php55w-mbstring php55w-xml
sudo yum install -y yum-plugin-replace
sudo yum replace -y mysql-libs --replace-with mysql55w-libs
sudo yum install -y mysql55w mysql55w-server