J Levitt

Results 29 comments of J Levitt

Ok. Here's an example of using the search selector: ``` [STUFF] mydata = "somestuff" [JUNK] mydata ="other" ``` without having to know the string "STUFF" or "JUNK", you could do...

I'd like to be able to select just the node headers. For example: ``` [STUFF] mydata = "somestuff" [JUNK] mydata ="other" ``` How do I select just "[STUFF]" and "[JUNK]"...

These are great examples. Please add them to the main documentation. It would probably be useful to have sections for each format you support e.g. a JSON section, a TOML...

I want either a JS widget on a slide, or something like an iframe as part of the slide, in order to auto-scroll a text list. So, for example, say...

I can't seem to get it to accept both a conditional and tooltips. I tried something like this: `format: (d) => (d.fileName === '' ? ' --- ' : {d.filename}),`

I ended up using format: `format: (d) => (d.fileName === '' ? ' --- ' : {d.fileName}),`

Where do I get the Credentials object in JavaScript SDK Version 3? In SDK v3, the modules are imported piecemeal, e.g. `import { STSClient, AssumeRoleWithWebIdentityCommand } from "@aws-sdk/client-sts";` Your linked...

This code fragment should be all that you need. Just start with a sessiontoken, Accesskey, and secretkey that have the ability to make the resolveCustomer() call. If this works properly,...

Yup. Works for me too. But when I use the exact same code in a React component, I get the dreaded `TypeError: Failed To Fetch` It claims to be a...

My SaaS needs to make a resolveCustomer() call to determine if the incoming x-amzn-marketplace-token token is valid. Since this is a serverless SaaS (eventually, JS running from an S3 bucket),...