That went so far over his head, I’m not sure he heard the woosh.
- 0 Posts
- 26 Comments
mystik@lemmy.worldto Selfhosted@lemmy.world•How can I host an IMAP connected to thirdparty POP?English1·4 months agoSeconding fetchmail. It’s configuration is quite elaborate for a whole bunch of situations. I’ve used it in a small office situation to pull email from their legacy ISP’s POP into an internal IMAP server, so they could have multiple clients sharing mailboxes. (And so they couldn’t set weak passwords on an internet-connected system :-/ )
mystik@lemmy.worldto Selfhosted@lemmy.world•How reliable/realistic is to use a laptop as a remote file backup server?English13·5 months agoThe battery turning into a Spicy pillow is always a Concern for using laptop as an always powered on server. So even though you will be away from it, make sure that there is a way for someone to keep an eye on it, once every week or two.
That said, I have been using a dell laptop as a desk workstation (and remote use) with an uptime of 2.5 years at this point.
mystik@lemmy.worldto Selfhosted@lemmy.world•I don't understand the purpose of some selfhostingEnglish1·5 months agoI also use syncthing. And it works pretty well. There is some turmoil with the android version in light of changes so the underlying sdk. And I am not sure there is an iOS syncthing that would work as well. I actually use it primarily to sync my keepass databases, and before Immich, my photos.
The photo management Immich brings makes it a nice alternative for that use case, but either way I need to have one or more servers elsewhere managing storage so I can get things off of my phone into a system I can control.
mystik@lemmy.worldto Selfhosted@lemmy.world•I don't understand the purpose of some selfhostingEnglish15·5 months agoI use Immich because I have multiple devices and multiple people uploading photos to it , so we can all organize together.
Self hosting anything also gives you a lot of practice and experience (and confidence) to also self hosting anything for others, an important skill for many to have in order to have a more distributed internet.
Playwright is still fully oss with no “closed” fork?
mystik@lemmy.worldto Selfhosted@lemmy.world•SpacebarChat - a selfhosted, Discord-compatible communication platformEnglish221·9 months agoRevolt is kinda “centralized”. You can host your own version, but they seem to actively discourage you from doing so.
mystik@lemmy.worldto Selfhosted@lemmy.world•Does anybody know an open source self hosted application to create diagrams? Like draw.io or something like thatEnglish11·10 months agohttps://github.com/jgraph/drawio/blame/dev/LICENSE <-- that’s … a rather specific and recent change. Is there a story here ?
mystik@lemmy.worldto Selfhosted@lemmy.world•Does anybody know an open source self hosted application to create diagrams? Like draw.io or something like thatEnglish146·10 months agoYou are aware that draw.io is itself open source and self-hostable: https://github.com/jgraph/drawio ?
At $dayjob I switched from Apache to nginx 15+ years ago. It’s Callback/Event based process model ran circles around Apache’s pre-fork model at the time. It was very carefully developed to be secure, and even early on it had a good track record. Being able to have nginx handle static content without tying up a backend worker process was huge, and let us scale our app pretty well for the investment of time. Since then, Apache implemented threaded + Event based process models, Caddy, traefik, and a bunch of others have entered the scene.
TBH, I think the big thing nowadays is sane defaults, and better configuration, even automatically discovered configuration – traefik is my current favorite for discovering hosts in consul/Kubernetes/simple host definition files, but since traefik can’t directly serve files, I simply proxy from traefik to … nginx :)
Navidrome is another server that works pretty well, implements the subsonic protocol ( so all the apps that can cache and stream to your mobile device work). You can have multiple logins, or just share out playlists and albums individually to non-authenticated users.
Paige, no, no, no, no, no!
MoCA is a way to send wired Ethernet up to (300mb/s, at least the version i have) over coax. Verizon fios would provide these devices to send internet to set top boxes over existing coax cabling, but you can get a pair of these devices and send Ethernet in on one side, and Ethernet out the other side.
I have noticed however, it adds a bit of latency to the connection, which may be trouble.
Depending on your use cases and apps, file locking can be problematic when sharing across SMB and NFS simultaneously, their locking semantics are slightly different
mystik@lemmy.worldto 3DPrinting@lemmy.world•Nesting capabilities of slicer (overview)English1·1 year agoI think it’s not widely front-and-center because it’s kinda fiddly, especially with folks with customized printers and there are caveats that can damage the machine or ruin the print if you are not careful. Sadly, I think that some of the more ‘closed’ slicer/printer systems could support it more reliably because the dimensions of the head + arm are much better known and the tool path can be planned much more precisely.
mystik@lemmy.worldto 3DPrinting@lemmy.world•Nesting capabilities of slicer (overview)English5·1 year agohttps://help.prusa3d.com/article/sequential-printing_124589 <-- explains how to set up the sequential printing in Prusa.
https://www.klipper3d.org/Exclude_Object.html <-- Explains the exclude object function in Klipper/Mainsail
https://docs.mainsail.xyz/overview/slicer/prusaslicer#enable-exclude-object <-- how to configure Prusa to label objects so mainsail/klipper can individually select and skip them.
Like I mentioned, I have the most experience with Prusa + my Ender3 ( w/ a RPi3/Kilpper & mainsail; and a crtouch sensor) . I’d wager that other slicers could do this too, but I"m not sure of their setup.
mystik@lemmy.worldto 3DPrinting@lemmy.world•Nesting capabilities of slicer (overview)English5·1 year agoKeep in mind that if you slice multiple parts to be printed at a time, then a failure on one part means the whole batch is potentially compromised.
I have the most experience with PrusaSlicer, and have used the multiple part one at a time option to print multiple parts at once. You have to tell it the dimensions of your extruded head, so it doesn’t crash the part , and if you have a bed slinger, you have to be careful of your x axis bar (ie, order it so it starts at the front if the bed and works it way to the back)
With mainsail and klipper, you can cancel one failed part mid print and keep going on the rest of the parts.
mystik@lemmy.worldto Selfhosted@lemmy.world•remote assistance software suggestionsEnglish1·1 year agoTacticalRMM is very comprehensive, self hosted, but more geared towards organizations managing a fleet of machines.
IMAP on O365 now requires “Modern Auth”, which requires OAuth to authenticate access to mailboxes. Anything that connects via IMAP will need to be approved by the admins at this point (Including Thunderbird). Without the cooperation of your organization’s IT team, you are not going to get far.
By default Bash will auto complete filenames (In fact, in 25 years, i can’t remember the time bash didn’t). Sometimes, there are autocomplete ‘helpers’ that try to be overly smart (ie, only autocompleting files that have the right extension, which can interfere when you are doing creative things with mis-named file). However, in Powershell, cmdlets declare a type for each of their parameters, which lets powershell autocomplete the right type of item, which can make it a bit more magical and reliable.