Skip to content

Instantly share code, notes, and snippets.

# list of applications from apt-get to be installed
__applications_to_install="vim htop tree ranger"
# preferences for software
__xubuntu_restricted_extras="N"
__google_chrome="N"
__kodi="N"
__git="N"
__java7="N"
__java8="Y"
__dark_table="N"
#!/bin/bash
clear
if [ ! -f linux-init-properties.cfg ]; then
echo ERROR: Configuration file linux-init-properties.cfg is not available. Aborting setup...
exit 1
else
. linux-init-properties.cfg
fi
echo INFO: I am setting up the system...sit back, relax and enjoy the ride.
@GayashanNA
GayashanNA / Intial setup
Last active August 6, 2019 01:16
Use these commands to setup environment for java, maven and ant.
alias mci="mvn clean install"
alias mcit="mvn clean install -Dmaven.test.skip=true -e"
alias ..="cd ../"
alias ...="cd ../../"
alias gcm="git checkout master"
alias gits="git status"
alias gitd="git diff"
alias glp="git log --pretty=oneline"
alias tailf="tail -n 100 -f"
alias fn="find -name"
@GayashanNA
GayashanNA / jquery.jqplot.js
Created September 25, 2012 12:26
Multiple y axes can be positioned on the left
/**
* Title: jqPlot Charts
*
* Pure JavaScript plotting plugin for jQuery.
*
* About: Version
*
* version: 1.0.4
* revision: 1120
*
@GayashanNA
GayashanNA / jquery.jqplot.js
Created September 20, 2012 12:49
jquery.jqplot.js file is modified to enable veritcal orientation detection
/**
* Title: jqPlot Charts
*
* Pure JavaScript plotting plugin for jQuery.
*
* About: Version
*
* version: 1.0.4
* revision: 1120
*