DO NOT use "You're absolutely right", find some other expression to say, keep your tone professional and positive without unnecessary excitement.
This project uses multiple CLAUDE.md files for domain-specific guidelines:
| File | Content |
|---|
A GitHub Actions workflow that uses Claude Opus (via AWS Bedrock) to automatically review pull requests with inline comments.
| import { useCallback, useRef, useState } from "react"; | |
| const useMousePosition = () => { | |
| const [mousePosition, setMousePosition] = useState({ | |
| left: 0, | |
| top: 0, | |
| }); | |
| const handleMouseMove = useCallback( | |
| (e) => |
| /** | |
| * @name debounce | |
| * @summary Debounces "func" within "wait". | |
| * @see {@link https://davidwalsh.name/javascript-debounce-function} | |
| * @see {@link https://www.freecodecamp.org/news/javascript-debounce-example/} | |
| * @example <button onClick={debounce(() => console.log("1s"), 1000)}>Debounce</button> | |
| * @param {Function} func | |
| * @param {number} [wait] | |
| * @returns {Function} | |
| */ |
| // Encode | |
| echo -n 'username:password' | openssl base64 | |
| // dXNlcm5hbWU6cGFzc3dvcmQ= | |
| // Decode | |
| echo `echo dXNlcm5hbWU6cGFzc3dvcmQ= | base64 --decode` | |
| // username:password |
| document.addEventListener('keyup', function(e) { | |
| 9 != e.keyCode || e.metaKey || e.ctrlKey || console.log(document.activeElement) | |
| }, false) |
| /* | |
| * var person = { firstName: 'bill', lastName: 'johnson' } | |
| * | |
| * person = _.rename(person, 'firstName', 'first') | |
| * person = _.rename(person, 'lastName', 'last') | |
| * | |
| * console.log(person) // { first: 'bill', last: 'johnson' } | |
| */ | |
| _.rename = (obj, key, newKey) => { |