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
{ | |
"workbench.iconTheme": "material-icon-theme", | |
"atomKeymap.promptV3Features": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.formatOnPaste": false, | |
"files.insertFinalNewline": true, | |
"editor.tabSize": 2, |
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
let counter = 0; | |
let setValue = 0; | |
let counterInterval; | |
let state; | |
const DEBOUNCE = 50; | |
function buzzAndBeep() { | |
return Bangle.buzz(1000, 1) | |
.then(() => Bangle.beep(200, 3000)) |
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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="/Users/fbedussi/.oh-my-zsh" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes |
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
const teloMachine = Machine( | |
{ | |
id: 'telo', | |
initial: 'active', | |
context: { | |
appointmentType: 'new patient', | |
isRefractionistEnabled: true, | |
}, | |
states: { | |
active: { |
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
{"lastUpload":"2019-03-06T10:10:00.863Z","extensionVersion":"v3.2.5"} |
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 * as React from 'react' | |
import { render } from 'react-dom' | |
import { ThemeProvider } from 'styled-components' | |
import Toast, { ToastVariant } from '@components/Toast/Toast' | |
import { SerializedError } from '@reduxjs/toolkit' | |
import { FetchBaseQueryError } from '@reduxjs/toolkit/dist/query' | |
import { theme } from '@root/theme' | |
import CallErrorAlert from '../components/CallErrorAlert/CallErrorAlert' |
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 from 'react' | |
import styled from 'styled-components' | |
import { Theme } from '@root/theme' | |
import { removeToast } from '@root/utils/toasts' | |
import CloseIcon from '../../assets/icons/close.svg' | |
const Wrapper = styled.div<{ theme: Theme }>` | |
position: fixed; |
OlderNewer