Skip to content

Instantly share code, notes, and snippets.

View dooderstem's full-sized avatar
🐥
Better Than Yesterday

DOODER(Michael Smith) dooderstem

🐥
Better Than Yesterday
  • Ohio, USA
  • 15:28 (UTC -04:00)
View GitHub Profile
@matthewzring
matthewzring / markdown-text-101.md
Last active July 22, 2024 23:14
A guide to Markdown on Discord.

Markdown Text 101

Want to inject some flavor into your everyday text chat? You're in luck! Discord uses Markdown, a simple plain text formatting system that'll help you make your sentences stand out. Here's how to do it! Just add a few characters before & after your desired text to change your text! I'll show you some examples...

What this guide covers:

xcode-select --install
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew update
brew cask install iterm2
# update iterm2 settings -> colors, keep directory open new shell, keyboard shortcuts
brew install bash # latest version of bash
# set brew bash as default shell
brew install fortune
brew install cowsay
brew install git

Dev Setup

  1. Homebrew/terminal/bash
  2. OSX Productivity - Window Management/Quick Launcher/Hyperswitch
  3. OSX Settings - Dock/Finder
  4. Web Browser - Extensions - AdBlock, Privacy Badger, OneTab, JSONViewer, Stylus, Vue Devtools, React Devtools
  5. Node.js - nvm
  6. Code Editor - vs code
  7. Code Editor Extensions
  8. Break timer and Flux
tap "homebrew/bundle"
tap "homebrew/cask"
tap "homebrew/core"
tap "homebrew/services"
brew "bash"
brew "cowsay"
brew "fortune"
brew "git"
brew "mongodb"
brew "postgresql"

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database

alexcvzz.vscode-sqlite
andys8.jest-snippets
apollographql.vscode-apollo
austincummings.razor-plus
bobsparadox.seti-black
BriteSnow.vscode-toggle-quotes
christian-kohler.npm-intellisense
christian-kohler.path-intellisense
CoenraadS.bracket-pair-colorizer
dbaeumer.vscode-eslint
@dooderstem
dooderstem / ExamplePlugin.plugin.js
Last active July 10, 2023 00:58 — forked from rauenzi/ExamplePlugin.plugin.js
Plugin template for BetterDiscord v1
/**
* @name ExamplePlugin
* @author YourName
* @description Describe the basic functions. Maybe a support server link.
* @version 0.0.1
* @invite inviteCode
* @authorId 51512151151651
* @authorLink https://twitter.com/Whoever
* @donate https://paypal.me/
* @patreon https://patreon.com/
@dooderstem
dooderstem / rgbcolor.js
Last active July 10, 2023 00:58
rgbcolor.js
const fetch = require("node-fetch");
const { createCanvas } = require("canvas");
const RGBColor = require("rgbcolor");
const DataImageAttachment = require("dataimageattachment");
const fs = require("fs");
// https://github.com/meodai/color-names
let api = `https://api.color.pizza/v1/?values=`;
let Canvas = (rgbcolor) => {
@dooderstem
dooderstem / README.md
Last active July 10, 2023 00:58
README Badges
@dooderstem
dooderstem / node.js
Last active July 10, 2023 00:58
node-cheatsheet
/* *******************************************************************************************
* SYNOPSIS
* http://nodejs.org/api/synopsis.html
* ******************************************************************************************* */
var http = require('http');
// An example of a web server written with Node which responds with 'Hello World'.
// To run the server, put the code into a file called example.js and execute it with the node program.