Skip to content

Instantly share code, notes, and snippets.

View webzep's full-sized avatar
🌍

Steve Richardson webzep

🌍
View GitHub Profile
@webzep
webzep / slack-user-scrape.md
Last active August 19, 2022 02:48
Scrape all users in a slack workspace

Scrape users from Slack

  1. Open your slack workspace in chrome.
  2. Open the sources tab in the dev tools, create a snippet with the code below and press run.
  3. As member data comes in via requests it will be saved to window.slackUsers.
  4. To populate this faster, open up a channel member list and scroll to the bottom.
window.slackUsers = [];
const hasUser = (id) =>
@webzep
webzep / react-typescript-parcel.sh
Last active July 28, 2022 04:03
React TypeScript Parcel Template Generator
# Create package json
echo '{
"name": "template",
"version": "1.0.0",
"description": "React TypeScript Parcel Template",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"start": "parcel src/index.html --dist-dir ./build --no-source-maps",
"dev": "watch '\'npm start\'' src",
"build": "parcel build src/index.html --dist-dir --no-source-maps",
@webzep
webzep / fun-zsh.md
Last active September 21, 2021 21:23
Make your terminal more fun!

Fun Zsh

I believe this will only work for MacOS and Linux users. If someone creates a version for windows or bash please do share it with the course.

This contains some configuration for your Zsh config to make the terminal more fun.

You need to include whichever portions of the sample below in your .zshrc file.

Type the following in the terminal to open the .zshrc file: open ~/.zshrc. Then you can paste in the parts you want. Dont forget to replace "steviebaa" in the github alias.

@webzep
webzep / mongodb_cheat_sheet.md
Created October 30, 2020 07:59 — forked from bradtraversy/mongodb_cheat_sheet.md
MongoDB Cheat Sheet

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database

@webzep
webzep / mongodb_cheat_sheet.md
Created October 30, 2020 07:59 — forked from bradtraversy/mongodb_cheat_sheet.md
MongoDB Cheat Sheet

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database