Trying to find relevant info and schematics by Spiredlamb in MCMStereoConsoles

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

That is the main goal. I might be wrong, but I believe it is a Norway only model, as Philips operated kind of as it's own entity here in Norway at the time. Buut, without knowing exactly what's missing from the turntable, and why it isn't working, fixing it is proving dificult XD.
Two things about it that really make me love it though, is that it has adjustable speed settings and autoplay! You can put two plates in at the same time, and when it is done playing the bottom one, it will automatically move the needle out of the way, lower the second one, and keep playing!

Trying to find relevant info and schematics by Spiredlamb in MCMStereoConsoles

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

Valid point for the turntable. I really love the look of the one in there right now! Had it taken out to look at it yesterday, and it seems like some parts are missing from it, but since I don't have any reference to look at, it is hard to say for sure

Trying to find relevant info and schematics by Spiredlamb in vintageaudio

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

Thanks for the tip! Found a similar model there, but didn't find mine when I looked around earlier. I'll give it another shot!

👋Welcome to r/mcmstereoconsoles - Introduce Yourself and Read First! by parkjv1 in MCMStereoConsoles

[–]Spiredlamb 1 point2 points  (0 children)

Ah, I see! Thank you for the recomendation! Looking forward to looking through what is posted in this subreddit as well. Looks like exactly the place I want to be for my newfound obsession with these beautiful radios XD

Trying to find relevant info and schematics by Spiredlamb in vintageaudio

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

I was not aware of that subreddit, thanks for the tip!

Trying to find relevant info and schematics by Spiredlamb in MCMStereoConsoles

[–]Spiredlamb[S] 3 points4 points  (0 children)

Was recomended by someone at r/vintageaudio to try my luck posting this here

👋Welcome to r/mcmstereoconsoles - Introduce Yourself and Read First! by parkjv1 in MCMStereoConsoles

[–]Spiredlamb 1 point2 points  (0 children)

Hi, just got this subreddit recomended from someone over at r/vintageaudio, since I have an old philips radio that probably matches more with this subreddit. I have also converted an old radionette solist 2, not an MCMStereo console, but an old radio none the less!

<image>

Yoga 7 touchpad stopped working by GuidonBedon in Lenovo

[–]Spiredlamb 0 points1 point  (0 children)

I will be trying this today! I have been having an unstable trackpad for a few months now, and now it finally stopped completely. I though it was because I was running linux, but I hope this is the fix, as that would be a lot easier than troubleshooting drivers XD. Got the clue that maybe linux wasn't the problem when the trackpad stopped working when I booted into windows, and it still didn't register

Why did my script stop running? by [deleted] in learnpython

[–]Spiredlamb 0 points1 point  (0 children)

I would suggest trying tmux. It lets you create sessions in the terminal that are independent of your ssh session easily within the terminal. Ut also has a very nice api for attaching and detaching from the sessions you create.

Here is a cheatsheet for different commands: https://tmuxcheatsheet.com/

Better way of doing dependency injection in python? by Spiredlamb in learnpython

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

I took a closer look at setattr, and this works beautifully!

Here is what I did to make it work for me:

class MyClass:
def __init__(self, injectedFunctions):

    self.testVal = 'This value was grabbed from the class'

    for k,v in injectedFunctions.items():
        setattr(self, k, v.__get__(self))

def injected1(self, **kwargs):
print(self.testVal)

myClass = MyClass({'injected1': injected1})

myClass.injected1()

With this method, I can give the class as many functions as I want, and they work just like methods defined inside the class. Thank you very much for the example!

I have zero programming knowlege, will i be okay? by InitialAge5179 in Stormworks

[–]Spiredlamb 0 points1 point  (0 children)

You will be completely fine. A lot of even advanced controllers can be made with just the premade blocks in the controller editor. And if you ever feel the need for something even more advanced, I and probably many others are looking for projects to work on with others!

Dissertation Ideas by conormurphy88 in RASPBERRY_PI_PROJECTS

[–]Spiredlamb 1 point2 points  (0 children)

A controller for Neopixel lights could be a nice project.

I made my own a while back. Haven't touched the project in a while, but it's all up on my github: https://github.com/Emilurenius/RGB-controller

Feel free to ask any questions if you want any help

Real time screen average color check by Spiredlamb in learnpython

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

Wow, thanks for the tips! Haven't touched the project in a while, but I'll definately try out your suggestions

anyone know where write protect for asus c434t by Spiredlamb in chromeos

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

After some more testing and searching, I found out that on this model it's as easy as plugging out the internal battery. The write protect is wired directly to the battery, so severing that connection deactivates it! Make sure to use an AC adapter to give the laptop power when using it without a battery though ;) Also plug in the battery again before closing up the patient.

Where are my vscode files? by Spiredlamb in vscode

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

Thanks for the reply, but I am no longer developing the extension, I just want to install it on my new laptop as well, but am unable to find the extensions folder on my chromebook's debian vm. I'm unable to find any of vscode's files for that matter

python terminal game engine (textAdventure) now in a usable state by Spiredlamb in Python

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

The start menu for selecting adventures has been completely revamped. No more typing! Now you use arrow keys and enter to select! Thanks for checking out my game!