kbin.social

Nominel, do kbinDevlog w RTR#50 Plans for the upcoming week
@Nominel@kbin.run avatar

I hope you get well soon!

daredevil, do kbinDevlog w RTR#50 Plans for the upcoming week

Get well soon :)

ThatOneKirbyMain2568, do kbinMeta w Two requests for microblog incorporation into the main feed.
@ThatOneKirbyMain2568@kbin.social avatar

The first request would definitely be a nice setting to have.

As for the second one, I think microblog posts are pretty easy to distinguish from threads already, as everything's organized completely differently. There's no title, the avatar is in a different spot with a different shape, the upvote button is in a different spot, there's no downvote button, etc. I think changing the color would just be visually jarring more than anything.

Eggyhead,
@Eggyhead@kbin.social avatar

That makes sense. I’m actually not used to microblogs, and I never actually got into Twitter, so the distinguishing characteristics don’t really stand out to me as much. I think the color variation would help me better process what I’m looking at.

Pamasich, (edited )

I think the color variation would help me better process what I’m looking at.

You can change the color yourself btw. The traditional method is to install the Stylus extension/addon, but I think kbin now lets you define your own styling in your profile settings, though I haven't tried it. (tried it now and this doesn't really seem possible there, has the same selector deletion issues as magazine css)

In the HTML code, microblog posts and threads are represented differently. Posts are blockquote, while threads are article. This makes it easy to restyle them via userstyles.

So you should be able to just

div#content {
    > article {
        /* thread styling */
    }
    > blockquote {
        /* microblog post styling */
       background-color: red;
    }
}

You can also define the color in rgb rgb(255,0,0) or hsl (hsl(0,100%,50%)).

Eggyhead,
@Eggyhead@kbin.social avatar

I am very pleased that this is possible, but I don’t even know what words to use to even ask how to do something like that.

Pamasich,

The images I'm using here probably won't work as embeds, but opening them as links should work.

Depending on if you use Firefox or a Chromium-based browser (Chrome, Edge, and almost all the others), get yourself the Stylus extension (chromium) or addon (firefox).

Once installed in your browser, open the extension by clicking on the icon next to your address bar. If it's not there, there's a puzzle piece button to open a list of all your extensions where you can click on it. I'm writing this from an Edge perspective, so for other browsers, especially Firefox, this might not be entirely accurate.

This opens up a menu where your current styles are listed and can be turned on/off (well, the list is empty for now of course), and there's buttons to "Manage" and "Find styles".
Above those buttons, there's a link to the current page. Click on the kbin.social part of that link.

This should open up the editor in a new window.
Just copy and paste the following code into that window.

div#content {
    > article {
        /* thread styling */
    }
    > blockquote, > blockquote + .comments > blockquote {
        /* microblog post styling */
        background-color: red;
    }
}

Give the style a name to the left and hit the yellow "Save" button. The site will update in real time, you shouldn't even need to reload it for the changes to take effect after saving. In fact, after saving it once, you don't even have to keep saving it after every change in my experience.

I've changed the above code a bit to also cover the replies to posts, that's what the .comments stuff is about.

This will give you a very red background. I just chose this for the example to make the change obvious to see at a glance. You can replace the red with another color name, or an RGB or HSL value for a more granular choice.

I recommend using HSL if you want to tweak the color later without having to open up a color picker. You just choose a base color, how saturated it should be, and how light you want it. And optionally the transparency.
The HSL equivalent for red is hsl(0,100%,50%).

If you just want microblog posts to be a bit lighter or darker (depending on your theme) than threads, you can use hsla(0,0%,100%,0.15) (this makes them lighter, change the 100% to 0% for darker). Tweak the transparency (the last value) to change the intensity of the color change.

Besides the background color, you can also change other CSS properties. Just add additional lines in the pattern property: value;.
For example, you can set a border using border: 1px red solid;, which creates a red solid border of 1 pixel width.
I like to use this site as a reference myself for what properties exist and how they're used.

shazbot,

New KES mod?

Pandantic, do kbinMeta w if i delete a post from my mag that is from a user from lemmy, will it be removed on both ends (both kbin and lemmy)?
@Pandantic@midwest.social avatar

This is only from what I have seen and I have no knowledge of how federation works:

No. Ex: there have been many spam posts on food@kbin.social that I made a post about. I found out from that post that they were removed from the kbin mod, but I could still see them here on Midwest.social.

See this post for more info. There is also a link in there about this known issue.

hallucination,

well shit, i regret making it now if i can't even moderate it

projectmoon, do kbinMeta w if i delete a post from my mag that is from a user from lemmy, will it be removed on both ends (both kbin and lemmy)?

It depends on what the remote server does with the federated delete command. You should generally assume that anything you post to the fediverse is permanent.

testing, do kbinMeta w The page select arrows don't work in the All Content view
@testing@kbin.social avatar

@ThatOneKirbyMain2568
truly a long time issue! arrows work for the 2nd page only > same problem occurs in the microblogging section: arrows do not work

originalucifer, do kbinMeta w Could we get something like PieFed's "Add Remote" button?
@originalucifer@moist.catsweat.com avatar

how is this different than the subscribe button?

i get all kinds of new communities by just clicking into the remote community, and then clicking subscribe

edit: aaww maybe you just dont like where you currently type it, and want to type it somewhere else? i spose. i agree the interface currently isnt very clear

ThatOneKirbyMain2568,
@ThatOneKirbyMain2568@kbin.social avatar

i get all kinds of new communities by just clicking into the remote community, and then clicking subscribe

Maybe you misunderstand what I mean. Right now, if I were to create a new community on lemmy.world called /c/thatonekirbymainisawesome, it wouldn't show up if I searched for it here on the kbin.social magazines page. That's because kbin.social currently doesn't know that this community exists and thus isn't fetching anything from it. The same goes for any other two instances. If you want a non-hypothetical example, go to sh.itjust.works and search "geometrydash". You won't find /m/geometrydash (or at least I didn't at the time of making this comment). If you go to https://sh.itjust.works/c/geometrydash@kbin.social, you just get an error, because sh.itjust.works doesn't know about geometrydash@kbin.social yet.

To fix this, someone needs to essentially tell an instance, "Hey, this community over here exists, and you should start fetching stuff from it." On Kbin, this is done by putting the community's address in the general search bar. So if I were to search "thatonekirbymainisawesome@lemmy.world" on kbin.social's, that community would finally appear, and I'd be able to subscribe from it and see any posts made after that point.

What I'm suggesting is that instead of having to type the full community address in the normal search bar (which can be unintuitive), there should be a dedicated interface for adding remote communities (i.e., letting your instance know that communities on other instances exist). PieFed does this with its "Add Remote" interface, and I think it'd be nice for Kbin (and Lemmy as well) to have something similar.

originalucifer,
@originalucifer@moist.catsweat.com avatar

my subscriptions have been mostly coming through posts about new communities.

when someone posts a link to a remote, they are formed in such a way that my mbin instance automagically searches for, creates and dumps me into that newly created remote community. im sure its just a part of its search/routing.

at that point, the instance is subscribed to the remote community.

then i click 'subscribe', which subs my specific account.

edit: yep, theyre crafting the links to force it through the processor like this

/search?q=photorestoration@lemmy.world

more literally: /search?q=photorestoration@lemmy.world

ThatOneKirbyMain2568,
@ThatOneKirbyMain2568@kbin.social avatar

True, and the same happens here on kbin.social. However, in the case where there isn't a link to automatically do the search for you, I still think it'd be helpful to have something more intuitive than the community only appearing when the exact address is put in the general search bar.

EDIT: To give an example where this would be useful, what if you're someone on a newer Kbin instance and want to add an existing community? You'll have to know the method of doing it, and if you don't, you're out of luck. Having a dedicated button and interface for this would make it much more intuitive. When I saw PieFed's "Add Remote" button, I immediately got what it did, whereas I still have no clue how to make Kbin communities visible on most Lemmy instances.

b00m, do kbinMeta w [UPDATE] Issues with the functioning of kbin.social
@b00m@kbin.social avatar

I'm not seeing any new posts from any instance or even kbin. Had to click on your user profile to see that something new was posted in m/kbinMeta

LollerCorleone, do kbinMeta w Issues with the functioning of kbin.social
@LollerCorleone@kbin.social avatar

Threadiverse is still in its nascent stages of development, and it is even earlier stages for kbin. Anyone who have been around in the internet long enough knows that these issues are common at this stage. People who are complaining are failing to realise that this is still just a passion project of a single individual who is really not making any real profits in return, and is not a multi-billion enterprise with server farms of its own across the world. Even Reddit and Twitter had lots of such hiccups when they started out.

Thanks for all the work you are doing, Ernest! Always happy to be here!

LollerCorleone, do kbinMeta w [UPDATE] Issues with the functioning of kbin.social
@LollerCorleone@kbin.social avatar

Thank you!

olorin99, do kbinMeta w Do we have a kbin discord server?
@olorin99@kbin.social avatar

There is a matrix space for kbin.
kbin-space:matrix.org

Jezebelley3D, do kbinMeta w [UPDATE] Issues with the functioning of kbin.social
@Jezebelley3D@kbin.social avatar

Thanks for the awesome website, Ernest!

livus, do kbinMeta w [UPDATE] Issues with the functioning of kbin.social
@livus@kbin.social avatar

@ernest thanks, it's wonderful.

rynzcycle, do kbinMeta w [UPDATE] Issues with the functioning of kbin.social

As an aside, I downloaded one of the Lemmy apps to get my fix while things were having issues here. And while it wasn't bad, I'm definitely glad to be back. Huge appreciation for the function and form of Kbin and the tremendous amount of effort put in to keep it awesome.

NikkiNikkiNikki, do kbinMeta w [UPDATE] Issues with the functioning of kbin.social
@NikkiNikkiNikki@kbin.social avatar

Website working great today, thanks Ernest <3

  • Wszystkie
  • Subskrybowane
  • Moderowane
  • Ulubione
  • Gaming
  • muzyka
  • FromSilesiaToPolesia
  • test1
  • slask
  • krakow
  • rowery
  • esport
  • fediversum
  • nauka
  • sport
  • NomadOffgrid
  • Technologia
  • niusy
  • Psychologia
  • antywykop
  • Spoleczenstwo
  • Blogi
  • lieratura
  • informasi
  • retro
  • motoryzacja
  • giereczkowo
  • MiddleEast
  • Pozytywnie
  • tech
  • shophiajons
  • warnersteve
  • Wszystkie magazyny