Skip to content

Instantly share code, notes, and snippets.

View unixsam's full-sized avatar

Sami Elkady unixsam

View GitHub Profile
@unixsam
unixsam / build-release.sh
Created November 2, 2015 05:42 — forked from rknell/build-release.sh
Build Android Release apk from Cordova /CLI
#!/bin/bash
#Thanks to this page: http://chris-allen-lane.com/2012/12/phonegap-compiling-a-release-apk-without-using-phonegap-build/
#USAGE!
# 1. Replace <AndroidKeyName> with the filename of the keyfile generated (see url)
# 2. Replace <ProjectName> with the project name in the generated file form cordova, see path/to/my/project/platforms/android/bin and look for an APK if you need help
# 3. Replace <AndroidKeyNameAlias> from the alias used when generating the key (see url again!)
# 4. Edit path/to/my/project/platforms/android/AndroidManifest.xml and change "debuggable=false" (search for it!)
# 5. Check path/to/my/project/Release/android for your sparkling new apk!
#
# This worked and was uploadable to the google play store.
@unixsam
unixsam / 0 Dev tools installs
Last active April 20, 2016 16:21
Dev tools installs
Before you start make sure to run below commands as a root user
# switching to root user
sudo su -
#!/bin/bash
# Change the file name. and the part the file to 1000 lines in each part file.
split -d -l 1000 --additional-suffix=.csv filename.csv files-part-
# Add the heading of the csv file to each parted file.
for file in files-part-*.csv; do
printf '%s\n' 0a file_id,title_text_en,alt_text_en,title_text_ar,alt_text_ar . w | ed -s "$file"
done
@unixsam
unixsam / nginx.conf
Last active August 29, 2015 14:23 — forked from plentz/nginx.conf
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048