• 0 Posts
  • 73 Comments
Joined 3 years ago
cake
Cake day: July 29th, 2023

help-circle


  • You’re going to have a hard time beating $2/mo unless you roll it into something else like blackblaze ($100/year for unlimited storage), Microsoft office 365 ($100/year with 1 TB of OneDrive), etc. If your space is going to photos, the speed and responsiveness of Google photos far outpaces some of the alternatives (cough cough OneDrive).

    Self hosting is a viable alternative if you’re interested in having more control/local storage or if you are interested in this kind of thing and want to do it/dabble in it as a hobby.

    I personally built a NAS, which will take far too long to amortize vs just paying $2/mo. I chose this route because I value a local backup and because a NAS can a bit of a lifestyle product. “It can double as a server!”. Sounds fun, but I would want to build the thing I host which will also take time so… You could potentially build a NAS that will average out to $2 or less a month if you have spare parts or score some used parts cheap. Odds are that route could also be used for self hosting.




  • Fellow senior developer. Initially I was worried about exactly what you’re worried about with juniors. Now I’m also worried that management layers are simply pushing for higher velocity without giving anyone time to think about a problem. We’re in this nasty loop where one person defers more decisions to a LLM to push their individual velocity up. They then get rewarded. Who care if they don’t know how the code works, it works! The tests pass. More people on the team should do the same or else. Then someone takes it a step further.

    It will be very interesting to see how maintainable, or not, corporate code will be in a few years. There could well be a booming industry for people to come in and clean up the mess.








  • As someone with a foot in Windows and Mac, they both suck for different reasons and you’re trading pain in one for pain in the other.

    Windows sucks because of all the stupid one drive and AI garbage. No, I don’t want my desktop and tons of other directories in one drive, stop asking me. The constant migration of settings out of control panel is maddening. Windows 10 end of life is fine, but cutting off older PCs from windows 11 for “reasons” was an absolutely horrible choice.

    Mac is fine if you do super basic computing, but if you want to do much of anything it’s very annoying out of the box. Window management is annoying unless you get an app like magnet, the ribbon can’t be displayed on dual monitors and there’s no way of fixing the primary monitor, keyboard shortcuts are inconsistent across applications like command delete and keyboard shortcuts in general suck (command + shift + 3-5), the OS greatly dislikes network storage, etc etc. Macs were somewhat isolated from marketing needing a “new” OS every year until recently. Now they’re in the change for the sake of things to list on the new OS page trap.

    Linux isn’t without fault, but my experience has been much more pleasant.


  • When I was college back in 2009 I was dual booting Ubuntu and Windows Vista on a gateway laptop. I never fiddled with Ubuntu at all. The things that worked out of the box worked reliability and I never bothered fighting with things that didn’t work like the stylus.

    The reason why I didn’t make the switch back then was not the OS or the drivers. It was the lack of support for the software I needed for school, like Matlab and orcad pspice. Things have improved substantially since then between first party support (Matlab started supporting Linux with R2016a) and wine/proton letting windows applications run mostly normally without their developers needing to make any changes to support the OS.

    IMO the thing that’s most in the way of adoption these days is the lack of mainstream OEM support. Until the masses can easily buy a computer with Linux pre-installed and the driver niggles sorted they’re not going to switch.




  • White collar professionals who spend their days developing and deploying software or working on compute infrastructure? Sure, some of them have been on Linux for decades. Although many big corpos love Windows and Microsoft products, so at best you’re going to have a foot in both worlds if you work at one of these companies.

    Some admin jobs that don’t require bespoke software (ie very little beyond say an office suite) have started making the jump recently to save $$.

    Basically every other white professional that needs to work on a computer with industry specific software like people in medical, engineers, business? Odds are they use windows since the software they use for their job is probably only built for Windows and maybe Mac if they’re lucky. Very few employers are going to mass deploy Linux to run applications via Wine. These employers have support contracts for the major software products their employees use and they won’t get support if they’re not running software on its native OS.


  • IMALlama@lemmy.worldtoSelfhosted@lemmy.worldSelfhosted coding assistant?
    link
    fedilink
    English
    arrow-up
    19
    arrow-down
    3
    ·
    5 months ago

    Straight up vibe coding is a horrible idea, but I’ll happily take tools to reduce mundane tasks.

    The project I’m currently working on leans on Temporal for durable execution. We define the activities and workflows in protobufs and utilize codegen for all the boring boiler plate stuff. The project hasa number of http endpoints that are again defined in protos, along with their inputs and outputs. Again, lots of code gen. Is code gen making me less creative or degrading my skills? I don’t think so. It sure makes the output more consistent and reduces the opportunity for errors.

    If I engage gen AI during development, which isn’t very often, my prompts are very targeted and the scope is narrow. However, I’ve found that gen AI is great for writing and modifying tests and with a little prompting you can get pretty solid unit test coverage for a verity of different scenarios. In the case of the software I write at work the creativity is in the actual code and the unit tests are often pretty repetitive (happy path, bad input 1…n, no result, mock an error at this step, etc). Once you know how to do that there’s no reason not to offload it IMO.