Minh-Phuc Tran

Results 22 issues of Minh-Phuc Tran

Some of features would be really awesome to have in the next release 🚀: - [ ] Parser: Handle single-quoted strings. - [ ] Parser: Other improvements to make sure...

enhancement
good first issue

**Motivation** To have consistent field values, easy for maintain and update. For now, fields `workspaceFolder`, `workspaceMount` and `appPort` are duplicated in `.devcontainer.json`, `Dockerfile` and `scripts/start-devcontainer.sh`, it's okay to work and...

enhancement

**Motivation** To be able to use Git secure resources within the container, especially use Git features directly within VSCode.

enhancement

**Motivation** To be able to do GPG signing Git commits within dev containers and directly with VSCode Git features.

enhancement

In multiple themes scenario with `enableSystem=true`, would be convenient to provide a custom them resolution logic. For example, one may have `light, light-red, light-blue, dark, dark-red, dark-blue`, a custom resolution...

Stack tags don't get assigned on user pool resources. ### Reproduction Steps ```ts export class ExampleStack extends cdk.Stack { constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) { super(scope, id, props); new...

bug
p2
@aws-cdk/core
@aws-cdk/aws-cognito
effort/small
needs-cfn
blocked

When the user turns on block all cookies in Brave browser, localforage.ready() never get resolved. I tried to set to a specific driver, it still didn't work. No error was...

### Feature Description Something like: ```ts import { createStreamableUI, createStreamableValue } from "ai/rsc"; const ui = createStreamableUI(); const value = createStreamableValue(); ui.on("error", () => {}); value.on("close", () => {}); ```...

### Feature Description There is currently no way to get `tool_call_id` in `tools..render()`, it is necessary to properly call tools with OpenAI models. ### Use Case _No response_ ### Additional...

enhancement
ai/rsc

Resetting atoms either with `useResetRecoilState` or `reset` inside a `useRecoilCallback` does NOT trigger `onSet` event in the atom effect. ```tsx const state = atom({ key: "state", effects: [ (it) =>...