Skip to content

Instantly share code, notes, and snippets.

View RyanMulready's full-sized avatar

Ryan Mulready RyanMulready

View GitHub Profile

Choosing and Implementing an E-Sign Solution

  • Status: Decided/Implemented
  • Deciders: Ariel, Stephen, Phil, John, Jamie
  • Date: 2020-09-30

Technical Story: CDGM-853

Context and Problem Statement

@RyanMulready
RyanMulready / chrome.md
Last active October 2, 2020 14:06
Sharing Audio & Video In Google Meet
  1. Use Chrome and make sure you are signed into profile
  2. Click the three dots in the top right and select Cast
  3. Right click on the currently displayed cast icon again in the top right and select Always Show
  4. Right Click the icon again and turn on Enable Cloud Services
  5. Schedule a meeting in google calendar and add conferencing
  6. Attend the meeting with the currently logged in profile in chrome
  7. Open a new tab, visit the site you want to play audio/video from, click the cast icon and the current meeting name should appear
  8. Select the meeting and your video/audio should now play in the current meeting without an issue, you can visit other sites with that tab to continue sharing; closing the tab will stop casting and sharing.
@RyanMulready
RyanMulready / jackbox.md
Last active September 15, 2020 23:46
Jackbox
@RyanMulready
RyanMulready / gist:d3ddede0cc813ae27f8cb90e805b6cec
Created January 27, 2020 02:26
Get discord info out of discord
Get Users: https://discord.js.org/#/docs/main/stable/class/Guild?scrollTo=fetchMembers
Get User Info: https://discord.js.org/#/docs/main/stable/class/User
Get User Rank Info: https://discord.js.org/#/docs/main/stable/class/UserProfile
Get User Presence: https://discord.js.org/#/docs/main/stable/class/Presence
@RyanMulready
RyanMulready / Procfile
Created September 21, 2018 14:56
My Procfile
django: es-site/es/manage.py runserver 0.0.0.0:8000
compass: compass watch es-site/es/es/static
mail: maildev
log: tail -f local_es.log
storybook: yarn --cwd es-site/selfserve/ styleguide

Vuex/API

  • Split into module approach https://vuex.vuejs.org/guide/modules.html
  • Rename actions, mutations and getters into something more standard
  • Better approach to generic mutations key, value isn't ideal
  • Get empty schema from api instead of having it as a const
  • Analytics API reliance on store data requires multiple unnecessary api requests
  • Promised based sync is not ideal, need investigation into alternative approach

Webpack Optimization