Skip Navigation
Do you use both a personal desktop and laptop?
  • I use my laptop for anything that requires a real keyboard or bigger screen. Then I have my server, and my phone. So I mostly just use the laptop and the phone. I do have a dual screen phone though so that helps a bunch for multitasking.

  • What is your weekly routine like?
  • A simple yet loaded question. Overall I think I am. I spend a lot of time working and commuting but I'm in the growing years of my career and working hard to prove myself. The late night work is usually things I enjoy doing but don't have time for during the day and I'd otherwise be sitting in front the TV so I might as well make money.

    I make time for family as well. For example leaving early for date night every now and then, taking days off for family events, going on family vacations. It's important to have balance.

    If I were to pick an area of my life that I'm unhappy with, it would be friendships and hobbies but I think most of that is due to undiagnosed mental issues. I don't make connections easily so friends have always been hard. I have one good friend that I've known for almost my whole life, every one else is an acquaintance. The only hobby I have is the same thing I do for work. I don't really enjoy or get excited about anything else.

  • What is your weekly routine like?
  • Monday: Get kids ready for school and drop them off. Travel 45-60 minutes to work, work 9+ hours and travel back. Eat dinner and help clean up (wife cooked after she got home from work). Get kids ready for bed. Work another 3-4 hours. Sleep.

    T-W: Leave for work an hour early. Work 9+ hours. Get home and help make dinner for the family if not yet made, help clean up, get kids ready for bed, work another 3-4 hours, sleep.

    Thursday: Get kids ready and drop them off at school. Work from home for the day. Help make dinner. Help clean up. Get kids ready for bed. Work some more, sleep.

    Friday: Get kids ready and drop them off. Travel to work and work 9+ hours. Travel home. Either get ready to go out with the wife or, if we're staying in eat dinner and help clean up. If staying in, spend some time with the fam before sleep.

    Saturday: Both wife and I are off work so we run errands, take the kids to do something fun, visit family, home projects, etc... Saturdays are busy.

    Sunday: Wife is working, spend most of the day working on home projects (yard work, laundry, cleaning). Make dinner, get kids ready for bed, sleep.

    Do it all over again.

    Wife works in retail so does a lot of shopping for household needs and groceries throughout the week. She also cleans the house and works on home projects on her days off if she's not running errands.

  • What's a job you couldn't get paid enough to do?
  • I worked with a debt collection agency from an IT perspective and dealt with what I believe to be the same company. It is an industry that I never want to support again if I can avoid it. I met some good people but it's just an unhealthy work environment overall.

  • I think we should slightly rethink how login works on most Fediverse apps (Mastodon, Lemmy, but not only)
  • I don't know enough about the fediverse or Lemmy code to say how easy or hard this would be to implement but if we're logging in with the username noogs@lemmy.noogs.me for example, it's reasonable for the app to assume the server is located at lemmy.noogs.me and it can derive the likely URL of https://lemmy.noogs.me from that. The only case this wouldn't work is if your instance is running on a port other than 443 because then we need some way to tell the app what the port should be.

    Email (or at least Microsoft Exchange email) uses a protocol called autodiscover for this which uses DNS to tell an email client where to get connection information from, it then polls that URL for the information and configures the email client automatically. Using a similar DNS based approach may be useful as well.

  • Piracy is so confusing these days
  • Everything else just makes it easier to manage which depending on your preferences and how much content you're dealing with that may not be a problem for you. I run the whole stack using Deluge as my downloader with a VPN. Radarr, Sonarr, and Lidarr automatically locate the torrents on the public tracker sites for me, send the downloads to Deluge, and imports the media into Jellyfin when the download finishes. I also use Jellyseer for discovering and requesting content, as well as allowing family members to request content. I also use Prowlarr to manage the trackers being used in the various arr apps. It's a very robust and automated system but it all boils down to just downloading torrents over a VPN.

  • Self hosted open source simultaneous multiuser password safe with .deb or .rpm and an end user webui/android app
  • The usual go to for self hosted password managers is VaultWarden. There's no deb or rpm package but you can get it spun up with docker pretty easily. Any reason you're specifically looking for "included" or packaged solutions? That's going to severely limit your options.

  • Storage solutions
  • I run a supermicro chassis with 6 3TB drives in a RAID6 using a dedicated hardware RAID controller. Old school for these days but works for my needs for now. Drives were free from a buddy of mine so until they start dying or I need more space, they'll do. Then I have two 120GB intel enterprise SSDs for running Proxmox. VMs and LXCs are all on the spinning disks which surprisingly perform well enough.

  • Storage solutions
  • I run a supermicro chassis with 6 3TB drives in a RAID6 using a dedicated hardware RAID controller. Old school for these days but works for my needs for now. Drives were free from a buddy of mine so until they start dying or I need more space, they'll do. Then I have two 120GB intel enterprise SSDs for running Proxmox. VMs and LXCs are all on the spinning disks which surprisingly perform well enough.

  • Storage solutions
  • I run a supermicro chassis with 6 3TB drives in a RAID6 using a dedicated hardware RAID controller. Old school for these days but works for my needs for now. Drives were free from a buddy of mine so until they start dying or I need more space, they'll do. Then I have two 120GB intel enterprise SSDs for running Proxmox. VMs and LXCs are all on the spinning disks which surprisingly perform well enough.

  • what do y'all actually host?
  • I have a single Proxmox host running:

    • Apache reverse proxy
    • 2x PiHole
    • Jellyfin
    • UniFi Controller
    • Sonarr
    • Radarr
    • Lidarr
    • Readarr
    • Prowlarr
    • NextCloud
    • Deluge
    • MySQL
    • HomeAssistant
    • OpenSense firewall
    • Zoneminder
    • Lemmy (with Alexandrite)
    • RockStor NAS
    • Windows 10 workstation
  • I can't get fusuma to work on my ubuntu MATE
  • There's a bit to explain here. So the root user is basically the equivalent of Administrator. One big difference (there are many) is that when you run something as root using sudo, you are actually running as the root user. When you ran the first command to create the folder, you created it in your home directory using the ~ shorthand variable which points to your /home/ user folder. The second command, also references your home folder. However since your running as root, it's looking for the file in the root user's home directory or /root, not your home folder.

    The config file needs to be in the home directory of the user running the command unless you can put the full path to the config file in the command, then you can put it wherever you want.

  • I'm a beginner and want to use Proxmox. What should I use to make a USB hard drive accessible to other devices on my network?
  • Not weird at all. All my data is shared from a single VM but I access it from several others than run jellyfin and the *arrs, and a few other things. When you don't want everything running on the same virtual machine, you need to share the data over the network, even if it's all on the same physical box.

  • I'm a beginner and want to use Proxmox. What should I use to make a USB hard drive accessible to other devices on my network?
  • If you want multiple containers or VMs to have access to the data it needs to be shared from somewhere. As others have mentioned you can setup a VM to run a NAS OS like FreeNAS or just run a container with samba and pass the drive through to the container. The difference is how you access the data from the other containers and VMs. You'll access them via samba shares as opposed to local drives.

    To my knowledge two containers/VMs cannot share the same physical or virtual disks in Proxmox. I tried and had to go a different route to get what I needed.

  • What's a new scientific concept or technological innovation that really makes you feel like we're living in the future?
  • I feel like the average person doesn't need a computer most of the time. Anyone who's a "power user", for lack of a better term, probably does. I run a VM with a desktop OS on my Proxmox setup that I remote into from my phone for things that I require a full OS for but don't want to break out my laptop. I often find myself remoting into it from my laptop anyway just for continuity.

  • Own lemmy
  • This is the way. I'm routed through cloudflare with private registration as well. The exposed IPs belong to Cloudflare and only they and I know where it goes after that.

  • Can anyone see this?
  • Ah ok. So the only thing left behind really is your name which again I suppose could cause problems out in the ActivityPub world but that's way too deep into the development of Lemmy for me so I'm only speculating. Basically my random theory is if @youraccount@moose.best is somehow tied to a particular instance ID and now that instance ID is different, I'm not sure how ActivityPub handles that or if that even matters.

  • Can anyone see this?
  • Did you purge your database when you destroyed the old instance? I'm not sure how Lemmy handles instances and databases under the hood but I suppose a database from a different instance might cause problems.

  • My Selfhosted Homepage
  • My list:

    • Home assistant
    • Jellyfin
    • Lemmy
    • Lidarr
    • Pihole
    • Prowlarr
    • Radarr
    • Readarr
    • Sonarr
    • Tdarr
    • UniFi Controller
    • Windows VMs for domain, and clustered file storage.
    • Zoneminder
  • InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)NO
    Noogs @lemmy.noogs.me
    Posts 0
    Comments 21