Skip to content

Instantly share code, notes, and snippets.

View chittti's full-sized avatar

Likhith Chitneni chittti

View GitHub Profile
#!/bin/bash
#
#Author: Likhith Chitneni
#License: BSD 3 Clause license - https://opensource.org/licenses/BSD-3-Clause
#
#Assuming fresh install of Ubuntu Server 16.04.3 - with SHA256SUM - a06cd926f5855d4f21fb4bc9978a35312f815fbda0d0ef7fdc846861f4fc4600
#This is a script to install docker and generate fastFM wheels for Python 2.7, 3.4, 3.5 and 3.6
#Update the system with new packages
apt update
#!/bin/bash
#
#Author: Likhith Chitneni
#License: BSD 3 Clause license - https://opensource.org/licenses/BSD-3-Clause
#
set -e -x
# Install any system packages required here
#yum install -y $PACKAGE_TO_BE_INSTALLED
@chittti
chittti / crx-getter.sh
Created April 2, 2017 03:20
Bash script to get chrome extension
#!/bin/bash
# Created by Likhith Chitneni (chittti)
# Thanks to Rob Wu for crxviewer (https://github.com/Rob--W/crxviewer)
# This bash script takes in command line arguments too!
# Arguments can be passed in as
# ./crx-getter.sh <extension-ID> <chrome-version> <OS(1-6)> <arch(1-3)> <chrome(1)/chromium(2)> <stable(1)/unknown(2)>
# Only <extension-id> and <chrome-version> are mandatory, the rest default to linux, x86-64, chrome, stable respectively
if [[ $# -eq 0 ]]; then