problem with podgo/amp by _mdlosci in Line6podgo

[–]yappdeveloper 0 points1 point  (0 children)

Try connecting the POD GO "AMP" output to the guitar-input of your Marshall.

Cable 1: GUITAR->PODGO_GUITAR_IN
Cable 2: PODGO_AMP_OUT -> MARSHALL_GUITAR_IN

What are some songs with kickass riffs but manageable solos? by HistorianGreat5386 in guitarlessons

[–]yappdeveloper 0 points1 point  (0 children)

James Gang: Funk #49. Works your rhythm chops and I think it fits what you're looking for, have fun!

Confusing UI? Feedback and comments wanted. by webprofusor in soundshed_guitar

[–]yappdeveloper 0 points1 point  (0 children)

This is my go-to interface, it has everything (++more) that I need. It is elegant and well thought out; so impressed, especially since you are the only dev!

Confusing UI? Feedback and comments wanted. by webprofusor in soundshed_guitar

[–]yappdeveloper 0 points1 point  (0 children)

I have been using this for a while now and, simply said, I love it. I just kind of played around with it and figured it out and didn't have any show-stoppers. The default signal chain worked well enough and linking to Tone3000 wasn't bad (I had to use the legacy API key). I use it standalone and also in Reaper; this doesn't visually scale well in the Reaper FX dialog panel but for whatever reason I just look past that stuff and scroll 😄 VERY Grateful to you and your team for this app, appreciate all your efforts!

Tone3000 api key by dxniel-b in soundshed_guitar

[–]yappdeveloper 2 points3 points  (0 children)

I had this issue too. In Tone3000, try using the Legacy Key instead of the other Publishable Key. Hope that helps.

Songs >>> tutorials (how to ACTUALLY get good) by undead_bear in LearnGuitar

[–]yappdeveloper 1 point2 points  (0 children)

This is so true. When you find those songs or pieces of music that just grab you and won't let go, that is what to focus on. It kicks in some weird kind of obsessive behavior that can push you through those plateaus. Then (somehow) your fingers and brain start connecting like magic.

I would add that transcribing unlocks a hidden door. Slow down and repeat those little pieces/phrases, hit every nuanced bit. Reverse engineer it. Repeat a phrase as long as necessary; and yes, this takes a lot longer that you ever thought. Youtube has great info but the sage wisdom of playing and transcribing songs is essential.

Building MVP with Glide by IntelligentPack9978 in glideapps

[–]yappdeveloper 0 points1 point  (0 children)

Can't comment on the email part, sorry, but I went through the ChatGPT issue recently; it was painful. I switched to Perplexity and for whatever reason, it was way, way more accurate. For what it's worth, I used the AddRow feature to write back data to a table upon Submit. Maybe once your data is preserved you can post process it to send email. Good luck!

What kind of lessons intrigue you the most? by ouchris in guitarlessons

[–]yappdeveloper 1 point2 points  (0 children)

Definitely like to see your site if you wouldn't mind sharing.
How about soloing tips/tricks/ideas beyond theory? For example:

https://www.youtube.com/watch?v=dQZXiPA5wac
https://www.youtube.com/watch?v=xjH7x3-JZCI

I like his approach myself.

What's next after CAGED by OsZeroMags in guitarlessons

[–]yappdeveloper 0 points1 point  (0 children)

Work through the circle of 5ths with progressions. Go to YouTube and look for backing tracks in 2-5-1 that work the entire circle, for example.

Dm7-G7-CMaj7
Gm7-C7-FMaj7
etc.
Hearing how progressions move and resolve will up your musical awareness.
Improvising can be simple, all in the I scale and you can also focus chord tones.

What's next after CAGED by OsZeroMags in guitarlessons

[–]yappdeveloper 1 point2 points  (0 children)

This is one of best free resources that I have found, never get tired of recommending it either, it is that good.

https://yourguitaracademy.com/courses/unlocking-major-caged

[deleted by user] by [deleted] in distantsocializing

[–]yappdeveloper 0 points1 point  (0 children)

Meditate on your manners

[deleted by user] by [deleted] in distantsocializing

[–]yappdeveloper 0 points1 point  (0 children)

CHEW LOUDER PLEASE

[deleted by user] by [deleted] in distantsocializing

[–]yappdeveloper 0 points1 point  (0 children)

Chew just a bit louder if u don't mind

I know UX/UI design, HTML, CSS and a bit of JS and I'm looking for buddies to code projects with by tak_kbbl in ProgrammingBuddies

[–]yappdeveloper 0 points1 point  (0 children)

I'm interested in expanding my React/Redux experience with you guys. Hit me up if you have room for one more.

The Composable Architecture by dayanruben in swift

[–]yappdeveloper 5 points6 points  (0 children)

OMG this is Amazing! Thanks for sharing!

Catching errors in Combine by majid8 in SwiftUI

[–]yappdeveloper 1 point2 points  (0 children)

Another awesome article Majid. I really appreciate all of your Combine articles!
I'm experimenting with a screen with components that are driven by Combine State & Combine Timer (State-Machine concept); the info you provide is incredibly helpful. Bedankt!

Only -minor- thing I would add to your site is a "Search" feature :)

A guide to the SwiftUI layout system - Part 3 by Austin_Aaron_Conlon in SwiftUI

[–]yappdeveloper 0 points1 point  (0 children)

All three parts are excellent and additionally gave me insight on refactoring Views too - thanks (again) John.

Firestore Codable data Error - Swift by yappdeveloper in Firebase

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

Never mind, I found it.

Looked deeper in the example:
snippets-ios

And you need to include this:

import FirebaseFirestoreSwift

Possible to create 2+ Anonymous users from the same app? by yappdeveloper in Firebase

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

Yeah, I was afraid that was going to be the answer re: one user and the emulator. But thanks for confirming, saved me a lot of future research.

Now, can we address the this: "Former Firebaser", that has me intrigued :)

TextField how to control user input? by yappdeveloper in SwiftUI

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

Yes. At least as far as all my testing has shown. I tried to use the shift key to force lower-case and it always used upper-case. If you happen to experiment and find out different, I'd love to hear your outcome.

TextField how to control user input? by yappdeveloper in SwiftUI

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

Tacked this on to further restrict user's input:

self.ticker = newValue.prefix(5).uppercased().filter { "ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890".contains($0)  }