Skip to content

Instantly share code, notes, and snippets.

View Eeebru's full-sized avatar
🏠
Working from home

Opeyemi Eeebru

🏠
Working from home
View GitHub Profile
@Eeebru
Eeebru / .eslintrc.json
Created June 29, 2020 14:31 — forked from coryhouse/.eslintrc.json
.eslintrc.json file for "Building a JavaScript Development" Pluralsight course
{
"root": true,
"extends": [
"eslint:recommended",
"plugin:import/errors",
"plugin:import/warnings"
],
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
@Eeebru
Eeebru / index.js
Last active September 5, 2020 11:47
ES6 index file for sequelize mole
import fs from 'fs';
import path from 'path';
import Sequelize from 'sequelize';
import configJson from '../config/config';
const basename = path.basename(__filename);
const env = process.env.NODE_ENV ? process.env.NODE_ENV : 'development';
const config = configJson[env];
@Eeebru
Eeebru / mongodb_cheat_sheet.md
Created October 31, 2020 09:14 — forked from bradtraversy/mongodb_cheat_sheet.md
MongoDB Cheat Sheet

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database

@Eeebru
Eeebru / ohmyzsh.md
Created February 12, 2022 11:51 — forked from yovko/ohmyzsh.md
ZSH (using Oh My ZSH) on Manjaro Linux

ZSH (using Oh My ZSH) on Manjaro Linux

0. If ZSH is not already installed on your Manjaro system you can do it with the command:

sudo pacman -Syu zsh

You do not need to install manjaro-zsh-config and all the other related packages like zsh-syntax-highlighting, zsh-history-substring-search, zsh-autosuggestions, etc., as we will use Oh My Zsh.

@Eeebru
Eeebru / gke_persistent_volumes.md
Created April 14, 2022 10:27 — forked from soeirosantos/gke_persistent_volumes.md
Playing around with persistent volumes on Google Kubernetes Engine

GKE Persistent Volumes

Let's play around with persistent volumes on GKE.

Setup stuff

$ gcloud init
<output_omitted>