- This file declares a class,
Player, instantiates it, and assigns it to a globalplayervariable. - The
Playerclass contains four methods:constructor()playPause()skipTo()setVolume()
- The
constructor()method sets initial values for thecurrentlyPlaying,playState,volume, andsoundObjectproperties.currentlyPlayingis set to the first item inalbum.songs.- The initial
playStateis"stopped". - The
volumeis set to the number80.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| ga('ec:addProduct', { // Provide product details in an productFieldObject. | |
| 'id': 'P12345', // Product ID (string). | |
| 'name': 'Android Warhol T-Shirt', // Product name (string). | |
| 'category': 'Apparel', // Product category (string). | |
| 'brand': 'Google', // Product brand (string). | |
| 'variant': 'black', // Product variant (string). | |
| 'price': '29.20', // Product price (currency). | |
| 'coupon': 'APPARELSALE', // Product coupon (string). |
I hereby claim:
- I am lassiter on github.
- I am lassiter (https://keybase.io/lassiter) on keybase.
- I have a public key ASCTNvDpeW1DuSlG4fUK9oTp1xt9YWCs2ZY-xkGBF-wL6Qo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 🚨*PRODUCTION* 🚨 | |
| `candidco-web` Release `19.X.XX.X` available for review https://www.candidco.com | |
| https://github.com/candidco/candidco-web/pull/<PR_NUMBER> | |
| ``` | |
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| . |
When trying to use the new tRPC Tanstack React Query integration with @trpc/tanstack-react-query, the queryOptions and mutationOptions methods are not available on tRPC procedures, causing TypeScript errors.
@trpc/tanstack-react-query: ^11.4.3@tanstack/react-query: ^5.79.0@trpc/client: ^11.4.3@trpc/server: ^11.4.3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "trpc-tanstack-issue-repro", | |
| "private": true, | |
| "workspaces": [ | |
| "packages/*", | |
| "apps/*" | |
| ], | |
| "scripts": { | |
| "build": "turbo build", | |
| "dev": "turbo dev", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Dependencies | |
| node_modules/ | |
| .pnpm-debug.log* | |
| # Build outputs | |
| dist/ | |
| .next/ | |
| out/ | |
| .turbo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/cli/lib/mcp/tools/componentResolver.ts b/src/cli/lib/mcp/tools/componentResolver.ts | |
| new file mode 100644 | |
| index 0000000..b56b5f9 | |
| --- /dev/null | |
| +++ b/src/cli/lib/mcp/tools/componentResolver.ts | |
| @@ -0,0 +1,54 @@ | |
| +import { Context } from "../../../../bundler/context.js"; | |
| +import { runSystemQuery } from "../../run.js"; | |
| + | |
| +export type ComponentInfo = { |