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 core from '@actions/core'; | |
import * as github from '@actions/github'; | |
import client from '@sendgrid/client'; | |
import path from 'path'; | |
import fs from 'fs'; | |
import colors from 'ansi-styles'; | |
// @ts-ignore | |
import HumanHash from 'humanhash'; | |
async function upload(files: string[]) { |
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
BEGIN:VCALENDAR | |
VERSION:2.0 | |
PRODID:-//ical.marudot.com//iCal Event Maker | |
CALSCALE:GREGORIAN | |
X-WR-CALNAME:Therapy Notes Calendar | |
BEGIN:VTIMEZONE | |
TZID:America/Havana | |
LAST-MODIFIED:20201011T015911Z | |
TZURL:http://tzurl.org/zoneinfo-outlook/America/Havana | |
X-LIC-LOCATION:America/Havana |
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
BEGIN:VCALENDAR | |
VERSION:2.0 | |
PRODID:-//ical.marudot.com//iCal Event Maker | |
CALSCALE:GREGORIAN | |
BEGIN:VTIMEZONE | |
TZID:America/Havana | |
LAST-MODIFIED:20201011T015911Z | |
TZURL:http://tzurl.org/zoneinfo-outlook/America/Havana | |
X-LIC-LOCATION:America/Havana | |
BEGIN:STANDARD |
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
[alias] | |
co = checkout | |
br = branch | |
brl = branch --sort=-committerdate --format='%(HEAD) %(color:yellow)%(refname:short)%(color:reset) - %(color:green)%(committerdate:relative)%(color:reset) - %(authorname)' | |
st = status | |
cm = commit | |
ls = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate | |
ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat | |
[core] | |
pager = diff-so-fancy | less --tabs=4 -RFX |
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 fieldsConfig = { | |
title: { | |
label: 'Title', | |
}, | |
postal: { label: 'Postal Code' }, | |
type: { label: 'Job Type' }, | |
experience: { label: 'Experience Level' }, | |
description: { label: 'Description', component: 'textarea' }, | |
url: { label: 'URL', helper: `You don't need to include http://` }, | |
}; |
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
class Input extends Component { | |
// other stuff | |
render() { | |
return <input value={this.props.value} onChange={this.props.onChange} /> | |
} | |
}; | |
class CoolComponent extends Component { | |
// other stuff | |
doSomethingWithRealInput() { |
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 Spinner from './components/Spinner'; | |
import Error from './components/Error'; | |
import SomeCoolComponent from './components/SomeCoolComponent'; | |
const SomeContainerComponent = props => { | |
function *generateContent() { | |
if (props.isLoading) { | |
yield <Spinner />; | |
} else if (props.isError) { | |
yield <Error />; |