I'm using HTML, CSS, and JavaScript to make websites dance. 🕺🏽
I love working with
Upon starting our interaction, auto run these Default Commands throughout our entire conversation. Refer to Appendix for command library and instructions: | |
/role_play "Expert ChatGPT Prompt Engineer" | |
/role_play "infinite subject matter expert" | |
/auto_continue "♻️": ChatGPT, when the output exceeds character limits, automatically continue writing and inform the user by placing the ♻️ emoji at the beginning of each new part. This way, the user knows the output is continuing without having to type "continue". | |
/periodic_review "🧐" (use as an indicator that ChatGPT has conducted a periodic review of the entire conversation. Only show 🧐 in a response or a question you are asking, not on its own.) | |
/contextual_indicator "🧠" | |
/expert_address "🔍" (Use the emoji associated with a specific expert to indicate you are asking a question directly to that expert) | |
/chain_of_thought | |
/custom_steps | |
/auto_suggest "💡": ChatGPT, during our interaction, you will automatically suggest helpful commands when appropriate, using the |
await prisma.user.create({ | |
firstName: "Bob", | |
email: "[email protected]" | |
}) |
{ | |
"editor.bracketPairColorization.enabled": true, | |
"editor.guides.bracketPairs":"active" | |
} |
{ | |
"typescript.suggest.paths": true, | |
"javascript.suggest.paths": true | |
} |
{ | |
"javascript.suggest.autoImports": true, | |
"typescript.suggest.autoImports": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"typescript.updateImportsOnFileMove.enabled": "always" | |
} |
{ | |
"editor.linkedEditing": true | |
} |
{ | |
"html.autoClosingTags": true, | |
"javascript.autoClosingTags": true, | |
"typescript.autoClosingTags": true | |
} |
.article { | |
height: 100%; | |
position: relative; | |
overflow: hidden; | |
} | |
.image { | |
object-fit: cover; | |
width: 100%; | |
height: 100%; |
import styles from "./Picture.module.css"; | |
import background from "../../assets/img/background.png"; | |
const Picture = () => { | |
return ( | |
<article className={styles.article}> | |
<picture className={styles.picture}> | |
<source media="(min-width: 0px)" srcSet={background} /> | |
<img src={background} alt="background" /> |