Skip to content

Instantly share code, notes, and snippets.

View edcote's full-sized avatar
🎯
Googler

Edmond Cote edcote

🎯
Googler
View GitHub Profile
@edcote
edcote / nfs.md
Last active May 3, 2018 22:55
NFS and rsnapshot
@edcote
edcote / chisel3.md
Last active April 5, 2018 00:22
Chisel3
@edcote
edcote / coin-or.md
Created February 25, 2018 21:04
COIN-OR
@edcote
edcote / gce.md
Last active May 5, 2018 02:31
Google Compute Engine

Google Compute Engine

CONSOLE

HOWTO

Cloud SDK install

For Ubuntu:

@edcote
edcote / dotfiles.md
Last active February 1, 2018 01:36
Dotfiles

Dot Files

Bash

  • For consistent results, remove package bash-completion using yum remove

  • Add directive shopt -s direxpand to file .bashrc for environment variables to expand to full path

  • Add following to your ~/.inputrc file:

      "\e[A": history-search-backward  
    

"\e[B": history-search-forward

@edcote
edcote / riscvsw.md
Last active October 4, 2018 10:02
RISC-V System Software

RISC-V System Software

Ignore the instructions to build GCC/Newlib toolchain. Consult this Linux/RISC-V installation manual instead.

Setup environment variables

module load riscv-tools/local

# old

export RISCV_SW=$CAD_ROOT/riscv-sw

@edcote
edcote / frontend.md
Last active May 8, 2018 21:49
Frontend Frameworks

Frontend Frameworks

NPM

npm is the package manager for JavaScript. Install using apt install npm.

  • Setup repository: cd public/js && npm init -y

  • Install modules and dependencies

@edcote
edcote / mongodb.md
Last active June 21, 2018 15:26
MongoDB

MongoDB

MongoDB stores data in flexible, JSON-like documents. The document model maps to object in your application code, making data easy to work with. MongoDB is a distributed database at its core.

Here. Be careful, need 3.4 or later.are notes on how to install MongoDB on RHEL7.

Spark and MongoDB

MongoDB is a document store (and essentially a database). Spark is a computing engine and not a store. When used together, Spark jobs can be executed directly on operational data sitting in MongoDB.

@edcote
edcote / play.md
Last active May 6, 2018 16:29
Play Framework

Play Framework

Important files

Directory structure

  • conf/routes defines how application routes HTTP GET requests to an action. Example:
# URI '/' calls index view (index.scala.html) 
@edcote
edcote / docker.md
Last active May 21, 2018 17:32
Docker Help