• 0 Posts
  • 19 Comments
Joined 2 years ago
cake
Cake day: September 6th, 2023

help-circle



  • I have this exact same setup. Open Web UI has more features than I’ve been able to use such as functions and pipelines.

    I use it to share my LLMs across my network. It has really good user management so I can set up a user for my wife or brother in law and give them general use LLM while my dad and I can take advantage of Coding-tuned models.

    The code formatting and code execution functions are great. It’s overall a great UI.

    Ive used LLMs to rewrite code, help format PowerPoint slides, summarize my notes from work, create D&D characters, plan lessons, etc



  • afk_strats@lemmy.worldtoOpen Source@lemmy.mldarktable 5.0.0 released
    link
    fedilink
    English
    arrow-up
    15
    arrow-down
    2
    ·
    edit-2
    4 months ago

    I’ve tried to main it on a few occasions most recently on 4.1. It’s immensely powerful and I really think it surpasses Lightroom on ability to create pleasing tones. I have it installed on my home and laptop photo editing setup and I do use it on occasion.

    Uortunately, even as an Adobe hater, I still use Lightroom CC 99% of the time. Why? Because speed and cross-platform compatibility. CC is less powerful* but I can do all of my editing in 30 seconds per photo and I have roughly the same experience accross Mac, Linux, and Android.

    Darktable is slow to update, you have to be methodical, and there are so many ways to do the same thing. I know the devs are trying to make the best tool possible and I think they’ve built a gem. But I’m not invested enough to learn best practices for my photo editing software. I want a tool which gives me the happy path to the basics.

    *ai masking, ai noise reduction, and ai object deletion are insanely useful. I feel bad every time I use them… But I do. Darktable doesn’t have these




  • It’s a bit involved to host the server but easier than most self-hosting services, in my opinion. Then there’s the audio setup which I think is super easy for digital audio folk but may be a challenge for folks who haven’t had to mess with digital audio much. The biggest thing people had problems with was turning off wifi and connecting via network cable. Reduced latency by leaps and bounds

    Like I said, video was a separate device for my playing so it was kind of a non-issue. Mixing and production in OBS is way over my head.







    1. Some people have mentioned it already but turning human-readable code to machine code is like turning a precise cake recipe into a cake. A decent baker can do it. Any developer can compile existing code. Going from a baked cake to a precise recipe requires a chemistry lab and a team of highly-trained scientists. Same thing for code. You’ll need a highly-experienced and specialized programmer to turn a program into legible code. Its almost always easier to just rebuild from scratch.

    However companies do other things as well.

    1. Companies sometimes purposefully compress and obfuscate their code to make it hard to unpack. This happens a lot on the web where a website might have code sent to your machine in a format which could have been legible. But before they send it to you, they run the code through a program which adds extra steps, renames things, and reorders things and removes extra spaces… all to make it hard to read.

    2. Some companies will encrypt their code or programs to varying degrees. Some will do it at the storage level, such as DRM or modern disk-based videogames. The data in these games is “locked” behind passwords and keys which can only work if the program “calls home” to Steam or Xbox or whatever and those providers let the game be opened. It’s more complicated than this but that’s the basics.

    3. A lot of companies have moved their code “into the cloud”. That means, instead of giving you a full piece of software, you only get the front-end, or the pictures and words you see on screen. The actual program lives on the company’s servers which you don’ have access to. You only get to send those servers inputs, and they return outputs back to your screen.

    4. Companies can make their code secret from internal developers by breaking programs up into smaller pieces. Say you’re a developer at Apple. You might be assigned on the specific part of the system which opens apps from the home screen and may only get access to that part of the system so if your development machine gets hacked, the hackers don’t know ALL the inner workings of iOS.

    I’m sure there are more ways but this is a start.