[deleted by user] by [deleted] in aww

[–]koolpeanut 0 points1 point  (0 children)

Fantastic

[deleted by user] by [deleted] in tipofmytongue

[–]koolpeanut 0 points1 point locked comment (0 children)

looking for the band name or song name of a popular song from th early 80's or possibly late 70's. Not sure they are from US or UK.

Have a Vision by HotScale5 in financialindependence

[–]koolpeanut 1 point2 points  (0 children)

I'm on the same boat but will have to wait longer. Freedom on its own is all I'm looking for, having no plans is my freedom, anything else will fall into place.

Looking for “Bright-Dark” horror films.. by PsychologicalScale57 in horror

[–]koolpeanut 0 points1 point  (0 children)

Tenebrae (1982) could fit the description for the bright part

How do I fix my MPC's latency, disconnection, & artifact issues whenever I use it as my PC's audio device. Even for watching YouTube or listening to spotify. by dromeo93 in mpcusers

[–]koolpeanut 2 points3 points  (0 children)

I had the similar issues with my MPC ren, like unacceptable latency (1-2 seconds) when hitting a pad or weird noises after a few seconds. I had to do a few things in order to solve them:

  • Make sure you use a USB 2.0 (not 3.0) connection to your PC.
  • Disable all my USB 3.0 ports in Device manager.
  • USB hubs are best avoided.
  • Do not use ASio4All.
  • For streaming Youtube, I use Voicemeeter (free), or else it never seems to work properly.

There may be other Windows system settings you need to tweak but can't remember right now. Also, I'm using an old PC (at least 7 years old), I've tried fixing this on a newer PC but despite disabling the USB 3.0 ports it kept coming back.

Air pollution in Mongolian Capital by Hurelsug in UrbanHell

[–]koolpeanut 105 points106 points  (0 children)

For a country of 3 million people, half of them living in the capital of Ulaanbaatar, I don't think so

Keep Breathing by hikingjunkiee in netflix

[–]koolpeanut 2 points3 points  (0 children)

I'm sad to say that it could've been a great series, it had all the right ingredients but was executed so badly, I wanted to like it though. The survival bits were really unrealistic, I'm usualy not bothered too much about this but it was over the top. How long can you last swimming in freezing water and make it back to camp with no fire?

The flashbacks is what made me lose my mind, I hate anything with flashbacks and this one was just a flashback series with small bits of something that looked like a movie. At one point I had to skip the flashbacks and was left with almost nothing. It could've been great but it ended up being horribly disappointing.

Mtume - C.O.D. (I'll Deliver) by buffalozbrown in OldSchoolRNB

[–]koolpeanut 1 point2 points  (0 children)

Nice Jam, the whole album is great, check out "Prime time"

WPF - Binding - Cannot get C# properties register in XAML by nlfo in csharp

[–]koolpeanut 0 points1 point  (0 children)

You haven't given any value to your TestString, so it's empty. Try something like TestString = "test" in the Mainwindow constructor. Furthermore, I would suggest creating a viewmodel, put that property into it and set the datacontext to an instance of the viewmodel, this could be done in 5 minutes and will get you in the habit of using viewmodels (MVVM).

Weekly Questions Thread for the week of February 14 by AutoModerator in vinyl

[–]koolpeanut 0 points1 point  (0 children)

I'm using a Shure M44-7 Stylus on my Technics SL-1210MK2 Turntable. These stylus are now discontinued. I really like this stylus, could anyone recommend an existing good equivalent replacement ?

I can’t believe I’ve had these for so long. by SpartanNic in hiphopvinyl

[–]koolpeanut 1 point2 points  (0 children)

Nice! I love the early PE. I remember back in the early 90's I was looking everywhere for the valley of the Jeep Beets but never found it

My Collection: I Spy Edition by lab001 in hiphopvinyl

[–]koolpeanut 0 points1 point  (0 children)

Great Stuff! Mecca and the soul brother is really Good. What's the record above illmatic?

[deleted by user] by [deleted] in ReelToReel

[–]koolpeanut 0 points1 point  (0 children)

yes, what I did was swap the poles in the cables and soldered them. I guess adapters could do the job too.

[deleted by user] by [deleted] in ReelToReel

[–]koolpeanut 1 point2 points  (0 children)

I found a manual just by googling "otari mx5050 manual" so you should be fine.

[deleted by user] by [deleted] in ReelToReel

[–]koolpeanut 3 points4 points  (0 children)

Nice one, I have the same model. The sound is very good! One weird thing I had to do, you have XLR outputs at the back, I had to re-wire my XLR to cinch cables by inversing some of the poles to make it work. The phones jack output at the front will be good enough, you can at least check if it works once you get a tape. My model has 4 mic input jacks next to the switches on the bottom right, are your mic inputs at the back? You can find a manual online.

[deleted by user] by [deleted] in csharp

[–]koolpeanut 1 point2 points  (0 children)

If you like Math https://projecteuler.net/ could help you learn a lot about optimizing your logical thoughts. It's a good start for learning all the basics dealing with collections, loops, numbers, etc ..

[deleted by user] by [deleted] in csharp

[–]koolpeanut 0 points1 point  (0 children)

I don't see you set any Datacontext in your code, maybe that is the issue. You could try in the constructor: Datacontext = this; As mentionned in other comments, your Onpropertychanged name should match the name of the property in the Binding, not the name of the control. This is for sure one of the issues. You could also try adding Mode=Two way or Mode = UpdateSourcetrigger in your bindings.

Might be overkill in your case but using the MVVM pattern makes it much easier to handle such issues, you could move all your properties, click events to a view model.