This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Trial getting help component | |
| Create a new tab in the sidebar | |
| When hovering on the tab -> Open help modal | |
| Open help modal | |
| create three components | |
| the title | |
| hard coded the title | |
| the videoSection | |
| one helpOption component rendered three times with different values for the text and the side video | |
| the bottom navigation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| My Awesome Sketch | |
| Get connector name | |
| Find connector name from webhook response -> Fetch from artisan the operations and the triggers | |
| Fetch from artisan the operations and the triggers | |
| Artisan returns connector response -> Save data on contentful with is service trigger and artisan fields | |
| Artisan does not have this connector -> Save data on contentful with not is service trigger and empty artisan fields | |
| Save data on contentful with is service trigger and artisan fields | |
| Save data on contentful with not is service trigger and empty artisan fields |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Copy this into the console of any web page that is interactive and doesn't | |
| do hard reloads. You will hear your DOM changes as different pitches of | |
| audio. | |
| I have found this interesting for debugging, but also fun to hear web pages | |
| render like UIs do in movies. | |
| */ | |
| const audioCtx = new (window.AudioContext || window.webkitAudioContext)() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react'; | |
| import { | |
| withRouter | |
| } from 'react-router-dom'; | |
| class ContactForm extends Component { | |
| submitForm (e) { | |
| e.preventDefault() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>Cake today</title> | |
| <style id="jsbin-css"> | |
| /* Base styles */ | |
| body { | |
| background-color: #ddd; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Welcome to the JS quiz! | |
| * | |
| * This is to help mentors know what we need to do better. | |
| * | |
| * You are welcome to use MDN to check syntax: https://developer.mozilla.org | |
| */ | |
| /* Question 1 | |
| * | |
| * Write a function that takes two numbers and returns the the largest number of the two. |