• 0 Posts
  • 26 Comments
Joined 1 year ago
cake
Cake day: July 25th, 2023

help-circle



  • You could use multiple USB microphones and do the mixing in software. I prefer using an audio interface (e.g. UMC204HD) because it is simpler to set up and adjust levels, and because it lets you use any widely available microphone, or plug in an instrument (e.g.: electric guitar, electric piano). You can plug your headphones into the audio interface and adjust the relative level of your own sound and what is coming from the computer (e.g.: your teacher). sweetwater.com has the UMC204HD and the UMC404HD on sale right now.

    I do not have any experience with pick-up mics.





  • Get an A/V receiver, a computer monitor or dumb TV, and speakers. Then you can get a Roku streaming player and it cannot show you anything when you do not have its input selected on the receiver.

    Even an inexpensive pair of bookshelf speakers placed on either side of the TV will sound better than built-in TV speakers. Add a center speaker and a subwoofer drastically improved sound.

    Non-4k AV receivers are dirt cheap used.













  • Spring combines combinations of environment variables, system properties, files, and classpath resources, and handles a variety of patterns (e.g.: aConfigOption could be configured by system property A_CONFIG_OPTION, aConfigOption, or several other possibilities), so tracking down where the configuration came from is not always easy. Sometimes you think you can just set a property, but it turns out another property triggers loading a resource that overrides yours. This would be fine if applications/libraries clearly documented how to configure them, but most say “config via spring, good luck lol”.

    And good luck if you are trying to use two different components both built on Spring, and they both rely on the dependency injector settings “db.url”. Now you have to start playing games with dependency injector scopes.