Skip to content

Instantly share code, notes, and snippets.

/usr/local/opt/coreutils/libexec/gnubin
/usr/local/opt/findutils/libexec/gnubin
/usr/local/opt/gnu-tar/libexec/gnubin
/usr/local/opt/gnu-sed/libexec/gnubin
/usr/local/opt/grep/libexec/gnubin
/usr/local/bin
/usr/bin
/bin
/usr/sbin
/sbin
module mealy_3processes
(
input clk,
input reset,
input x,
output reg parity
);
reg state;
reg nextstate;
@Nick-Rivera
Nick-Rivera / update.sh
Last active May 1, 2024 20:19
Update steps
# https://askubuntu.com/questions/445384/what-is-the-difference-between-apt-and-apt-get
# https://askubuntu.com/questions/194651/why-use-apt-get-upgrade-instead-of-apt-get-dist-upgrade
sudo apt update
sudo apt full-upgrade
npm install npm@latest -g
@Nick-Rivera
Nick-Rivera / p2b_plots.R
Last active June 8, 2018 01:49 — forked from RyanRosario/p2b_plots.R
Plots (R) for CS 143, Project 2B Final Report
## R CODE FOR GRAPHICS FOR
## FINAL DELIVERABLE FOR CS143 PROJECT 2B
# If you already have R installed on your home machine, transfer the resulting files
# to your shared directory and do the visualizations in R on your home system rather than
# in the VM because R is not installed there.
# R is actually the simplest software for making plots.
##################################################
1-In the github repo on Settings > Integration & Services, enable
2-Go to travisCI page and enable the repo
3-Configure the env variables on TravisCI so that it is not necessary to save credentials on github
-in the project Settings on TravisCI, add the entry for netlify site id: NETLIFY_SITE_ID - <site_id from .netlify file generated on netlify create>
-create a netlify access token for TravisCI
-On Netlify Dashboard, Go to Account Settings > OAuth Applications (https://app.netlify.com/account/applications) > Personal access tokens and press New Access Token
-Name it anything, but to make it easier the suggestion is name TravisCI.
-Generate it and COPY it - you won’t see it again!
-in the project Settings on TravisCI, add the entry for netlify personal access token generated for TravisCI: NETLIFY_ACCESS_TOKEN
4-Generate a .travis.yml file in the local repo