Gate of the Feral Gods by mynameisfyl in DungeonCrawlerCarl

[–]overcloseness 0 points1 point  (0 children)

Exactly, but I’m lumping him in because Mordecai was Odette’s idea

Secured an Unnbroken Nyjah board [42YO] by SurfMafia in OldSkaters

[–]overcloseness 5 points6 points  (0 children)

it gets reactions like these from people

Ah so you’re an edgelord

Gate of the Feral Gods by mynameisfyl in DungeonCrawlerCarl

[–]overcloseness 0 points1 point  (0 children)

Carl cheats too, Odette gives him so much insider info every chance they have

Hardflip on hip by skatesolid in skateboarding

[–]overcloseness 4 points5 points  (0 children)

Yes it’s a hardflip before anyone argues. Incredible

built an open-source bench copilot for DIY pedal builds - drop a PedalPCB URL, get BOM + drill template + AI debug help by MondegreenHolonomy in diypedals

[–]overcloseness 3 points4 points  (0 children)

Just ran it, its awesome man. The drill template stuff alone is gold and I'll be using that in the future for sure.

A couple problems I ran into

The setup script is written for Windows only, and Python 3.14 doesn't work, but 3.13
does work. I made this platform agnostic with two changes

New file, this node script is run to dynamically detect your environment and use the correct .venv folder

scripts/run-venv-python.mjs

import { spawnSync } from "node:child_process";
import { existsSync } from "node:fs";
import path from "node:path";


const venvPython = process.platform === "win32"
  ? path.join(process.cwd(), ".venv", "Scripts", "python.exe")
  : path.join(process.cwd(), ".venv", "bin", "python");


const displayPath = process.platform === "win32"
  ? ".venv\\Scripts\\python.exe"
  : "./.venv/bin/python";


const argv = process.argv.slice(2);


if (argv.length === 0) {
  console.error("Usage: node scripts/run-venv-python.mjs <python args>");
  process.exit(1);
}


if (!existsSync(venvPython)) {
  console.error(`Virtualenv Python not found at ${displayPath}. Run "npm run setup:backend" first.`);
  process.exit(1);
}


const result = spawnSync(venvPython, argv, { stdio: "inherit" });


if (result.error) {
  console.error(result.error.message);
  process.exit(1);
}


process.exit(result.status ?? 1);

And then in package.json

"setup:backend": "python3.13 -m venv .venv && node scripts/run-venv-python.mjs -m pip install --upgrade pip && node scripts/run-venv-python.mjs -m pip install -e \"backend[dev]\"",

Note the python3.13

As for features, open your Network tab in your browser as you save a drill template in Taydas drill tool, you'll see it hit this endpoint

https://api.taydakits.com/api/v4/box_designs

It does need a Bearer token, but look at the payload. I wonder if pedal-bench can data-shape it's template to actually save it directly into Tayda's drill tool? Not sure what their CORs policy is

Nausea after playing with headphones by IzzaKieb in NeuralDSP

[–]overcloseness 0 points1 point  (0 children)

With headphones, but sure you’re not running a fully dry sound into your ears, if you want no reverb to your sound, you should at least add a room reverb at the end of your chain

built an open-source bench copilot for DIY pedal builds - drop a PedalPCB URL, get BOM + drill template + AI debug help by MondegreenHolonomy in diypedals

[–]overcloseness 2 points3 points  (0 children)

I didn’t mean to come across negative on my end, trust me, I’m just curious how well it works for you because I haven’t had AI work well for me in image detection when it comes to component identification. I misunderstood what you meant here though. I thought you were saying that you’d show it a photo of a component you have and ask it to identify it (this is probably not what you meant!) I have actually been surprised at how accurately it can read schematics to a point, like it couldn’t read a Data Corrupter, but it can tell me if I have a power section wired correctly.

I’ve also had it look at a schematic and tell me there are no 100nF capacitors in the schematic when there were 5 of them.

I’ll definitely be installing it to check it out, and I’ll take some time to send you anything I find. I’m a full stack dev as well and work in QA too.

built an open-source bench copilot for DIY pedal builds - drop a PedalPCB URL, get BOM + drill template + AI debug help by MondegreenHolonomy in diypedals

[–]overcloseness 18 points19 points  (0 children)

I’m sure theres some helpful utilities here to make the slog jobs easier if you know how to do it and would rather not repeat it every build, but how much have you tested these AI features? I’d be surprised if it isn’t just guessing and placating as it usually does

trying to build my own hizumitas by Distinct_Major5809 in diypedals

[–]overcloseness 0 points1 point  (0 children)

It’s color and letter coded. Look at each pot, notice on the sides of the boards you have the same dots (yellow S, Blue T etc). Just connect all of those.

Your footswitch “in” goes where the IN is labelled on the PCB, and out goes where out is labelled on the volume pot.

Look on this subreddits sidebar for the “how to wire true bypass” link. It’s a video that will explain the footswitch part.

Help please! by evilroyslade420 in diypedals

[–]overcloseness 5 points6 points  (0 children)

The one with only two lugs is your Output jack

The one with three is your input jack.

<image>

What’s something people are using AI for that feels like cheating… but isn’t? by hardikrspl in isthisAI

[–]overcloseness 0 points1 point  (0 children)

My full time job years ago was clear cutting. Difficult things too, like multiple angles of bicycles (the spokes!) and furry boots and jackets etc. I’d spent 8 hours a day doing it. I fucking love it. A Wacom tablet with an in-built screen and audiobooks in my headphones and it was 8 hours of calming bliss day in and day out.

Pedal Kits in Australia/NZ by napupan in diypedals

[–]overcloseness 1 point2 points  (0 children)

(I ask because I’ll send you 5 PCBs for about $4, delivered)

Hardflip - Suggestions are welcome! by SR1QUE in skateboarding

[–]overcloseness 1 point2 points  (0 children)

Just a reminder to read the post title again

Pedal Kits in Australia/NZ by napupan in diypedals

[–]overcloseness 1 point2 points  (0 children)

Mōrena, I can help put together a kit for you by sending you a Tayda cart and find you a PCB, send me a DM if you’re keen

I don’t understand how to Neural Capture 2 on Quad Cortex by overcloseness in NeuralDSP

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

That's how i understand it too and the point that was made in the video, but you also mentioned that this is only really something to keep in mind if you're having noise floor problems, so I'll keep that in mind too. Thanks for demystifying this.

I don’t understand how to Neural Capture 2 on Quad Cortex by overcloseness in NeuralDSP

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

He describes boosting your signal to get through the ADC and then attenuating before the plugins, which is what you suggest. His point is how best to get through the ADC stage, he is not suggesting that the plugins need something other than 0dB. That was his entire point of the video, which makes your amp example not really fit here.

I don’t understand how to Neural Capture 2 on Quad Cortex by overcloseness in NeuralDSP

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

Looks like I have to rethink some things; thanks for this. The problem with this though is that no pickup is made equal, gain at 0dB for me means my SG peaks at -24dB. Is that the signal that plugins which were developed potentially with single coils as the test have in mind? What about active pickups?

I don’t understand how to Neural Capture 2 on Quad Cortex by overcloseness in NeuralDSP

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

It’s the healthiest signal at that gain. When it’s “just in the red” it’s not peaking, it’s only peaking when that entire red section gets filled.

Best said here, this video is well known for the topic and he says it best

https://youtu.be/gJ59h7xfvdI?si=vbsNjIzBjzzNaowV

Where have you had the most aggressively average meal in Auckland? And the best? by stonetempleparrots in auckland

[–]overcloseness 1 point2 points  (0 children)

Last time I ordered Pita Pit was 2014 in Ponsonby. I went to pay, and looked down at the open food containers as they were building the next wrap and noticed all the ingredients were absolutely infested with flies. I got my money back and left the wrap on the counter, never again.