I hereby claim:
- I am nataliemarleny on github.
- I am nataliemarleny (https://keybase.io/nataliemarleny) on keybase.
- I have a public key ASAFLjdsC3B_y0mHxZeiLMbmQI_v9geHsYmc7DTlyiXNgwo
To claim this, I am signing this object:
| import * as React from "react"; | |
| import { PropertyControls, ControlType } from "framer"; | |
| import * as jp from "./jsonpath.js"; | |
| const style: React.CSSProperties = { | |
| height: "100%", | |
| display: "flex", | |
| flexDirection: "column", | |
| alignItems: "center", | |
| justifyContent: "center", |
I hereby claim:
To claim this, I am signing this object:
'STRING'.split('').map(c => c.charCodeAt()
// decodes string and gives ASCII values
// useful when you want to know which ASCII values a string is made of for debugging > o1 = { b: 'c' }
{ b: 'c' }
> o2 = o1
{ b: 'c' }
> o3 = { ...o1 }
{ b: 'c' }
> o1 === o2
true
> o1 === o3
| [user] | |
| name = <ur-name> | |
| email = <ur-email> | |
| [core] | |
| editor = vim -f | |
| excludesfile = /Users/<name-of-mac>/.gitignore_global | |
| [color] | |
| ui = true | |
| [alias] | |
| lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cd) %C(bold blue)<%an>%Creset' --abbrev-commit |
| import * as module from 'module'; | |
| jest.mock('service-making-a-http-request', () => | |
| Object.assign(require.requireActual('service-making-a-http-request'), { | |
| externalService: { | |
| execute: jest | |
| .fn() | |
| // function - 'test label' data | |
| .mockResolvedValueOnce({ | |
| body: { |
| function crossAdd(input) { | |
| let answer = []; | |
| for (let i = 0; i < input.length; i += 1) { | |
| let goingUp = input[i]; | |
| let goingDown = input(input.length-1-i]; | |
| answer.push(goingUp + goingDown); | |
| } | |
| return answer; | |
| } |
| yarn pm2 kill | |
| git clean -fxd | |
| yarn | |
| yarn dev |
| // Steps to reproduce funky itemScope rendering behaviour: | |
| ```sh | |
| npm init -y | |
| npm i --save react react-dom | |
| npm i --save-dev react-scripts | |
| mkdir -p public | |
| cat <<"EOF" > public/index.html | |
| <html> |
| { | |
| "editor.renderWhitespace": "boundary", | |
| "workbench.colorTheme": "Default High Contrast", | |
| "workbench.editor.tabSizing": "shrink", | |
| "window.zoomLevel": 1, | |
| "explorer.confirmDragAndDrop": false, | |
| "files.trimTrailingWhitespace": true, | |
| "files.insertFinalNewline": true, | |
| "files.trimFinalNewlines": true, | |
| "workbench.sideBar.location": "right", |