privacy Privacy alt. youtube frontend
Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    1 month ago 75%

    Custom license that doesn't meet the FSF's definition. Tldr restrictions on redistribution and minor restrictions on modification. It isn't on fdroid's main, but they host a fdroid compatible one with a out of date version of Grayjay

    2
  • selfhosted Selfhosted Simplest tool to maintain local mirrors of git repos?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    1 month ago 100%

    I'd look into the git-maintenance's prefetch task. From what I understand, that is more or less what you are looking for. Then just run any old http(s) server and clone them from that https://git-scm.com/docs/git-maintenance

    1
  • meta literature.cafe meta We have updated! And now have the ability to create local only communities.
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    2 months ago 100%

    A general sounds cool. If it isn't difficult, maybe also switch #meta to a local only community unless there is a reason I'm not thinking of to keep it federated.

    5
  • selfhosted Selfhosted Self-hosted website for posting web novel/fiction
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    4 months ago 100%

    There is also writefreely. It is fairly basic, but says it supports "publish[ing] to multiple blogs from one account". Haven't really used it, but it looks kinda cool imo

    https://github.com/writefreely/writefreely

    3
  • linux Linux Right way to check free/used storage of btrfs filesystem [SOLVED]
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    6 months ago 100%

    I'm not an expert on btrfs, but I assume the inconsistencies come from deduplication, metadata, and maybe compression. I think some of them just count raw block storage, and some include the cost of metadata.

    Traditional du assumes that each file takes up it's full space on disk which isn't always the case on btrfs. When using btrfs backed oci images, storage can easily appear multiple times higher.

    I use btrfs filesystem usage /. I'm not sure that it is the "correct" way, but it works fairly well.

    6
  • programming Programming where quickly share code ?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    6 months ago 100%

    Standard forgejo shoutout. It is a fork of gitea with more features following the foss philosophy. It is codeberg's backend https://forgejo.org/2024-02-monthly-update/

    5
  • privacy Privacy Airbnb bans all indoor security cameras
    Jump
    linux Linux Trying to run stable diffusion with AMD GPU...Do I need private drivers?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    7 months ago 100%

    I run stable diffusion in a docker container. Most kernels ships the required drivers, and you can install the rocm libraries inside a docker container to keep them from poluting the host.

    Here's my docker image, feel free to take a look. I won't guarantee it'll work for you, but hopefully it will give you some hints in the right direction. https://codeberg.org/it-a-me/auto1111-webui_rocm

    3
  • minecraft Minecraft What's the best way to play the Java edition of Minecraft on Android in 2024?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    9 months ago 100%

    "real" bedrock modding is still in its infancy, but there is progress. LeviLamina is a framework that allows for a lot of server features that were previously more or less impossible. https://github.com/LiteLDev/LeviLamina

    Bedrock modding at the moment is focused more on serverside software because, unlike java, the core game code runs natively rather than in a java virtual machine. That means client modifications are a lot harder and require duplicated effort for each platform. That's without mentioning that the linux version of the bedrock server comes with debug symbols that aid decompilation.

    Some client mods do exist though. We have onix, a dll injector that adds a lot of useful features. Unfortunatly it is not open source and it doesn't support linux so I can't speak for the quality or legality. People have also prematurely figured out shaders for render dragon(minecraft's new universal rendering engine). Useless shaders adds redstone level indicators and better chunk borders. https://github.com/OEOTYAN/useless-shaders/releases

    Some missing plugins people often want for bedrock are carpetmod and litimatica. Trapdoor tries to act similar to carpetmod and Sructura can also can more or less replace litimatica for simple usecases.
    https://github.com/bedrock-dev/trapdoor-ll https://github.com/RavinMaddHatter/Structura/releases

    For world modification and analysis, the most complete solution is rbedrock. It is very useful for world trimming, village cleanup, and creating fake structures, and other things https://github.com/reedacartwright/rbedrock

    Finally, redstone and mob farms. For redstone, the biggest problems people have are missunderstanding the differences from java. The main one being that redstone processing happens in two distinct parts(producer tick and consumer tick). Pticks happen every game tick but cticks only happen on odd game ticks(like javas redstone ticks). During a ptick, redstone consumers are just added to an unsorted list to get powered on the next ctick. That leads to the random result that is often complained about.

    Mob farms are limited primarily by our miniscule 24 mob cap(8 surface 16 cave). Recent advancements have allowed the use of split density(abusing the fact that bedrock mob caps only check 4 chunks in each direction) to help reduce the issue. The other two weird quirks are that structure spawning is screwy(I can go to more detail if desired) and mobs spawn on the northwest corder of the spawnable block.

    Technical bedrock does exist, it is just a less developed field than java. Lmk if you have any questions, I can try to answer them or link to some discords that I've lurked in to learn this stuff

    6
  • linux Linux Why are there so many (rust) GTK apps and so little Qt ones?
    Jump
    linux Linux find, grep, sed, and awk
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    10 months ago 66%

    I've gotten tired of weird regex stuff in awk, sed, and grep, so I've moved to perl -E for all but the most basic of things.

    1
  • opensource Open Source GitLab vs Codeberg
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    11 months ago 100%
    1. Codeberg is fully open source(forgejo) while gitlab has an open source core+community edition but a source available propietary enterprize edition.

    2. Codeberg is a nonprofit with no ulterior motives. Gitlab is a publicly traded for profit entity with a goal to make profit

    3. This could just be me, but codeberg feels a lot more transparent. When they have outages, they explain why.

    4. Super minor, but the codeberg team "self-hosts" their own servers so you only need to trust the one entity rather than additionally trusting the server provider.

    74
  • programming Programming What open source solutions do you use or want to use?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    11 months ago 100%

    Primary code editor: helix

    Graphical debugger and certain IDE features: vscodium

    Lots of open source language servers: clangd, rust-analyzer, perl-navigator, ...

    Makefile to compile-comands.json: bear

    TUI file manager: yazi

    Better Grep:ripgrep

    Debugger: gdb(gnu debugger)

    11
  • linux Linux Arch root partition is full, how to clean it up?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    11 months ago 83%

    The main advantage of having a /home partition is that you can easily preserve it during reinstalls or during a distro hop. Reinstalls used to be more common in the past when some distros didn't allow full distro upgrades without reinstalling. See this result which is still ranked #1 on duckduckgo

    I personally use a @home btrfs subvolume which has most of the same advantages to me, and additionally allows @home and @root to share the same partition. It also allows me to use luks on everthing without bothering with lvm.

    4
  • opensource Open Source Grayjay - Revolutionizing the Way We Consume Videos
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    11 months ago 100%

    I also don't believe it's even fully source availiable. There are no build instructions, and you can't clone all the submodules without signing in to their closed application gitlab instance. If anyone has sucessfully built it from source, please lmk.

    Nevermind they did add build instructions since I last checked. Still lmk if anyone's tested them.

    4
  • opensource Open Source Grayjay - Revolutionizing the Way We Consume Videos
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    11 months ago 100%

    Section 4 is what gets me. Your rights are temporary and revokable meaning the the rest of the license doesn't matter in the long term

    ## Section 4: Termination, suspension and variation
    1. We may suspend, terminate or vary the terms of this license and any access to the code at any time, without notice, for any reason or no reason, in respect of any licensee, group of licensees or all licensees including as may be applicable any sub-licensees.
    
    22
  • meta
    literature.cafe meta it_a_me 11 months ago 100%
    Syatus of kbin.social

    Kbin.social has been having some issues lately and I have found a a fair amount of spam in my home feed from it. What's been you guys' experience with it lately? Would we be want to defederate from it until it sorts itself out?

    15
    2
    mastodon Mastodon How do you guys use the "Private notes about this account" feature on other mastodon profiles?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    11 months ago 100%

    Same as I use it on discord. Either to justify a block/mute or to remind me why I should block/mute someone the next time it bothers me

    6
  • meta literature.cafe meta Next update... should we federate with NSFW instances?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    12 months ago 100%

    I'd prefer to wait a bit until more clients implement the nsfw features. That's just me though

    7
  • meta literature.cafe meta Heads up for transparency: this instance will begin using cloudflares hash scanning API to detect any suspected CSAM soon.
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    12 months ago 100%

    Isn't most everything(other than dms) on lemmy publicly accessibly anyway? I doubt is all that difficult for cloudflair to scrape public images and hashes don't contain much useful information regardless

    9
  • linux Linux Projects that are experimental or daringly innovating the terminal and command line world?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    1 year ago 100%

    Sorry, I can't find the blog post. I remember reading something about how zellij's goal was to allow cli apps to create pop-ups, overylay windows and other stuff all in the terminal. Idk where it is though

    1
  • linux Linux Projects that are experimental or daringly innovating the terminal and command line world?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    1 year ago 100%

    Zellij - a better way for a cli application to communicate with the terminal

    Warp - a terminal emulater that integrates LLM completion natively

    Fish - a shell that generates completions automatically from a man-page

    22
  • chat literature.cafe chat What are you reading/listening to this week? (September 20th, 2023)
    Jump
    linux Linux Some Works In Progress You're Looking Forward To?
    Jump
    linux Linux Intel oneAPI Initiative Evolves Into The Unified Acceleration "UXL" Foundation
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    1 year ago 100%

    I may be missing something, but the only machine learning focused api I know of are AMD's ROCM, Nvidia's CUDA, and now Intel's oneAPI. I haven't looked into Apple's machine learning frameworks and I consider vulkan more of a general purpose api than a machine learning one.

    3
  • linux Linux Intel oneAPI Initiative Evolves Into The Unified Acceleration "UXL" Foundation
    Jump
    linux Linux Scriptable configuration (with programming language) vs data / text configuration: what are the benefits?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    1 year ago 100%

    Turing Complete Configuration

    • more extensible
    • tend to be heavier
    • harder to provide detailed error messages
    • more difficult for new users

    Data Based Configuration

    • easier to use
    • easier to provide documentation
    • lighter to embed
    • more limited usecases
    10
  • fiction Fiction Books What are some of the best translated fiction books you've read?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    1 year ago 100%

    I can't speak for the translation quality, but I enjoyed Reverend Insanity.

    ::: spoiler Trama Warnings

    • gore :::
    3
  • linux Linux What are the pros and cons of the different immutable distros?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    1 year ago 100%

    To enable the use of flakes, you have to use the 'extra-expiremental-features flakes' flag.

    Edit: Apparently they are called 'extra-expiremental-features' not 'extra-unstable-features'. Regardless the nix docs explicitly describe them as unstable here

    https://nixos.org/manual/nix/unstable/contributing/experimental-features.html

    5
  • linux Linux What are the pros and cons of the different immutable distros?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    1 year ago 92%

    Nixos

    Pros

    • Delarative Config
    • largest package repos

    Cons

    • poor documentation
    • cli and package management is in limbo with unstable flakes/cli
    24
  • opensource Open Source Copyleft Equivalent for Trademarks?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    1 year ago 100%

    In most cases you don't want one. It can make forks confusing and lend malicious actors more credibility than they deserve.

    Copyright controls the code. Trademarks are the recognisable names/icons that identify a project.

    6
  • meta literature.cafe meta We now have an uptime status page, as well as alternative front ends. Also a backup fedi account for system status messages
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    1 year ago 100%

    I don't me the instance default. I just meant the url on status.literature.cafe since all the other url's are lemmy related

    2
  • meta literature.cafe meta We now have an uptime status page, as well as alternative front ends. Also a backup fedi account for system status messages
    Jump
    opensource Open Source *Permanently Deleted*
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    1 year ago 100%

    I like curl's standard and trasparent release cycle. The consistent feature freeze before releases seems like a good idea to prevent bugs.

    3
  • chat literature.cafe chat Should we temporarily defederate from open registration instances? Or stay vigilant and try to weather things out?
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    1 year ago 100%

    Then I'd be in favor for defederation. sh.itjust.works doesn't bring enough value to me to justify the risk and mental damage to mods.

    9
  • chat literature.cafe chat Should we temporarily defederate from open registration instances? Or stay vigilant and try to weather things out?
    Jump
    linux Linux WM/DE recommendation request: able to have i3-like control, but friendly enough for an ex-windows user
    Jump
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearIT
    it_a_me
    1 year ago 33%

    I'd consider dual-booting(windows+linux or linux+linux) or just installing a desktop environment. You can login to your wm and they can login to a full de

    -2