Skip to content

Instantly share code, notes, and snippets.

View woodRock's full-sized avatar
🫖
Activate zen mode (CTRL + K, Z)

Jesse Wood woodRock

🫖
Activate zen mode (CTRL + K, Z)
View GitHub Profile
@woodRock
woodRock / AppWithContext.jsx
Created July 31, 2020 02:44
React Context Provider
import React from "react";
import ReactDOM from "react-dom";
import App from "./App";
import ContextProvider from "./context";
ReactDOM.render(
<ContextProvider>
<App />
</ContextProvider>,
document.getElementById("root")
@woodRock
woodRock / Example.jsx
Created July 31, 2020 02:43
Usage for a React Context
import { useContext } from "./context";
const Example = () => {
const [thing] = useContext();
return (
<>
{thing}
</>
);
@woodRock
woodRock / Example.jsx
Last active July 31, 2020 02:44
React Context Template. In React, a Context is similar to a Global Variable from OO programming. We can make variables, functions, API calls, etc... accessible across multiple components.
import { useContext } from "./context";
const Example = () => {
const [thing] = useContext();
return (
<>
{thing}
</>
);
@woodRock
woodRock / signature.html
Created July 25, 2020 01:22
Email Signature
--
<p>
Jesse Wood
<p>
<img height=100px width=100px src="https://avatars0.githubusercontent.com/u/18411037?s=460&u=f7b8b49568c83d34a45c57ded800c064aa46df79&v=4">
<p>
Student,
<br>
Software Engineering
<br>
@woodRock
woodRock / bash.md
Created March 14, 2020 06:08
Bash Configuration

Bash Configuration

Add the following to the bottom of your bash script.

#required for the fuck package
eval "$(thefuck --alias)"

#customise the bash prompt
PS1="\[\033[01;34m\]$\[\033[01;00m\] "
@woodRock
woodRock / vim.md
Last active March 14, 2020 06:18
Vim Configuration

Vim Configuraiton

Plugins

Requires the vim-plug vim extension manager.

call plug#begin()
Plug 'preservim/nerdtree'
Plug 'ryanoasis/vim-devicons'
Plug 'scrooloose/nerdcommenter'
Plug 'mattn/emmet-vim'
Plug 'valloric/youcompleteme'
@woodRock
woodRock / hakimi.rb
Created November 9, 2019 08:37
This algorithm is a ruby implementation of the Havel-Hakimi Algorithm.
def hakimi n,list
list = list.sort.reverse
return true if list.empty? or list[0] == 0
list.delete(0)
n = list.shift
return false if (n > list.length)
(0..n-1).each {|i| list[i] = (list[i]-1)}
return hakimi(n, list)
end
@woodRock
woodRock / vpn
Last active September 17, 2019 03:58
This script enables a NordVPN connection to the US on Manjaro Linux. It can be added to the path or run on startup. Depending on preferences. It will require permission to be executed using chmod.
sudo systemctl start nordvpnd
nordvpn connect us
@woodRock
woodRock / rename-episodes.sh
Last active September 17, 2019 05:48
Rename a episodes in a folder for a season
a=1
for i in *.mkv; do
placeholder=""
if [ "$a" -lt 10 ]
then
placeholder="0"
fi
new=$(printf "Episode-%s%d.mkv" "$placeholder" "$a")
mv -i -- "$i" "$new"
let a=a+1
@woodRock
woodRock / auto-complete-keepass.md
Created September 10, 2019 15:39
Keepass Auto-completion Linux
  1. The xdotools package is a pre-requisite
yay xdotools
  1. Create a key bind of your choice
Ctrl+Shift+P