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 paste this in the application.rb file to allow connections from ngrok proxy | |
| # (You might wanna change the host below according to the URL NGROK command yields) | |
| config.hosts << '.ngrok-free.app' |
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
| {"name":"ege-ide","settings":"{\"settings\":\"{\\n \\\"window.titleBarStyle\\\": \\\"custom\\\",\\n \\\"editor.multiCursorModifier\\\": \\\"ctrlCmd\\\",\\n \\\"editor.codeActionsOnSave\\\": {\\n \\\"source.fixAll.eslint\\\": true\\n },\\n \\\"editor.formatOnSave\\\": true,\\n \\\"[javascript]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"rvest.vs-code-prettier-eslint\\\"\\n },\\n \\\"[json]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[jsonc]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[typescriptreact]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[javascriptreact]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"rvest.vs-code-prettier-eslint\\\"\\n },\\n \\\"[typescript]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"rvest.vs-code-prettier-eslint\\\"\\n },\\n \\\"[html]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\ |
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
| /* MUI interface for modals */ | |
| <Dialog | |
| open={openSaveDialog} | |
| onClose={toggle} | |
| aria-labelledby="form-dialog-title" | |
| maxWidth="sm" | |
| fullWidth | |
| > | |
| <DialogTitle>{title}</DialogTitle> |
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 config = { | |
| width: xStyles.width, | |
| height: xStyles.height, | |
| margin: { | |
| top: 40, | |
| right: 40, | |
| bottom: 40, | |
| left: 40 | |
| }, | |
| color: { |
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
| type data = Array<{ | |
| year: string | |
| value: number | |
| }> |
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
| type data = Array<{ | |
| x: number | |
| y: number | |
| }> |
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
| type data = Array<{ | |
| id: string | |
| data: Array<{ | |
| x: string | |
| y: 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
| type data = Array<{ | |
| x: number | |
| y: number | |
| }> |
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
| type data = Array<{ | |
| name: string | |
| uv: number | |
| pv: number | |
| amt: number | |
| }> |
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
| // https://codesandbox.io/s/white-snow-1u6ei | |
| // D3 in React Chart Data | |
| type D3Data = Array<{ | |
| date: string, | |
| point1: number, | |
| point2: number, | |
| }> | |
| // Victory Chart Data |