Skip to content

Instantly share code, notes, and snippets.

View mrDarcyMurphy's full-sized avatar
🤘

Darcy Murphy mrDarcyMurphy

🤘
View GitHub Profile
Edge
Anonymous*
login -> LoggedIn
LoggedIn
logout -> Anonymous
click home -> Home
click users -> UsersAdmin
click apps -> AppsAdmin
click permissions -> PermissionsAdmin
click app1 -> PowerBI
Edge &
Navigation
click workspaces -> AdminWorkspaces
click reports -> AdminReports
click filters -> AdminFilters
click users -> AdminUsers
Content
Workspace
Report List
Report
@mrDarcyMurphy
mrDarcyMurphy / SketchSystems.spec
Last active November 9, 2018 13:02
Fat Stacks
Fat Stacks
Dashboard*
select Perspective -> Perspective
select Account -> Account
select RecentTransaction -> Transaction
select WishListItem -> WishListItem
Perspectives
add Perspective -> AddPerspective
select Perspective -> Perspective
Perspective
@mrDarcyMurphy
mrDarcyMurphy / SketchSystems.spec
Last active March 14, 2019 14:30
Create Placeholders States
Create Placeholders States
Documents Tab*
click add -> Add Placeholders
Grid*
Add Placeholders
cancel -> Grid
confirm -> POSTing Placeholders
POSTing Placeholders
POST fails -> Error Modal
POST wins -> Success Modal
Root?
loaded -> SignedUp?
SignedUp?
signed up? -> Confirmed
not signed up? -> Sign Up
Sign Up
submit -> Confirmed
Confirmed
Car*&
insert KEY -> EngineOff
Engine*
EngineOff*
turn KEY -> EngineOn
EngineOn
turn KEY -> EngineOff
Car&*
Engine*
EngineOff*
insert KEY -> EngineOff
turn KEY -> EngineOn
EngineOn
turn KEY -> EngineOff
Key?*
@mrDarcyMurphy
mrDarcyMurphy / Global.code-snippets
Last active January 31, 2024 18:06
Editor Snippets
{
/* Basic Logs */
"🌲 Log - Log": {
"scope": "javascript,javascriptreact,typescript,typescriptreact",
"prefix": "logLog",
"body": "console.log(`🌲 $1`)"
},
"ℹ️ Log - Info": {
"scope": "javascript,javascriptreact,typescript,typescriptreact",
"prefix": "infoLog",

Keybase proof

I hereby claim:

  • I am mrdarcymurphy on github.
  • I am mrdarcymurphy (https://keybase.io/mrdarcymurphy) on keybase.
  • I have a public key ASBmTQgh1INZVLiQPZxFM0ZPwHiAUD9KuX1uIpSHx_mmyQo

To claim this, I am signing this object:

@mrDarcyMurphy
mrDarcyMurphy / README.md
Created April 16, 2015 20:01
Recursive Ampersand Model Clearing

I needed a way to clear out a model and all of it's children, and its children's children. I simply extended ampersand-model and overrode its clear method to do so. Now I just create all my models from it to ensure they get cleared all the way down.