There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

kbin.life

livus , to youshouldknow in YSK that kbin.social is now federating, adding hundreds of communities and ~26k more users content
@livus@kbin.social avatar

Does this mean you are posting this on lemmy.world and I am reading it on kbin?

For those of us new to the fediverse, this is so exciting!

BreadDog ,

Yup, exactly. Welcome to the fediverse!

iAmTheTot ,
@iAmTheTot@kbin.social avatar

Can we please call it literally anything else? I'm tired of "verses".

BaroqueInMind ,
@BaroqueInMind@kbin.social avatar

Sure. Welcome to the federanus.

niktemadur ,
@niktemadur@kbin.social avatar

...which is now open for business!

clueless_stoner ,
@clueless_stoner@lemmy.world avatar

Haha yep, this community is hosted on lemmy.world! And you’re commenting from kbin. That’s so cool!

UnshavedYak ,

Oh, i actually didn't know Kbin (despite these posts lol) was being seen from Lemmy. Iirc when i first saw Kbin a few days ago, Kbin could see Lemmy but Lemmy couldn't see Kbin. Ie it's like it was a partial federation.

I'm curious on if that was accurate and if it was, what caused it in a technical sense. Given i'm a dev working on some ActivityPub stuff, i'm quite interested in it. Though i've not yet used the spec, clearly hah.

Harlan_Cloverseed ,
@Harlan_Cloverseed@kbin.social avatar

It was disabled until mere hours ago!

C8H10N4O2 ,
@C8H10N4O2@kbin.social avatar

Wow this is neat!

How can I tell that a post is from another instance when browsing on Kbin? Just scanning the card for this thread, it isn't apparent that it's federated content.

themadcodger ,
@themadcodger@kbin.social avatar

If you have the top bar enabled, you can see it at the top on the right hand side.

bbtai ,

Is looking at the username how you can tell where a post is coming from? I was so confused a while ago with posts saying "something something fellow Beehaw users!" and it was marked as (kbin.social) lol.

Woovie , to newcommunities in Lego Storage- A Community about sorting and storing your Lego.

Curious if anyone else here is on kbin having issues accessing this. I tried altering the URL a few ways, can't seem to get to it on kbin. And yet, I am on /m/[email protected] just fine.

Myriadblue OP ,

Hmm. Have you tied the full url? I have to use the full kbin url to access stuff over there.

neoney , to selfhosted in NixOS and Lemmy
@neoney@lemmy.neoney.dev avatar

Oh hello, my instance is on NixOS!
There’s a NixOS module for lemmy, but it’s kind of broken right now and in the middle of a PR. If you want, you can replace the current nix package with the one from the fork, and successfully deploy it, however, if I were you, I’d just wait a week or so.

The configuration right now requires a bunch of hacks, and even doing some non-reproducible stuff.

ericjmorey OP ,

That PR link returns a 404.

This is my way of learning Nix/NixOS so I’d rather give it a go before the PR is merged.

neoney ,
@neoney@lemmy.neoney.dev avatar

Sorry, missed a character, try again

ericjmorey OP ,

I’m so deep in the weeds. I don’t know what questions to ask.

neoney ,
@neoney@lemmy.neoney.dev avatar

Okay, I’ve actually figured simplifying it out, it’s not that bad. Let me share my config:

First, since the PR isn’t in nixos-unstable yet, I’m adding the fork as a flake input

<pre style="background-color:#ffffff;">
<span style="color:#323232;">inputs = {
</span><span style="color:#323232;">  nixpkgs-lemmy.url = "github:CobaltCause/nixpkgs/lemmy-module-improvements";
</span><span style="color:#323232;">};
</span>

then, in my system configuration, I add this:

<pre style="background-color:#ffffff;">
<span style="color:#323232;"># Not sure if this is required, maybe caddy auto-allows it
</span><span style="color:#323232;">networking.firewall.interfaces.eth0.allowedTCPPorts = [443 80];
</span><span style="color:#323232;">
</span><span style="color:#323232;"># Override the lemmy module with the one from the PR
</span><span style="color:#323232;">disabledModules = ["services/web-apps/lemmy.nix"];
</span><span style="color:#323232;">imports = [
</span><span style="color:#323232;">  "${inputs.nixpkgs-lemmy}/nixos/modules/services/web-apps/lemmy.nix"
</span><span style="color:#323232;">];
</span><span style="color:#323232;">
</span><span style="color:#323232;">services.lemmy = {
</span><span style="color:#323232;">  database.createLocally = true;
</span><span style="color:#323232;">  database.uri = "postgres:///lemmy?host=/run/postgresql&user=lemmy";
</span><span style="color:#323232;">  enable = true;
</span><span style="color:#323232;">  settings = {
</span><span style="color:#323232;">    hostname = "<YOUR_HOSTNAME>";
</span><span style="color:#323232;">  };
</span><span style="color:#323232;">  caddy.enable = true;
</span><span style="color:#323232;">};
</span>

and, that’s it!
However, I’m not sure if it will cleanly deploy, as you might get an error while starting.
If so, please check postgresql logs sudo journalctl -fu postgresql. The error will most likely be something like this:
[…] [10289] ERROR: permission denied: “RI_ConstraintTrigger_a_16639” is a system trigger […]

If that happens, you need to manually run the migration until the fix is merged into Lemmy. Here’s how I did it:

  1. sudo su - postgres
  2. psql -v ON_ERROR_STOP=1 lemmy postgres
  3. (in psql) SET ROLE lemmy;
  4. Paste the SQL code from here: github.com/LemmyNet/lemmy/issues/2784#issuecommen…

After that’s done, you can exit the postgres CLI by typing q, exit the postgres user and just simply sudo systemctl restart lemmy which should start properly now, and be accessible to the outside network.
Open it and it will give you the initial setup screen. Good luck!

neoney ,
@neoney@lemmy.neoney.dev avatar

Note that the PR got merged into nixpkgs now, but hasn’t made it’s way forward (see nixpk.gs/pr-tracker.html?pr=236295), so that’s why you need to do the override for now Also, a fix for the issue with the migrations (if still occuring) has been merged yesterday, but it’s not in any release yet, and especially not in nixpkgs. You could most likely get around it by using overrideAttrs to change the source to make it build from a newer commit.

ericjmorey OP ,

Is this sort of lag the nature of package managers that will inherently be part of NixOS and nixpk?

neoney ,
@neoney@lemmy.neoney.dev avatar

While we were talking I updated lemmy-server using overrideAttrs for my own use. It’s honestly not that hard. You change the commit, specify some random incorrect hashes, build it, nix screams at you that the hash is incorrect (and generously provides the correct one), put the correct hash, and build again. Done.

ericjmorey OP ,

That kinda defeats the purpose of the hash.

nighthawk , to youshouldknow in YSK that kbin.social is now federating, adding hundreds of communities and ~26k more users content
@nighthawk@aus.social avatar

@CodingAndCoffee So nice to be able to comment on this straight from Mastodon, too. Though it's weird that the existing comments don't show up on Mastodon when I paste the URL to this post in my search box (t)here.

Perdendosi , to youshouldknow in YSK that kbin.social is now federating, adding hundreds of communities and ~26k more users content
@Perdendosi@lemmy.world avatar

So I’m looking for a magazine that I know is on kbin, that I want to subscribe from here. I’ve tried typing in the magazine name in the address bar (lemmy.world/c/[email protected]), I’ve tried searching in the “communities” search, and I’m just not finding it and getting errors. Direct linking works, but I then I can only subscribe if I have an account on kbin. Help?

CodingAndCoffee OP ,
@CodingAndCoffee@lemmy.world avatar
  1. paste the full target url in search from lemmy, e.g. https://kbin.social/m/Utah
  2. now it’s available at !Utah
ShakeThatYam ,
@ShakeThatYam@lemmy.world avatar

Do you know how/if I can subscribe to their main page?

Piecemakers3Dprints , to youshouldknow in YSK You aren’t supposed to use apostrophes to pluralize years.
@Piecemakers3Dprints@lemmy.world avatar

“Factually incorrect” is used when referring to a statement of fact (or the lack of), not incorrect punctuation, to be fair. 🤦🏼‍♂️

CodingAndCoffee , to youshouldknow in YSK that kbin.social is now federating, adding hundreds of communities and ~26k more users content
@CodingAndCoffee@mastodon.social avatar

@CodingAndCoffee replying to myself from mastodon!

Zerlyna ,
@Zerlyna@lemmy.world avatar

How…? I think my head just exploded. 🤯

AshDene ,
@AshDene@kbin.social avatar

What is a reddit thread if not a root tweet with a bunch of replies (and replies to the replies) formatted in a way that you see the organization of the replies?

Zerlyna ,
@Zerlyna@lemmy.world avatar

I like this idea and the Mastedon app seems much faster to post… that’s really my only wish list item from lemmy right now. I’m figuring that’s a temporary imbalance of increase activity and server bandwidth/speed? I understand we are decentralized but so is Mastodon and at least my instance is very smooth and fast.

AshDene ,
@AshDene@kbin.social avatar

I can't speak to Lemmy's implementation (I refuse to go near lemmy on account of the maintainers "politics"), but there's nothing fundamental about threading that should make posting slower.

Loading threads here is... different... work than loading your feed in mastodon, it's possibly slower, but posting is from a theoretical standpoint the same. Probably you're just seeing the effect of your lemmy instance not running on sufficient hardware (very understandable given the explosion in user space size).

mr_jp ,

Can you elaborate on the ‘politics’?

I sense something weird , especially with the hardcoded ‘hate speech’ filter, which seems to run contrary to federation.

Anything else I should know about ?

AshDene ,
@AshDene@kbin.social avatar

The broad strokes are here: https://mstdn.social/@feditips/106835057054633379

In addition to the more important issues that fedi-tips discusses I find their stance on anti-vax and US-election conspiracy theories... unappealing, which you can see being discussed here: https://lemmy.ml/post/143057

And that they haven't been shy about exerting their power for political purposes. The hardcoded slur-filter was explicitly about discouraging "right wingers" (I put that in quotes because I suspect their definition of right wing and mine differ), and they at least use to be open about their intentions to moderate the instances that they run as explicitly "left wing" (though I don't see a reference to that on the current site).

Primed_Shame , to warframe in Migrating wiki ?

with how needful WF is of wiki use I’d love to see one hosted by DE itself and while Im wishing an in game way to access it as I think EVE online provides iirc. Because while I have the luxury of a multi monitor set up and so run wiki on one WF on another when Im chasing something particular, I know not everyone especially console tenno have that luxury.

d3ceived , to piracy in Is there a safe way to do stuff without a vpn?

It’s mostly torrents that are dangerous without a VPN, since as a torrent user you’re also redistributing the content in question, and the peer-to-peer nature of them makes you very visible to copyright trolls.

Direct download is generally much safer. Specifics vary by jurisdiction, but in many countries merely downloading (or streaming) a pirated copy of a game or film is not a criminal offense, and is not in practice vulnerable to a civil lawsuit either.

Avoid torrents, know good direct download sites (these will vary by what content you’re interested in, look around using various search engines to get around DMCA delistings), use rudimentary privacy protections like private DNS and HTTPS-only mode in your browser, and you’ll get far without a VPN.

Tor is also a powerful, free option, but it’s generally overkill for non-torrent piracy and very hard to configure for torrents.

aandrewhill , to android in Why do you personally prefer using an Android phone?

The simple act of trying to transfer ownership of an iPhone from one daughter to another this week almost broke me. I hate how difficult they make everything.

HeavyRaptor ,

Was it more involved than sign out -> factory reset -> set up as a new phone? (I’m just curious, have been on android for a few years now)

aandrewhill ,

There were some self inflicted complications to be fair. I couldn’t fully back up the broken phone because it was in a family group with an expired payment card. My wife hadn’t had her iPhone for years so that was a pain in the arse to resolve which included waiting nearly two weeks for an email from Apple. Even when I got into her iCloud account updating the bank card failed every time, also you can’t modify a family group in the browser. I ended up borrowing a family members old iphone so I could set it up as my wifes and disband the family group, then update the payment method directly on the broken phone. We could then pay the 70p or whatever for additional storage and back it up. I couldn’t factory reset the other phone because in addition to the passcode, you also needed the screen time passcode which nobody could remember. I eventually installed iTunes on my PC and wiped it that way. I mean if you know all the security information I imagine it’s a lot easier but I wouldn’t have had this much trouble had they been android phones.

OneShoeBoy ,

Not an Apple fanboy in the slightest but one could argue that the fact it was so difficult (without knowing ALL the security details) is a feature not a bug.

aandrewhill ,

Agreed, but I wasn’t even able to reset the screen time passcode on the phone where we actually knew all the other security details.

Vaggumon , to android in What's the best android emulator for windows?
@Vaggumon@lemmy.world avatar

I personally use Bluestacks, and have never had any issues. The ads can be annoying, but once loaded they don’t bother me.

query , to childfree in Welcome, reddit refugees!

I think this needs to be redone as just childfree. The name of it now seems to be [email protected] which means that clicking on the name leads to a non-existent /c/childfree.

godless OP ,
@godless@lemmy.world avatar

Yep, I’m on it :)

Illecors , to asklemmy in test

This is from 4 years ago!

Peter_Arbeitslos ,
@Peter_Arbeitslos@feddit.de avatar

Wrong, 5 years.

Uniquitous , to startrek in Who cares, go back to reddit

Airlock’s to your left

agreyworld , to ukcasual in TV Tuesday?

God, I wish there were more “X of the week” type shows. I know breaking bad and a bunch of really great shows came out and made the golden age of serial story heavy TV happen - but man, I’m exhausted having to watch 20 hours of something to get any kind of plot resolution.

I mess the days where you could just watch 40 minutes of a show and have a whole story start to finish. So much less exhausting not having to get super invested. I don’t have the energy for serial TV shows these days!

rubikfrog OP ,
@rubikfrog@feddit.uk avatar

I blame CSI and Law and Order. I think they oversaturated us with “of the week” procedurals drama so collectively we all jumped ship to these shorter, high concept shows.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • lifeLocal
  • goranko
  • All magazines