All changes to the XD will be documented in this file.
General High Level Description Sentence
- Description text box to the stress rating Modal
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Retool Wireframe</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/react@17/umd/react.development.js"></script> | |
| <script src="https://unpkg.com/react-dom@17/umd/react-dom.development.js"></script> | |
| <script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script> |
| mkdir ~/vim | |
| cd ~/vim | |
| # Staically linked vim version compiled from https://github.com/ericpruitt/static-vim | |
| # Compiled on Jul 20 2017 | |
| curl 'https://s3.amazonaws.com/bengoa/vim-static.tar.gz' | tar -xz | |
| export VIMRUNTIME="$HOME/vim/runtime" | |
| export PATH="$HOME/vim:$PATH" | |
| cd - |
| import { listenAndServe } from 'https://deno.land/std/http/mod.ts' | |
| import { readFileStr } from 'https://deno.land/std/fs/mod.ts' | |
| import { match } from 'https://cdn.pika.dev/path-to-regexp@^6.1.0' | |
| const render = async ({ page, state }) => { | |
| return ` | |
| <!doctype html> | |
| <html lang=en> | |
| <head> | |
| <meta charset=utf-8> |
| console.clear(); | |
| const weight = 163; // lbs | |
| const height = 182; // cm | |
| const age = 27; | |
| // Basal metabolic rate (calories you would use just sleeping all day) | |
| const bmr = Math.floor(66 + (13.7 * (0.453592 * weight)) + (5 * height) - (6.8 * age)); | |
| // Total daily energy expenditure (includes a multiplier for a sedentary remote dev XD) |
| console.clear(); | |
| const weight = 163; // lbs | |
| const height = 182; // cm | |
| const age = 27; | |
| // Basal metabolic rate (calories you would use just sleeping all day) | |
| const bmr = Math.floor(66 + (13.7 * (0.453592 * weight)) + (5 * height) - (6.8 * age)); | |
| // Total daily energy expenditure (includes a multiplier for a sedentary remote dev XD) |
| <?xml version="1.0"?> | |
| <ruleset name="Laravel Standards"> | |
| <!-- | |
| The name attribute of the ruleset tag is displayed | |
| when running PHP_CodeSniffer with the -v command line | |
| argument. The description tag below is not displayed anywhere | |
| except in this file, so it can contain information for | |
| developers who may change this file in the future. | |
| --> |
There are many categories of apps out there that in some way/shape/form need to be able to find the simple distance between point A and point B.
A few examples might be:
| /*import * as React from "react"; | |
| import * as ReactDOM from 'react-dom'; | |
| import { Provider } from 'react-redux' | |
| import { Store, createStore } from 'redux'; | |
| import App from './containers/App'; | |
| import reducer from './data/reducer'; | |
| import { Model, initialState } from './data/model'; | |
| const store: Store<Model> = createStore(reducer, initialState); |