$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
==> This script will install:
/usr/local/bin/brew
/usr/local/share/doc/homebrew
/usr/local/share/man/man1/brew.1
/usr/local/share/zsh/site-functions/_brew
@see https://medium.com/google-developers/how-to-run-travisci-locally-on-docker-822fc6b2db2e
- Install Docker
- Install Travis on Docker
# choose the image according to the language chosen in .travis.yml
$ docker run -it -u travis quay.io/travisci/travis-jvm /bin/bash
# now that you are in the docker image, switch to the travis user
sudo — travis
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <assert.h> | |
#include <math.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#define q 3 /* for 2^3 points */ | |
#define N (1<<q) /* N-point FFT, iFFT */ | |
typedef float real; | |
typedef struct{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <complex> | |
#define MAX 200 | |
using namespace std; | |
#define M_PI 3.1415926535897932384 | |
int log2(int N) /*function to calculate the log2(.) of int numbers*/ | |
{ |
Torch can be installed to your home folder in ~/torch by running these three commands:
git clone https://github.com/torch/distro.git ~/torch --recursive
cd ~/torch; bash install-deps;
./install.sh
The first script installs the basic package dependencies that LuaJIT and Torch require. The second script installs LuaJIT, LuaRocks, and then uses LuaRocks (the lua package manager) to install core packages like torch, nn and paths, as well as a few other packages.
Install and setup notes to get first get Caffe and then ImageNet up and running.
Caffe is a deep learning framework by Berkeley Artificial Intelligence Research BAIR
- Amazon Cuda Ubuntu AMI https://github.com/BVLC/caffe/wiki/Caffe-on-EC2-Ubuntu-14.04-Cuda-7
- Ubuntu Installation http://caffe.berkeleyvision.org/install_apt.html
- git clone https://github.com/BVLC/caffe
This page has been migrated to https://github.com/sitkevij/serverless. This gist will no longer be updated.
- AWS Lambda https://aws.amazon.com/lambda/
- hook.io https://hook.io
- IronFunctions http://iron.io
- Google Cloud Functions https://cloud.google.com/functions/docs/
- Microsoft Azure Functions https://azure.microsoft.com/en-us/services/functions/
- OpenWhisk
- Apache OpenWhisk main http://openwhisk.org/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# read http://www.unixmen.com/install-configure-nagios-ubuntu-14-04-lts/ | |
# echo $HISTFILE | |
# ls /home/ubuntu/.bash_history | |
# installation for fresh vm | |
sudo apt-get install nagios3 nagios-nrpe-plugin | |
sudo vim /etc/nagios3/nagios.cfg | |
#Find the line, | |
# | |
#check_external_commands=0 | |
#And change it to: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# test installed on ubuntu 14 | |
# curl -L https://thisscript/install.sh | sudo bash | |
# curl -L https://gist.githubusercontent.com/sitkevij/3379c08292b34770e5cd/raw/16d2faae9c16556b1ad0bca075a2b51f960353e4/install-chef-server.sh | sudo bash | |
wget https://opscode-omnibus-packages.s3.amazonaws.com/ubuntu/12.04/x86_64/chef-server_11.1.3-1_amd64.deb | |
sudo dpkg -i chef-server_11.1.3-1_amd64.deb | |
sudo chef-server-ctl reconfigure |
NewerOlder