- Contains only ingredients that need to be purchased
- Must be compatible with OurGroceries Direct Paste Import
Rules:
- One ingredient per line
| { | |
| "basics": { | |
| "name": "Chris Lee", | |
| "label": "Senior Software Engineer | AI-First Engineer", | |
| "summary": "Senior Software Engineer and AI-first engineer focused on enterprise platform modernization, front-end architecture, and scalable financial systems. Specializes in prompt engineering and test-driven AI development (TDAI), applying structured evaluation and validation practices to LLM-powered workflows. Experienced in leading modernization of large-scale payment systems, driving engineering standards, and mentoring teams in enterprise environments.", | |
| "location": { | |
| "city": "McKinney", | |
| "region": "Texas", | |
| "countryCode": "US" | |
| }, |
This course introduces JavaScript developers to TypeScript while emphasizing Test-Driven Development (TDD). It focuses on leveraging TypeScript's static typing and tooling to improve software reliability and maintainability.
import { Image } from 'mdx-deck'
<Image src='https://source.unsplash.com/random/768x2048?cats' style={{ display: 'flex', alignItems: 'center',
| let UserContext = React.createContext(); | |
| class App extends React.Component { | |
| state = { | |
| user: null, | |
| setUser: user => { | |
| this.setState({ user }); | |
| } | |
| }; |
| // π₯ Node 7.6 has async/await! Here is a quick run down on how async/await works | |
| const axios = require('axios'); // promised based requests - like fetch() | |
| function getCoffee() { | |
| return new Promise(resolve => { | |
| setTimeout(() => resolve('β'), 2000); // it takes 2 seconds to make coffee | |
| }); | |
| } |
| // π₯ Node 7.6 has async/await! Here is a quick run down on how async/await works | |
| const axios = require('axios'); // promised based requests - like fetch() | |
| function getCoffee() { | |
| return new Promise(resolve => { | |
| setTimeout(() => resolve('β'), 2000); // it takes 2 seconds to make coffee | |
| }); | |
| } |