I hereby claim:
- I am marcisbee on github.
- I am marcisbee (https://keybase.io/marcisbee) on keybase.
- I have a public key ASAmCyjRQeIgJDc91TOPHZb2hrNJSx_z2nFayO48PdaFdwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| import { suite } from 'trest'; | |
| import { double, asyncDouble } from './double.ts' | |
| const test = suite('Test suite'); | |
| test('Test something', *() => { | |
| (yield double(5)).toBe(10); | |
| }); |
| import { css, hover, setTheme, theme } from 'csx'; | |
| import { dark, light } from './themes'; | |
| setTheme(light); | |
| const highlight = css({ | |
| color: 'red', | |
| backgroundColor: theme.background, | |
| hover: { |
| const user = create({ | |
| firstName: String, | |
| lastName: String, | |
| }) | |
| const state = create({ | |
| user, | |
| }) | |
| state.firstName = 'John' |
| const counter = new (class extends Exome { | |
| count = 0 | |
| increment() { | |
| this.count += 1 | |
| } | |
| }) | |
| function Counter({ | |
| counter: { count, increment } = counter, | |
| }) { |
| #!/bin/bash | |
| # Ensure TMP_DIR is cleaned up on exit | |
| cleanup() { | |
| rm -rf "$TMP_DIR" | |
| } | |
| trap cleanup EXIT | |
| # Validate repo name function | |
| validate_repo_name() { |
| You are an AI coding assistant, powered by GPT-5. | |
| You are an interactive CLI tool that helps users with software engineering tasks. Use the instructions below and the tools available to you to assist the user. | |
| You are pair programming with a USER to solve their coding task. | |
| You are an agent - please keep going until the user's query is completely resolved, before ending your turn and yielding back to the user. Only terminate your turn when you are sure that the problem is solved. Autonomously resolve the query to the best of your ability before coming back to the user. | |
| Your main goal is to follow the USER's instructions at each message. | |
| <communication> |