StackEdit GitHub Page : https://github.com/benweet/stackedit
Debian 8 (12/05/2016)
| #!/bin/bash | |
| ## TODO: | |
| # Figure out how to get nginx file-aio module working (incompatible?) | |
| ## Get and install tools and dependencies | |
| sudo apt-get -y install build-essential zlib1g-dev libpcre3 libpcre3-dev libbz2-dev | |
| ## Get installed OpenSSL version | |
| # Use `whereis openssl` to check if installed first |
StackEdit GitHub Page : https://github.com/benweet/stackedit
Debian 8 (12/05/2016)
| #!/bin/sh | |
| # Reference: http://roboojack.blogspot.in/2014/12/bulk-upload-your-local-maven-artifacts.html | |
| if [ "$#" -ne 3 ] || ! [ -d "$1" ]; then | |
| echo "Usage:" | |
| echo " bash run.sh <repoRootFolder> <repositoryId> <repositoryUrl>" | |
| echo "" | |
| echo "" | |
| echo " Where..." |
In this article, I will share some of my experience on installing NVIDIA driver and CUDA on Linux OS. Here I mainly use Ubuntu as example. Comments for CentOS/Fedora are also provided as much as I can.
| #!/bin/bash | |
| if [ $# -lt 3 ]; then | |
| echo "Usage: maven-deploy-file groupId artifactId version [packaging] [repository]" | |
| exit 1 | |
| fi | |
| GROUP=$1 | |
| ARTIFACT=$2 | |
| VERSION=$3 |
| # vi: ft=dosini | |
| [user] | |
| name = Pavan Kumar Sunkara | |
| email = pavan.sss1991@gmail.com | |
| username = pksunkara | |
| [core] | |
| editor = nvim | |
| whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
| pager = delta | |
| [column] |