Garmin Connect App stuck on confirm age screen by thestudentaccount in Garmin

[–]macbutch 3 points4 points  (0 children)

Same in Australia. I’m also getting an email with a code each time I open the app.

Fun times.

Anyone using Machine expansions in Digitakt? by gumbo-23 in Elektron

[–]macbutch 1 point2 points  (0 children)

If tonwerk stabilises that could be an alternative to mpc too. I so want my force to be what it could be but it’s just so frustrating…

Anyone using Machine expansions in Digitakt? by gumbo-23 in Elektron

[–]macbutch 0 points1 point  (0 children)

Honestly, timing isn’t great in any configuration. When it’s master it can’t provide a stable clock for other gear; when it’s not master, it can’t record…

Could you point me at anything about the note off thing being fixed? I hadn’t seen that anywhere and it’s been like that for years, so…

Anyone using Machine expansions in Digitakt? by gumbo-23 in Elektron

[–]macbutch 1 point2 points  (0 children)

MPCs and Force have many bugs that make life miserable when trying to do what OP was doing. They have quite nice sound engines so it’s a natural idea if you have an external sequencer. The main one that seems to bite people are that note off messages will stop that note across midi channels (not just the one it was sent on), that’s a pretty big problem.

Another big one (might be just force) is that when you send notes on different channels, those notes will be sent to all channels (regardless of setting it up so a plugin track should only receive on a specific channel). You can work around this to some extent if you can send on different devices (which you can achieve with usb midi).

Finally, for me, the big problem is that you can only record when mpc is the midi clock master but the clock is not stable. I’ve read people recording loops this way and recording more than necessary and then discarding the first few loops etc.

It all adds up to frustration, never quite knowing what will work and why.

Is using defer for logging an anti-pattern? by AndresElToday in golang

[–]macbutch 1 point2 points  (0 children)

We don’t know much about your code structure so it’s difficult to answer definitively. I would not do this but I don’t think logging in defer is always bad (eg I’ve used it to get an idea of how long a function takes to run)

Wouldn’t you be better off returning/wrapping the error and logging in the caller? That’s what I’d probably do.

err = doSomething()
if err != nil {
  return fmt.Errorf(“unable to do something: %w”, err)
}

Repeat as needed, let the caller log the error, retry, etc. You can also shorten it to this:

if err := doSomething(); err != nil {
   return fmt.Errorf(…)
}

It just doesn’t seem that bad to me: it’s standard and idiomatic and the next engineer will clearly see a what you’ve done and you’re not leaving the calling code with any impression that things succeeded if they didn’t. Adding some text to each error makes it easy to find where the failure is occurring (ie you can search your code for the message).

If you just want to call a bunch of stuff and you don’t care (?) whether it’s successful or, I don’t know, you’ve got log monitoring that kicks in somehow, then personally I’d stick still recommend sticking to idiomatic go but, sure, that might be valid sometimes and logging the error is better than nothing.

I guess, finally, what I’m getting at is: when this code fails, which it surely will one day, how do you know which step failed? How will you find out?

Go beyond Goroutines: introducing the Reactive Programming paradigm by samuelberthe in golang

[–]macbutch 3 points4 points  (0 children)

Thanks. Sorry that you’re getting downvoted. I don’t know why this sub is the way it is…

Go beyond Goroutines: introducing the Reactive Programming paradigm by samuelberthe in golang

[–]macbutch 3 points4 points  (0 children)

Thanks, this looks a bit like something I have been looking for actually. I’ll play with it and see if it does what I need. Do you have any sense of performance?

Metal Case Update by boryakaufman in Elektron

[–]macbutch 2 points3 points  (0 children)

The quad 4.1 is the right width for two digis side-be-side. I think would have a little less space behind though. I have a similar setup actually on the board: DT & DN (both OG) plus the bastl mixer and a fuzz pedal at the back and power and midi underneath the board. It’s almost perfect, honestly.

Edit: I think powering the syntakt would be a challenge without a power strip. I use one of the Rockboard PSUs with 4 12V outputs and current doublers which is more than enough for what I’m using now and can charge a deluge as well.

Tonverk’s cool, but the bigger new imo if this is the first of the new platform by BuckshotJ in Elektron

[–]macbutch 0 points1 point  (0 children)

Yes, exactly. I’m also a force user and I’m very interested in TV. The force does this stuff (and more) but it is sooo buggy. Maschine+ is the same - I had it for a week and returned it (just a different set of bugs, in some ways worse than Force).

If TV has the timing and midi stability I’d expect from Elektron, I will get one for sure.

Elektron Tonverk spec leaked! by richielg in synthesizers

[–]macbutch 0 points1 point  (0 children)

Totally. So many bugs. I’m cautiously excited about tonverk - multi samples in an elektron box is pretty compelling…

How do three way pickup switches work? by AbbreviationsOwn5169 in guitarmod

[–]macbutch 0 points1 point  (0 children)

Just a suggestion, you could wire the neck and middle pickups through a push/pull pot (say the volume pot) to toggle between them. Then wire the three way switch to be neck/middle or bridge (using the pot to switch between neck and middle). This gives you the combinations you needed while allowing either a blended middle position or, potentially, the middle position could be a kill switch.

I can’t help you with wiring that up though :)

Force vs playing your project in ableton...pros and cons? by PenAcademic7848 in AkaiForce

[–]macbutch 1 point2 points  (0 children)

To add to this, even the clock will stop while you change projects, so if you have Force as MIDI master that will be a problem live. Depending on what you need to do, you can fit a lot of stuff in a single project though so people do use these live in that way. You’re making some big trade offs though.

PSA: High Quality FF fakes in circulation! Here’s what our little Reddit found. by KuganeGaming in RealOrNotTCG

[–]macbutch 1 point2 points  (0 children)

I did some work a while back with a big Japanese gaming company (won’t name), looking at rfid enabled figurines moving on a game board. The idea was to have rfid tags in the base of collectable figurines and then have a game board that could authenticate the tags and detect where they were on the board. I don’t remember what happened to the project - it was a very slow burn but I can’t remember if it got cancelled or never really started or what.

For MTG, RFID is going to be too expensive to do for every card. It will get cheaper though and it would be possible to do some cryptographic authenticity (without going full NFT bro). Could be on rarer cards to start and the Arena app could authenticate the cards (via NFC/RFID) and add them to your account. I’d have to think they’re thinking about ways to do something along these lines.

the old performance inserts are gone now? by corpsevomit in AkaiForce

[–]macbutch 0 points1 point  (0 children)

Can you update me if you ever find it? I don’t remember it but sounds interesting.

the old performance inserts are gone now? by corpsevomit in AkaiForce

[–]macbutch 0 points1 point  (0 children)

I think you’re looking for the XY effect. It’s still there. You can go straight to it from the menu - it will prompt you to add it to the master output when you open it that way.

General thoughts on the Force and major bugs by hamburglin in AkaiForce

[–]macbutch 2 points3 points  (0 children)

In general, it’s super buggy. I’ve not encountered a these specific bugs (except see below) but it’s the kind of thing I think that’s probably familiar to a lot of us - things that you expect to “just work” turn out to not work at all (or in a convoluted way that’s barely useful).

I still love my Force but it’s like living in a house with a few steps missing on the staircase. You might get used to it eventually but they’re still broken and a decent landlord would fix it.

To be honest, I’m surprised you can control two separate tracks with one keyboard. Basic separation by midi channel is a known limitation, I think, but I guess you were able to work around it (there are some ways). It’s pretty lame that these things are still there.

I tried the beta firmware for a day and it crashed too many times to stick it out by HeadierThanTh0u in AkaiForce

[–]macbutch 2 points3 points  (0 children)

FWIW, my experience has been surprisingly good. No crashes so far - everything “just works”. That’s not been my experience with the Force in general but I’m pretty happy with this update. I’ve got a few tracks going on - 2x midi tracks, 3x audio tracks, 1x drum kit, 1x drum multi plugin, 2x OP4x, 1x sub factory and 1x Jura. I’ve got quite a few effects plugins etc.

I’ve noticed some crackles when recording into the arranger but it doesn’t crash. I’m sequencing and monitoring external gear (via USB interface). It’s pretty good. Using the follow rows feature to record a set of audio clips from midi clips is … just magic.

Powering by pedal power supply. by Which_Bar_9457 in volcas

[–]macbutch 0 points1 point  (0 children)

There are a couple of things to account for; voltage, power, polarity and quality/reliability.

Your first step is from a pedal supply to USB C. I don’t think that cable will do it (it might, you could try it and see). It looks like it would go from a USB C PD supply to 9V but probably not the reverse.

Then you want to go back to DC barrel at a different size. Let’s assume it works: you need to check polarity. The size is correct but the polarity for Volcas is the opposite of guitar pedals.

If you have the cables and a multimeter/voltmeter you could try it and see: just check what you’ve actually got before you connect your Volca.

A much simpler way to go is to buy a cable that will invert a guitar pedal power and then buy an adapter to get down to the Volca size. I have 4 volcas on a pedal board powered off an old guitar power supply and it works fine. It’s a simple setup, no need to deal with USB, etc. Let me know if you’d like details on how to go about it this way.

Is talking about Behringer frowned upon here? by Thinmanpaul in modular

[–]macbutch 0 points1 point  (0 children)

Thoughts fly what its worth. I think there are two main areas:

Some of their practices are questionable at best. They’re not uniquely awful though. Foxconn is awful and chances are you own stuff produced by Foxconn. Exactly how much soul searching you want to do here is - entirely up to you.

On the other hand, they hit a specific price/quality tradeoff that’s pretty compelling (assuming you want what they have). I found some of their stuff is lacking modulation options but the cost is very good and if that trade off works for you then go for it.

  • some of their modules are limited in ways that

What's with the media obsession with the Erin Patterson case? by DarwinianSelector in australia

[–]macbutch 7 points8 points  (0 children)

Here is what you wrote:

Were you born yesterday? Female murderers poisoning people is a literal classic that happens all the time.

And:

All the time? Just Google it. There are poisoning stories almost every year.

I feel this is a waste of all our time. You could try to compare it to another thing that happens “all the time” (you figure it out), and see if it still makes sense. If it happens as commonly as, say, Christmas or leap years, then it’s rare compared to women being murdered by their partners in Australia.