flauschke

@[email protected]

This profile is from a federated server and may be incomplete. Browse more on the original instance.

flauschke,

I can’t wait to play this. It looks like an amazing expansion

flauschke,

There are tons of lemmy apps in development now. Are there any kbin apps being developed? I haven’t heard of one yet

flauschke,

I wasn’t aware of that

flauschke,

Where I live it’s not “full” price. You can get it for 40€ and most new AAA releases are 60-80 €

Yes I realize 80€ is insane but I’ve seen games for that price

flauschke,

You’re right, I can’t find any right now. I guess what I thought I remembered was console games as they are generally more expensive

flauschke,

I fixed it. It seems to work now. For future reference:

Due to my reverse proxy setup the php container identified it’s own URL as being accessed via HTTP. Settings HTTPS=on in the config did the trick. This will force symfony to assume HTTPS for all communication.

Edit: it seems my comments are not being federated so I could still use some help. Edit 2: it seems all it needed was some patience

flauschke,

Yes, you can disable registrations in the config file and just create your own account through a docker command

flauschke,

Hab letztens vom Besuch Komplimente für den sauberen Boden bekommen. Vorher dachte ich, dass es nur mir selbst auffällt aber der Unterschied ist wirklich heftig.

flauschke,

Wen interessiert wie viele Leute hier als aktiv gezählt werden? Ist es nicht wichtiger ne coole community nachhaltig durch Inhalte aufzubauen als sich ständig mit reddit zu vergleichen?

flauschke,

Das mit Sicherheit, aber einfach nur huhu schreiben damit man gezählt wird bringt auch nicht viel. Ich_iel ist wahrscheinlich auch nicht die richtige Kommune um das zu diskutieren aber mir ist diese Art von Pfosten nun schon öfter aufgefallen und ich wollte den Gedanken mal teilen

flauschke,

Java und Javascript sind sehr unterschiedlich 😄

flauschke,

I hope they fixed the performance as well. I have several crashes per day on debian with version 102.11.0

When starting it I have to wait for a bit before I click anything, otherwise it crashes. It also 100%s one CPU core regularly, I don’t know if that is supposed to happen. It also sometimes does not show the content of certain emails. All that said it’s still the best mail client I’ve used so far.

flauschke,

nice plain text response 🤦

flauschke,

I use KDE connect for that, it works pretty well. I don’t use KDE so I’m probably missing out on some features but file transfer, sending clipboard contents, media control etc all work

flauschke,

I prefer “lightly fucked”

flauschke,

This is the instructions that I followed for the matrix server, followed by the bridge setup

flauschke,

FYI you should be able to disallow directly pushing to the master branch and only allow merging

flauschke,

Ist "Preisverfall" ein anderes Wort dafür, dass es beginnt sich mit einem Schneckentempo in Richtung bezahlbar zu entwickeln?

flauschke,

sway is the wayland based modern alternative that I use (and prefer). It does not do anything flashy and most i3 config options work just the same.

flauschke,

I’ve adapted it to work on kbin - let me know if anyone finds any issues


<span style="font-style:italic;color:#969896;">// ==UserScript==
</span><span style="font-style:italic;color:#969896;">// @name         kbin lemmy redirect
</span><span style="font-style:italic;color:#969896;">// @version      1.0
</span><span style="font-style:italic;color:#969896;">// @description  Redirect kbin to your local Lemmy instance
</span><span style="font-style:italic;color:#969896;">// @author       @[email protected]
</span><span style="font-style:italic;color:#969896;">// @match        https://*/m/*
</span><span style="font-style:italic;color:#969896;">// @icon         https://join-lemmy.org/static/assets/icons/favicon.svg
</span><span style="font-style:italic;color:#969896;">// ==/UserScript==
</span><span style="color:#323232;">
</span><span style="font-style:italic;color:#969896;">// best effort guess
</span><span style="font-weight:bold;color:#a71d5d;">const </span><span style="color:#323232;">isKbin </span><span style="font-weight:bold;color:#a71d5d;">= typeof </span><span style="color:#0086b3;">KBIN_USER </span><span style="font-weight:bold;color:#a71d5d;">!== </span><span style="color:#183691;">'undefined' </span><span style="font-weight:bold;color:#a71d5d;">&& typeof </span><span style="color:#0086b3;">KBIN_MAGAZINE </span><span style="font-weight:bold;color:#a71d5d;">!== </span><span style="color:#183691;">'undefined'</span><span style="color:#323232;">;
</span><span style="color:#323232;">
</span><span style="font-weight:bold;color:#a71d5d;">if </span><span style="color:#323232;">(isKbin) {
</span><span style="color:#323232;">    </span><span style="font-style:italic;color:#969896;">// Get URL info
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">const </span><span style="color:#323232;">localLemmy </span><span style="font-weight:bold;color:#a71d5d;">= </span><span style="color:#183691;">"feddit.de"</span><span style="color:#323232;">;
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">const </span><span style="color:#323232;">splitUrl </span><span style="font-weight:bold;color:#a71d5d;">= </span><span style="color:#323232;">location.href.split(</span><span style="color:#183691;">"/"</span><span style="color:#323232;">);
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">const </span><span style="color:#323232;">instanceUrl </span><span style="font-weight:bold;color:#a71d5d;">= </span><span style="color:#323232;">splitUrl[</span><span style="color:#0086b3;">2</span><span style="color:#323232;">];
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">const </span><span style="color:#323232;">community </span><span style="font-weight:bold;color:#a71d5d;">= </span><span style="color:#323232;">splitUrl[</span><span style="color:#0086b3;">4</span><span style="color:#323232;">];
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">const </span><span style="color:#323232;">localizedUrl </span><span style="font-weight:bold;color:#a71d5d;">= </span><span style="color:#183691;">"https://" </span><span style="font-weight:bold;color:#a71d5d;">+ </span><span style="color:#323232;">localLemmy </span><span style="font-weight:bold;color:#a71d5d;">+ </span><span style="color:#183691;">"/c/" </span><span style="font-weight:bold;color:#a71d5d;">+ </span><span style="color:#323232;">community </span><span style="font-weight:bold;color:#a71d5d;">+ </span><span style="color:#183691;">"@" </span><span style="font-weight:bold;color:#a71d5d;">+ </span><span style="color:#323232;">instanceUrl;
</span><span style="color:#323232;">
</span><span style="color:#323232;">    </span><span style="font-style:italic;color:#969896;">// Create redirect button if not on local
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">if </span><span style="color:#323232;">(instanceUrl </span><span style="font-weight:bold;color:#a71d5d;">!== </span><span style="color:#323232;">localLemmy) {
</span><span style="color:#323232;">        </span><span style="font-weight:bold;color:#a71d5d;">const </span><span style="color:#323232;">wrapper </span><span style="font-weight:bold;color:#a71d5d;">= </span><span style="color:#0086b3;">document</span><span style="color:#323232;">.</span><span style="color:#0086b3;">createElement</span><span style="color:#323232;">(</span><span style="color:#183691;">"div"</span><span style="color:#323232;">);
</span><span style="color:#323232;">        wrapper.</span><span style="color:#0086b3;">setAttribute</span><span style="color:#323232;">(</span><span style="color:#183691;">"style"</span><span style="color:#323232;">, </span><span style="color:#183691;">"width: 100%;position: fixed;top: 0;"</span><span style="color:#323232;">)
</span><span style="color:#323232;">
</span><span style="color:#323232;">        </span><span style="font-weight:bold;color:#a71d5d;">const </span><span style="color:#323232;">container </span><span style="font-weight:bold;color:#a71d5d;">= </span><span style="color:#0086b3;">document</span><span style="color:#323232;">.</span><span style="color:#0086b3;">createElement</span><span style="color:#323232;">(</span><span style="color:#183691;">"div"</span><span style="color:#323232;">);
</span><span style="color:#323232;">        container.</span><span style="color:#0086b3;">setAttribute</span><span style="color:#323232;">(</span><span style="color:#183691;">"style"</span><span style="color:#323232;">, </span><span style="color:#183691;">"position:relative;max-width: 1650px;width: 100%;margin: 0 auto;"</span><span style="color:#323232;">)
</span><span style="color:#323232;">        </span><span style="font-weight:bold;color:#a71d5d;">const </span><span style="color:#323232;">zNode </span><span style="font-weight:bold;color:#a71d5d;">= </span><span style="color:#0086b3;">document</span><span style="color:#323232;">.</span><span style="color:#0086b3;">createElement</span><span style="color:#323232;">(</span><span style="color:#183691;">"button"</span><span style="color:#323232;">);
</span><span style="color:#323232;">        zNode.innerText </span><span style="font-weight:bold;color:#a71d5d;">= </span><span style="color:#183691;">"Open in local instance"</span><span style="color:#323232;">;
</span><span style="color:#323232;">        zNode.</span><span style="color:#0086b3;">setAttribute</span><span style="color:#323232;">(</span><span style="color:#183691;">"id"</span><span style="color:#323232;">, </span><span style="color:#183691;">"localizeContainer"</span><span style="color:#323232;">);
</span><span style="color:#323232;">        </span><span style="font-style:italic;color:#969896;">// add styles to the button embedded
</span><span style="color:#323232;">        zNode.</span><span style="color:#0086b3;">setAttribute</span><span style="color:#323232;">(
</span><span style="color:#323232;">            </span><span style="color:#183691;">"style"</span><span style="color:#323232;">,
</span><span style="color:#323232;">            </span><span style="color:#183691;">"cursor: pointer; padding: 5px; margin-top: 55px; background-color: red; border-radius: 10%; border-width: 3px; border-style: solid; z-index: 10;max-width:200px;position:absolute;top:0;right:0;"
</span><span style="color:#323232;">        );
</span><span style="color:#323232;">        zNode.addEventListener(</span><span style="color:#183691;">"click"</span><span style="color:#323232;">, e </span><span style="font-weight:bold;color:#a71d5d;">=> </span><span style="color:#0086b3;">window</span><span style="color:#323232;">.location.replace(localizedUrl));
</span><span style="color:#323232;">        container.</span><span style="color:#0086b3;">appendChild</span><span style="color:#323232;">(zNode);
</span><span style="color:#323232;">        wrapper.</span><span style="color:#0086b3;">appendChild</span><span style="color:#323232;">(container);
</span><span style="color:#323232;">        </span><span style="color:#0086b3;">document</span><span style="color:#323232;">.body.</span><span style="color:#0086b3;">appendChild</span><span style="color:#323232;">(wrapper);
</span><span style="color:#323232;">    }
</span><span style="color:#323232;">}
</span>
flauschke,

Hitschies saure Drachenzungen gewinnt gegen beide

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • uselessserver093
  • Food
  • aaaaaaacccccccce
  • test
  • CafeMeta
  • testmag
  • MUD
  • RhythmGameZone
  • RSS
  • dabs
  • KamenRider
  • TheResearchGuardian
  • KbinCafe
  • Socialism
  • oklahoma
  • SuperSentai
  • feritale
  • All magazines