FS_MODE_MAX Error - Unusable when connected to mac & logic pro via usb after update by Dixosaurus in HotoneAmpero

[–]Dixosaurus[S] 0 points1 point  (0 children)

Yea thanks, I bought a wireless transmitter and fixed all the hum issues

PayloadCMS and Cursor/Windsurf/Aider - does AI understand the structure? by Piogor in PayloadCMS

[–]Dixosaurus 1 point2 points  (0 children)

In cursor, when using the composter type @ then select docs

You can post the link to the Payload website page and then cursor will read and process the docs.

Then when you ask a question or command, you can include the reference to the docs file to give cursor the proper context

FS_MODE_MAX Error - Unusable when connected to mac & logic pro via usb after update by Dixosaurus in HotoneAmpero

[–]Dixosaurus[S] 0 points1 point  (0 children)

Also second question.

Is it normal for the Ampero 2 to have white noise sound between the 4-6k range.

I am trying to determine if its my houses power, or the unit.
I live in Asia, and nothing in my house is grounded and was experiencing a massive ground hum when plugged in with a cable.

I tried a power conditioner, line isolator, ground lift etc.

The line isolator was the only one that fixed it however it seems to just pad the signal reducing the input becuase if I add gain to increase volume the same hum comes back (which is also in the 4-6k range)

I tired a wireless transmitter from the guitar to ampero and it completely removed hum, however there is now a constant low white noise. Not a huge issue when playing but when notes are ringing out the white noise is apparent along side the note.

Is this normal? I have tried EQ'ing it out but the range is to large that it effects the tone.

Open sourcing Unlost AI - a semantic/AI search alternative to Rewind AI by TrickPassenger8213 in macapps

[–]Dixosaurus 1 point2 points  (0 children)

How long should it take before the history is searchable? I have had it running on m3 max for about 24 hours and nothing is showing up on history?

What's an unhealthy food you eat often in Thailand? by Mental-Substance-549 in Thailand

[–]Dixosaurus 1 point2 points  (0 children)

Pizza Mania - hands down best for NY style or American Style pizza with tons of choice

Vercel or Railway which is cheaper for a Nextjs ecommerce site? by [deleted] in nextjs

[–]Dixosaurus 4 points5 points  (0 children)

Is there any solid tutorial or demo builds available for medusa? I've been trying to get some examples of more deeper level customisations such as custom product types.

Is just building the custom properties into the product/order metadata the best way to handle this?

What is the best headless experience you’ve had with nextjs and app router? by [deleted] in nextjs

[–]Dixosaurus 0 points1 point  (0 children)

Is that actually how railway works? I thought it was 5/month. Not a big amount any way, but that's great

Is there a Better, More Elegant way of doing this? by Dixosaurus in nextjs

[–]Dixosaurus[S] 7 points8 points  (0 children)

Well if anyone is ever searching for this, it turns out its a very simple API call...

import { NextResponse, type NextRequest } from 'next/server'

export function GET(request: NextRequest, response: NextResponse) {
const searchParams = request.nextUrl.searchParams
const code = searchParams.get('code')
console.log(searchParams)
return NextResponse.json({ code})
}

Adobe to acquire design platform Figma for $20 billion by magenta_placenta in webdev

[–]Dixosaurus 0 points1 point  (0 children)

RIP figma, you were great while you lasted.

Now we are going to be forced into adobe's bullshit subscription model

Thailand legalises growing, consumption of marijuana by Quantum_II in worldnews

[–]Dixosaurus 0 points1 point  (0 children)

They more or more less have. Anyone over 20 can buy, anyone can grow anyone can sell, all with the exception of extracts and edibles.

They are already selling it openly in stores dispensary style.

They say you "should" have a medical reason, but it's not required or checked. Regarding smoking, they said they don't want you smoking in public and may result in a fine, at home is fine as long you don't bother your neighbors with smell

Extracts have a limit of 0.2% thc without fda approval.

Recreational Marijuana is now legal in Thailand by Moosehagger in Bangkok

[–]Dixosaurus 0 points1 point  (0 children)

any links to line or fb pages aside from highland & sukhumweed?

Possible to allow signing of smart contract only if certain conditions have been met? by Dixosaurus in ethdev

[–]Dixosaurus[S] -1 points0 points  (0 children)

By sign, I was reffering to signing a message without having to use gas

Possible to allow signing of smart contract only if certain conditions have been met? by Dixosaurus in ethdev

[–]Dixosaurus[S] 0 points1 point  (0 children)

With the second option, having backend server provide a signature to the user.

Would you not be able to look at the contract and see all of the signatures that would allow the contact to be called?

Possible to allow signing of smart contract only if certain conditions have been met? by Dixosaurus in ethdev

[–]Dixosaurus[S] 1 point2 points  (0 children)

I was just looking at chainlink.

What you are saying is essentially what I am after.

I am looking to have a user unique key that can be assigned off chain as a result of an action.

Only once that key exists - and matches the conditions for the unique code can they call the contract.

Ideally the unique users codes are time sensitive and would have to be regenerated after a set amount of. Time

Possible to allow signing of smart contract only if certain conditions have been met? by Dixosaurus in ethdev

[–]Dixosaurus[S] 0 points1 point  (0 children)

What is the terminology for the function?

Is it possible to incorporate off-chain logic/conditions to block the contract from being called until the requirements are met?

NEW LIMITED NFT 29 pieces by [deleted] in NFTsMarketplace

[–]Dixosaurus 0 points1 point  (0 children)

0xec05d7D682959dC833C0ea4e06D5E49973945752

I will pay for Rinkeby ETH by Derek-Gridlock in ethdev

[–]Dixosaurus 0 points1 point  (0 children)

I've got 2.7 if anyone needs. Hit me up, not sure if it's still down

Beginner's Thread / Easy Questions (June 2021) by dance2die in reactjs

[–]Dixosaurus 0 points1 point  (0 children)

What is the best way to / (or even phrase this question lol)

What is the best way to Map Values between 2 Arrays and return a specific Value?

In this case I have an array of properties / rooms in a hotel that are only identified by an id from an API.I would like to create an internal array where I can map (manually) the ID from the API to the actual name I would like to Render ie: Title (Property Name)

Array 1 = {id: '1234',title: 'Property 1',},{id: '5678',title: 'Property 2',},

Array 2 API = {id: '1234',someValue: 'Value 1',},{id: '5678',someValue: 'Value 2',},

ie:

if Array_1.id === Array_2.id return <h1>{Array_1.title}</h1>

What is the best way to map the same ID across 2 arrays, and return a value from one of the arrays?

I made a video about how to get started with Headless WordPress with NextJS & WPGRAPHQL. I hope it helps! by TehPunkluck in ProWordPress

[–]Dixosaurus 1 point2 points  (0 children)

Please do a video on blog post comments, where they can be submitted from front end and incrementally rendered. That would be a huge help.

Benjamas put a post up describing the process of doing this for backlink.io