"Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearMO
Movies rglullis 2d ago 60%
Spider-Man 4 Script "Really Lit A Fire In Me," Says Tom Holland
www.gamespot.com
1
0
nfl
NFL 3d ago
Jump
Broncos vs. Saints live score, updates, highlights from NFL 'Thursday Night Football' game | Sporting News
  • rglullis rglullis 3d ago 100%

    some bizarre reason

    Help is sorely needed. if you create a match thread and add the #NFL tag, you'll surely get some participation from the Mastodon crowd.

    1
  • How Will Lemmy and Social Media Handle Advanced Bots in the Future?
  • rglullis rglullis 4d ago 100%

    Right, but the problem with them is "bad usability", which amounts to "friction".

    Like I said in the original comment, I kinda believe that things will get so bad that we will eventually have to accept that the internet can only be used if we use these tools, and that "the market" starts focusing on building the tools to lower these barriers of entry, instead of having their profits coming from Surveillance Capitalism.

    1
  • How Will Lemmy and Social Media Handle Advanced Bots in the Future?
  • rglullis rglullis 5d ago 100%

    requiring a proof of identity or tracking users is a privacy disaster and I'm sure many people (especially here) would outright refuse to give IDs to companies.

    The Blockchain/web3/Cypherpunk crowd already developed solutions for that. ZK-proofs allow you to confirm one's identity without having to reveal it to public and make it impossible to correlate with other proofs.

    Add other things like reputation-based systems based on Web-Of-Trust, and we can go a long way to get rid of bots, or at least make them as harmless as email spam is nowadays.

    4
  • How Will Lemmy and Social Media Handle Advanced Bots in the Future?
  • rglullis rglullis 5d ago 100%

    Not even the biggest tech companies have an answer sadly…

    They do have an answer: add friction. Add paywalls, require proof of identity, start using client-signed certificates which needs to be validated by a trusted party, etc.

    Their problem is that these answers affect their bottom line.

    I think (hope?) we actually get to the point where bots become so ubiquitous that the whole internet will become some type of Dark Forest and people will be forced to learn how to deal with technology properly.

    12
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearHU
    Human Scale 5d ago
    Jump
    What Do Van Halen & Brown M&M's Have To Do With Safety?
  • rglullis rglullis 5d ago 100%

    Well, yes. But to me interesting part of the article is that I used to think that they did this to check if the venue was taking them seriously about general aspects of their rider, maybe to accommodate some of their eccentricities or to fuel their parties. I didn't know that this was used as a canary test of the safety work, and I didn't know that they were pushing for such large scale operations on their tours.

    1
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearHU
    Human Scale rglullis 5d ago 83%
    What Do Van Halen & Brown M&M's Have To Do With Safety?
    https://www.safetydimensions.com.au/van-halen/
    4
    2

    I am using counsel with projectile mainly for two use cases: - `counsel-projectile-ag` for project-wide grep - `counsel-projectile-find-file` to get a list of file names by typing some characters. I usually have them bound to `C-C C-s`and `C-C C-f`, which used to work well with any other major modes. Recently, I switched to using tree-sitter and set it up to use python-ts-mode. I also started using lsp-mode. Since then, whenever I open any python file, `C-c C-s` and `C-c C-f` are bound to the functions from python-mode. I've tried adding ``` (unbind-key "C-c C-s" python-ts-mode-map) (unbind-key "C-c C-f" python-ts-mode-map) ``` to python-ts :config on use-package, and similar to python-mode, but I am still getting ```C-c C-s runs the command python-shell-send-string (found in python-ts-mode-map), which is an interactive native-compiled Lisp function in ‘python.el’. It is bound to C-c C-s. (python-shell-send-string STRING &optional PROCESS MSG) Send STRING to inferior Python PROCESS. When optional argument MSG is non-nil, forces display of a user-friendly message if there’s no process running; defaults to t when called interactively. [back] ``` What would be the correct way to set the configuration to get this always bound to the counsel-projectile commands whenever I open a python file? Caveat: I am using [NixOS home-manager](https://github.com/nix-community/home-manager) to manage my emacs installation, which means that I am not manipulating my .emacs directly. The relevant sections of my nix file. ``` usePackage = { python-ts-mode = { enable = true; mode = [ ''("\\.py\\'" . python-ts-mode)'' ]; hook = [ "hs-minor-mode" "(python-ts-mode . python-isort-on-save-mode)" ]; bind = { "C-c C-s" = "counsel-projectile-ag"; "C-c C-f" = "counsel-projectile-find-file"; }; config = '' (unbind-key "C-c C-s" python-ts-mode-map) (unbind-key "C-c C-f" python-ts-mode-map) ''; }; python-mode = { enable = true; bind = { "C-c C-s" = "counsel-projectile-ag"; "C-c C-f" = "counsel-projectile-find-file"; }; config = '' (unbind-key "C-c C-s" python-mode-map) (unbind-key "C-c C-f" python-mode-map) ''; }; lsp-mode = { enable = true; command = [ "lsp" ]; hook = [ "((python-ts-mode java-mode vue-mode javascript-ts-mode typescript-ts-mode) . lsp-deferred)" ]; bind = { "C-c r r" = "lsp-rename"; "C-c r f" = "lsp-format-buffer"; "C-c r g" = "lsp-format-region"; "C-c r a" = "lsp-execute-code-action"; "C-c f r" = "lsp-find-references"; "C-c C-s" = "counsel-projectile-ag"; "C-c C-f" = "counsel-projectile-find-file"; }; }; counsel = { enable = true; bind = { "C-x C-d" = "counsel-dired-jump"; "C-x C-r" = "counsel-recentf"; "C-x C-y" = "counsel-yank-pop"; }; diminish = [ "counsel-mode" ]; }; counsel-projectile = { enable = true; bind = { "C-c C-s" = "counsel-projectile-ag"; "C-c C-f" = "counsel-projectile-find-file"; }; }; }; ``` Any help appreciated.

    3
    0
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearHA
    Hardware rglullis 5d ago 100%
    FLX1 - Furilabs Linux Phone
    furilabs.com
    3
    0
    Are there any Lemmy instances or similar platforms that don't allow memes?
  • rglullis rglullis 6d ago 100%

    This is not a matter for instance admins but for proper community moderation.

    8
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearHA
    Hardware rglullis 6d ago 20%
    What is the Oura Ring made from?
    www.digitaltrends.com
    -6
    2
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearHU
    Human Scale rglullis 6d ago 100%
    Scale Ruins Everything
    coldwaters.substack.com
    3
    0
    Sleep/Suspend/Resume working on framework coming soon
  • rglullis rglullis 1w ago 100%

    Btw, it would be amazing to see @frameworkcomputer@fosstodon.org posting into this community. Let me know if you need any help to get interop between Lemmy and Mastodon.

    If anyone from framework is listening to this: I'd be more than glad to give full control over this community to any of your social media staff

    6
  • Risks of running a Lemmy/Mbin instance?
  • rglullis rglullis 1w ago 100%

    Yes, it is possible.

    4
  • nba
    NBA 2w ago
    Jump
    NBA is back baby!
  • rglullis rglullis 1w ago 100%

    I am the instance admin, and I am asking you to check it precisely because I am trying to troubleshoot it...

    1
  • Poll: How should the Social Web Foundation engage with Meta?
  • rglullis rglullis 1w ago 100%

    My point is that we should take their current approach as a good thing.

    I"m not saying that we should blindly trust them, but I am saying that if we want corporations to Do The Right Things, then it's a lot better to let them have a seat at the table and participate with the community than to simply ostracize them forever because of their past wrongdoings.

    1
  • nba
    NBA 2w ago
    Jump
    NBA is back baby!
  • rglullis rglullis 1w ago 100%

    Then I'd ask you to please check again your language settings, or talk with the admin of your instance. There really is no reason for it to be failing.

    What happens if you try posting to the community? (I noticed now that my comments are only accepted if I let the language as "undetermined")

    1
  • nba
    NBA 2w ago
    Jump
    NBA is back baby!
  • rglullis rglullis 1w ago 100%

    Can you try unsubbing and trying again? I checked with people with multiple different instances and it seems to be working fine...

    1
  • Poll: How should the Social Web Foundation engage with Meta?
  • rglullis rglullis 1w ago 80%

    They don't "need" the SWF. If Zuckerberg wanted to simply takeover the control of ActivityPub, they could just use their existing devrel people that work with the W3C and push the changes directly at the "authoritative" organization.

    3
  • nba
    NBA 2w ago
    Jump
    NBA is back baby!
  • rglullis rglullis 1w ago 100%

    Can you subscribe to it just fine, or is it in "pending" state?

    1
  • nba
    NBA 2w ago
    Jump
    NBA is back baby!
  • rglullis rglullis 2w ago 100%

    Language settings?

    1
  • Proposal to create a collective to own the topic-based Lemmy instances
  • rglullis rglullis 2w ago 100%

    If you have examples of relays differentiating themselves based on moderation policies, it would be appreciated. Not just "we are extreme free speech holders" vs "we pay attention to some laws here". What nostr relay is actually running a strict filter, or do any type of analysis on the message content beyond "payment only"?

    as if instances have not gone down with users identities.

    If instances go down, there are still lots of possible backups: someone can recover the domain name and regenerate keys (or even recover a database copy). If someone loses a private key, there is no turning back. The fact that (some) poorly managed system are not recoverable does not mean that it is as fragile as something as nostr that gives up completely on making it.

    allowing users the ability to drive their own experiences.

    The same can be achieved on ActivityPub, no new protocol is needed for that.

    Also, this is not matter of individualism, but of UX. It's "nice" when users have the ability to make decisions on their own, but it is terrible when they have to make all decisions on their own to get started.

    1
  • nba
    NBA 2w ago
    Jump
    NBA is back baby!
  • rglullis rglullis 2w ago 100%

    The one thing that I have in mind is improving the reddit bot for match threads and adding real time score tracker and links to game highlights.

    Not willing to make prominent displays of sailor's links, but I could let the mods run a bot that sends DMs to users who ask a specific question.

    1
  • nba
    NBA 2w ago
    Jump
    NBA is back baby!
  • rglullis rglullis 2w ago 100%

    Are the mods here planning to do any special type of work on this community? Because I've seen that Threads has added a new feature about live score tracking, and I'm wondering if something similar can be done on !nba@nba.space.

    (Also, I've already asked @TrippyFocus@lemmy.ml whether he'd be interested in joining forces there, and I'd like to extend the invite to all mods here)

    4
  • feddit.online will live on as a PieFed instance
  • rglullis rglullis 2w ago 100%

    “If you think sex workers ‘sell their bodies,’ but coal miners do not, your view of labor is clouded by your moralistic view of sexuality.”

    If you are going to start a conversation by attacking a strawman, then I really will not get into it.

    acting in commercial porn is just as normal and unremarkable as any other job

    If this is your idea of being "sex positive" then I really do not want to get into this argument. I can guess this will quickly play out to any objection as "pearl clutching" and I will stick to the point that your attitude is completely dehumanizing and that there is nothing "positive" about reducing sex to the mechanical/physical act.

    Like I said in the first comment, if you feel so strongly about this, go ahead and create your own and see how far it goes. When you start putting some Skin In The Game you will get more credibility or at least accept that things are Just Not That Simple.

    1
  • feddit.online will live on as a PieFed instance
  • rglullis rglullis 2w ago 100%

    advocating for them to be treated on absolutely equal footing; they're specially marked so that people who don't

    You lamented the fact that unlogged users can not see it and that they can not be found as easily. This is the same as "make it available to the public without any type of check".

    It's treating sexuality as something toxic

    Sexuality != Porn, and "toxicity" is dose-dependent. Eating a bit of broccoli is good for you. Too much at once and you get thyroid dysfunction.

    There are plenty of things that are good and normal, but need to be discussed/presented with a proper context and (most importantly) people need to have a better understanding of the potential bad consequences if it is abused or corrupted.

    You don't see young people destroying their lives because they were promised they could make a lot of money by knitting sweaters or working as electricians, but cases of vulnerable women who regret getting into sex work are infinite.

    3