• 3 Posts
  • 12 Comments
Joined 2 years ago
cake
Cake day: July 9th, 2023

help-circle

  • Interesting, was there anything in particular that you did with the services other than editing the service to run as those particular users?

    Side note, I just tried to chown the sabnzbd folder and everything inside updated but the main folder itself refuses to change. Even after stopping the service.

    Edit: scratch that. I closed and re-opened Dolphin and checked the properties of the folder and now it’s showing correctly.


  • I’m still working on learning about containers but not quite there yet.

    Default being, when each service is installed it creates an individual user/group (sonarr, radarr, sabnzbd) and the folder that is created in /var/lib/ for each service is set to those particular users/groups.

    At this time, sonarr and radarr seem to be ok (I will need to double check after an update to them) but SABnzbd reverts the folder permissions every time I reboot and complains whenever I reboot since it can’t write to the db or log files because the permissions change. I have looked at the config but didn’t see anything outstanding that would indicate a reason it would be changing. Unless I am missing a different config file somewhere outside of that folder. There aren’t any settings from within the web interface pointing to that either, at least from what I could see.



  • I would take the whole thing out short of the side up against the house and put a decent wood picnic style table, a fire pit (if that’s allowed where you’re at) like one of the steel ones raised up off the ground and use the extra space for growing veggies and stuff.

    Depends on what you want though.

    Are you wanting to repair/replace it and have that whole patio area or are you willing to do a bit more with the earth underneath it?

    You could always do like you said and use pavers or gravel some of the area too and still reclaim some of the ground underneath to use for other stuff.


  • Sorry for the delay, I’ve been quite busy.

    Here’s a link to the powershell script.

    https://pastebin.com/RFtfLQNq

    Take note of line 4. It is looking for a separate file called discover_printer.ini to retrieve printer information from. You can name the ini file whatever you want, just make sure to update the name within the powershell script.

    Here’s the link to the ini file. Not sure why I even bothered to put it there since it’s so short lol.

    https://pastebin.com/138TnASY

    PRINTER1_DEV_NAME= The name you want the printer to show up as in Bambu Studio

    PRINTER1_USN= Serial number of the printer

    PRINTER1_IP= Local IP address of the printer

    PRINTER1_CODE= The access code for the printer that is in lan mode

    You can do multiple printers in one ini, just change the number at the end of “PRINTER” to the next number.

    We use this for X1E models, but the script looks to be generic so I don’t think it will matter which one you have.

    I have only seen one person have an issue out of the 50 or so that use this script. It will connect from his machine but consistently fails to send files to the printer.

    I just put the powershell script and the ini in the root directory of the Bambu Studio installation and make a shortcut to the ps1 script on the desktop. If you have powershell scripts locked down you may need to add a key at the bottom to allow it to run.

    To use the script, open Bambu Studio first then run the script and browse to the device tab and click the + in the left hand menu to bring up discovered printers.

    I hope it works for you.








  • The P1S by Bambu Labs, while not the cheapest (on sale now for 550$ without an ams) pretty much just works.

    I’ve done PLA and PETG (various brands) using default settings and the thing just works. I’ve also used polycarbonate but that required a small amount of tweaking.

    I guess it also depends on what you’re trying to print. If you are going to be printing figurines that you will paint, you might be better off getting a resin printer, though I can’t speak much to those as I haven’t used them, but we do use anycubic at work and I’ve seen some pretty good looking models come out of them.

    I’ve also heard good things about the A1/A1 mini (also Bambu) from coworkers.

    We probably have 30 or so 3D printers at work including a nylon powder 3D printer which is amazing but I’m not sure of the brand, and it’s probably expensive because it stands about 4.5 ft tall.


  • I figured it out.

    I was already headed the right direction by using something like this…

    <button text=“Hold Enter” ontap=“enterhold” ondoubletap=“enterrelease” />

    But for whatever reason it seems to ignore a double tap to release it, maybe I’m just too slow on tapping lol. I changed it to onhold=“enterrelease” and it works like intended.