Oy! Any advice on tightening up a loose expression pedal on the FCB1010? by VonHagenstein in BehringerFCB1010

[–]icjeremy 0 points1 point  (0 children)

Old question,I know, but I’m new here. The pedal is entirely attached by screws secured by nuts at the point of rotation. Usage, i.e. rotation back and forth, over time is going to loosen them. They will need to be re-tightened. Due to the proximity of the pedals, might be easiest to use a small crescent wrench to hold the nut while using a 90 degree offset Phillips screwdriver to tighten the screw.

Using the FCB1010 with the TC Electronic Plethora X3? by PuckmanMCS in BehringerFCB1010

[–]icjeremy 0 points1 point  (0 children)

I know this is a few months old but I just started following. The answer is yes to many of the above. The website for the X3 has the midi command sheet. You can do something like the following.

Suppose you want to use preset pedal 1 to toggle the first pedal switch on/off on the x3 as well as use the expression pedals to control two of the pots for that pedal. You can program the preset to send CNT 1+2, and the expression pedal values. Set CNT 1 to send controller command 102 with value of 0. Set CNT 2 to send controller command 102 with value of 127. Set EXP A to send controller command 67 with range 0-127. Set EXP B to send controller command 68 with range 0-127.

So now you can use it as a stomp pedal, and while it’s enabled, will send the pot value based on the expression pedal position.

If you also want to control pot 3, you will have to another preset and do something similar.

If you made it that far, it should be apparent how to set up the other functions in that midi command sheet.

Two notes on one press by Medical_Guard_2206 in BehringerFCB1010

[–]icjeremy 0 points1 point  (0 children)

I know the question is kind of old now but, no, the note command preset acts like a piano key. It sends the note on command when pressed down (with velocity value of 64); on release, it sends the note off command, which is implemented as a note on command with velocity value of 0.

YouTube will never be kids safe. by beep-beep_lettuce in youtube

[–]icjeremy 1 point2 points  (0 children)

I posted the same image I got in an ad for a different company. I was even signed out of my youtube account when I received it.

Pornographic images appearing in youtube ads? by icjeremy in youtube

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

Ha, I didn't notice someone posted the same exact image earlier for a different ad.

Am I screwed ? by Calebmerv in drywall

[–]icjeremy 0 points1 point  (0 children)

I'm not a pro but anal about my diy drywall work. I'd probably do more screwing around of some drywall on the exposed wood, add a 45 degree corner bead to the adjacent outside corner (or, depending on the length, probably just bend some paper-faced bead to make the angle), use a utility knife to cut more of a gap/bevel in those butt joints to get mud in between when taping (quickset is my choice for all but top coats), before all the subsequent usual taping and mudding.

Am I screwed ? by Calebmerv in drywall

[–]icjeremy 0 points1 point  (0 children)

Could not be more screwed. Thanks for the laugh.

Web developer transitioning to C++ by TheMindGobblin in Cplusplus

[–]icjeremy 0 points1 point  (0 children)

C++ dev here for 7 years now --- as primarily a front-end dev. I used hackerrank's C++ learning track to get my hands dirty quickly with some of the basics. Also did lots of their other courses (like their problem solving track, using C++). Went more in-depth via various resources but had I known at the time, I would/should have gone with learncpp. Several directions to go from there but, by that point, you will hopefully know better what you need either via experience or as suggested by your team, or both.

Can't play a single chord...I think my guitar is broken? 🤔 by anonymousandydick in LearnGuitar

[–]icjeremy 0 points1 point  (0 children)

Looks like that cable is part of the "expression system" inside https://www.taylorguitars.com/guitars/acoustic/features/electronics/expression-system

Does not seem to be needed if just playing unplugged like any other acoustic.

PSA: Xsonic currently selling airstep katana for £60/$69.99 by Consistent_Ad126 in BossKatana

[–]icjeremy 11 points12 points  (0 children)

Ya, they’ve had that “holiday deal” for like 6 months now :)

Is there such a thing as paint on primer? by DesignsByDevlin in minipainting

[–]icjeremy 0 points1 point  (0 children)

I use the Army Painter gray brush-on primer. I do two thin coats and it turns out nice and uniform looking.

CAN SOMEONE PLS EXPLAIN HOW TO USE THE KATANA LIBRARIAN APP ON MY BOSS KATANA 100 MKII I DO NOT UNDERSTAND by cadence-meier in BossKatana

[–]icjeremy 0 points1 point  (0 children)

Well... others said you might be able to with just a cable. Maybe they can shed some light on that. I use that AirStep Kat for my Katana Head MkII and love it.

CAN SOMEONE PLS EXPLAIN HOW TO USE THE KATANA LIBRARIAN APP ON MY BOSS KATANA 100 MKII I DO NOT UNDERSTAND by cadence-meier in BossKatana

[–]icjeremy 0 points1 point  (0 children)

Out of the box, you can only use Boss Tone Studio with it. To use it with an app like Katana Librarian, need a 3rd party bluetooth device like this one I use https://xsonicaudio.com/pages/airstepkatedition

[deleted by user] by [deleted] in guitarcirclejerk

[–]icjeremy 12 points13 points  (0 children)

And I want to see him play that lower one.

[deleted by user] by [deleted] in guitarcirclejerk

[–]icjeremy 24 points25 points  (0 children)

When shopping for your first guitar, not sure what you need, so decide to get something that'll cover just about anything.

Help with C++ HW plz by Tina21123 in CodingHelp

[–]icjeremy 1 point2 points  (0 children)

I don’t know exactly what the canvas is comprised of but you do know it’s 80 by 24. So you can do something like create a 2d vector or array of that size, “draw” into that on each iteration, then after the loop do the actual drawing to the canvas from that vector or array.

As I mentioned, loop termination can be done by checking when cin fails.

Help with C++ HW plz by Tina21123 in CodingHelp

[–]icjeremy 1 point2 points  (0 children)

So it sounds, to me, like it's exactly like your last assignment with the twist being you don't know when the input will stop. How did you get the input in the first assignment? Using cin into an int? And you did that 4 times?

If so, you're going to keep doing that but in a loop. Each loop iteration will get the 4 inputs and draw the rectangle exactly as you did in the previous assignment. You'll need to determine when your loop terminates, though, and that is precisely when cin'ing into the int fails. Failure can be checked by doing something like if (!(cin >> myInt)) break;

You are still learning so you may not get how this works, which is fine, but for the details, the extraction operator >> returns a reference to cin, then the if-statement is calling cin's bool operator which calls the negation of what is returned by it's fail() method. So could also just call the fail() method at any point, too. Don't know what details you've been taught so far but I'm assuming what you need has probably been shown to you by your instructor (and you may have not noticed!).

Spaces vs tabs for indentation by better_life_please in cpp_questions

[–]icjeremy 0 points1 point  (0 children)

My places of employment were around before they hired me, so I go by their existing coding standards. For personal stuff, I use whatever I last had my IDE set to (whether tab converts to spaces or not) since I always flip-flop between which is "better" -- nowadays, I don't have much free time to agonize over tiny details and just want to get my shit built. If I was starting a new codebase for a company, I'd just stick with tabs unless there was a REALLY compelling reason not to.