/kbin meta

25 readers
1 users here now

Magazine dedicated to discussions about the kbin itself. Provide feedback, ask questions, suggest improvements, and engage in conversations related to the platform organization, policies, features, and community dynamics. ---- * Roadmap 2023 * m/kbinDevlog * m/kbinDesign

founded 2 years ago
826
 
 

I'm not able to find a Kbin magazine I created on Lemmy. I've tried all the tricks, e.g. to visit https://lemmy.world/c/japonic@kbin.social, to search to the full URL (https://kbin.social/m/japonic) on Lemmy, to search for "!japonic@kbin.social", etc.

All I get is a 404 or an empty search. What determines whether a Kbin magazine gets federated to Lemmy?

I figured it might just be a waiting game, but newer magazines seem to get federated.

#kbinMeta

827
 
 

The amount of apps being developed for iOS / Android is getting really crazy now and new apps keep popping up every day. Updated list below:

  • Artemis (iOS, Android, kbin, lemmy): link
  • Kbam (iOS, kbin, lemmy): link
  • Memmy (iOS, lemmy): link
  • Mlem (iOS, lemmy): link
  • Morpha (iOS, lemmy): link
  • Thunder (iOS, Android, lemmy): link
  • Beyond (iOS, Android, kbin, lemmy): link
  • Jerboa (Android, lemmy): link
  • Slide (Android, lemmy): link
  • Sync (Android, lemmy): link
  • Connect (Android, lemmy): link
  • Summit (Android, lemmy): link
  • Lemon (iOS, lemmy): link
  • Liftoff (iOS, Android, lemmy): link
  • Boost (Android, lemmy): link
  • Bean (iOS, Android, lemmy): link
  • WefWef (Web App, lemmy): link

Most apps on the list are lemmy apps, meaning they don't work with kbin. Artemis is specifically designed to work with kbin, not sure if or when any of the other ones will go in that direction or become interoperable as there are some challenges with the kbin API at the moment. Having said that, a new API is in the works (https://codeberg.org/Kbin/kbin-core/pulls/357) so things should get better with time.

Some of the apps are in a very early stage of development so it may happen that they adjust OS availability and platform support.

🚀 Donate to kbin here: https://www.buymeacoffee.com/kbin

828
 
 

Is this just not a feature that's been implemented yet, or am I missing something?

829
 
 

Not sure if I am missing something, but shouldn't magazines be here?

830
 
 

We have a slight delay in the queues, but I need to balance smooth website performance and federations for now.

#kbinMeta

831
 
 

At first I thought this is a browser issue, then I installed Twitter as PWA which works just fine as when I put the phone sideway, there should be a prompt to enter landscape mode instead of entering automatically(Unless you have the phone set to auto-rotate).

832
 
 

I made a post in this magazine introducing my 2 instances. Of course I made typos and therefore edited it. Interestingly it is now edited on kbin.social, but not on thebrainbin.org (my other instance): image .

So if I post something from instance A to a magazine on instance B and edit the post, it seems like all other instances do not get the edited post...

833
 
 

Recently started using Kbin and I find the preview images are squished when I'm looking at a magazine feed. To view full size I need to click the image to go into the post, then click again to see the full sized image.

I'm used to using RES on Reddit which would allow me to view the full image in my feed without having to go into the post.
Is there a way to increase the size or fix the ratio of images in my feed?

834
 
 

I know you have a lot going on right now, so I'm gonna cut Kbin a lot of slack. The simple ability to search, view, and subscribe to "magazines" is the best feature. But I have notes:

  1. Move OP reply box to the top of the page. Took me forever to figure out how to reply to the OP.

  2. Remove pages. Just put it all on one page, please. This just causes unnecessary loading.

  3. expand "magazines" to show what instance they are located on.

  4. Eliminate the new vocabulary. Nobody knows what a "magazine" is. Nor do they know what is an "article" in this context. The + button should just be "submit new post" and then you should be able to type text, upload media, or post a link from there.

835
 
 

Apologies if this is obvious or already a feature (or if I'm doing this wrong, it's my first post), but is there a way to create supermagazines?

For example, I could create 1 "tech" folder on my profile that will show me everything from tech@kbin.social, technology@kbin.social, technology@beehaw.org, technology@lemmy.ml, etc... Then, with 1 click, I could see everything tech-related from all across the fediverse in 1 place. Then I could have another supermagazine for news, gaming, memes…

It would be so nice not to have to go to 3 magazines on different instances that all cover the same topic just to see everything and seems like interconnecting things would be agreeable with the fediverse philosophy. Heck, it’d be neat if I could just subscribe to 1 supermagazine for gaming and get everything without the fuss of adding each instance separately. It would also make the transition for new users much easier

Is this a thing?

836
 
 

I saw a post about new kbin instances and thought: "well I could announce mine here as well", so thats what I am doing.

I recently created 2 #kbin instances:

Both are hosted by Hetzner in Germany.

There aren't a lot of magazines on there, yet (just the ones I am interested in), but thats about to change.

Signups are open, and hopefully the email verification works, but I suspect that mails will be put in the spam folder, just FYI. If anyone has problem signing up, you can just use the contact form or message me at @BentiGorlich or any of the admin accounts

(I run the mastodon server wehavecookies.social as well)

837
 
 

Recently, especially with feddit.de, there are a lot of posts in languages that are not English. This is great for adoption!, but unfortunately I have no idea what the posts are about because I don't speak German. I couldn't find a setting to hide posts in other languages either!

To make my feed better for myself, I wrote a simple user script which removes any posts that are tagged anything other than EN/ES (the two languages I can speak.

Update the script to your preferences (make sure to @match your instance), and load it up in TamperMonkey!

Here you go:

// ==UserScript==
// @name         Kbin: delete articles in other languages
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Auto-delete posts in languages you do not speak.
// @author       luphoria (https://kbin.social/u/trent)
// @match        https://kbin.social/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=kbin.social
// @grant        none
// ==/UserScript==

(function() {
  'use strict';
  const allowedLangs = ["en"]; // <-- Edit this to all of the languages you can speak / want to see in your feed. Format: ["lang", "lang", "lang"]

  let deleteUnwantedPosts = () => {
    const postTags = document.getElementsByClassName("kbin-bg");

    for (let i = 0; i < postTags.length; i++) {
      let postTag = postTags[i];
      if (postTag && postTag.textContent && postTag.textContent !== "OC" && !allowedLangs.includes(postTag.textContent)) { // OC tags are the only elements (i know of) with the same class.
        // Delete element's parent's parent's parent
        if (postTag.parentElement.children[0].textContent) {
          console.log(`Removing post labeled \`${postTag.textContent}\`: "${postTag.parentElement.children[0].textContent}"`);
          postTag.parentElement.parentElement.parentElement.remove();
        }
      }
    }
  }
  deleteUnwantedPosts(); // on load

  // for continuous feeds
  let observeDOMChanges = () => {
    const observer = new MutationObserver(function(mutationsList) {
      deleteUnwantedPosts();
    });
    observer.observe(document.body, { childList: true, subtree: true });
  }
  observeDOMChanges();
})();

838
 
 

How do I ban a user from another instance? Tried to ban, but just getting an error. We can't really block spam in our magazines if we can't stop users from posting there.

#kbinMeta

839
 
 

I've brought up a new KBIN instance, https://feddit.online

It's administrated from the Greater Boston, Massachusetts area. Everyone is welcome to sign up, so long as they follow the rules

I now, because I must be crazy, have 4 Fediverse servers running.

KBIN: https://feddit.online
Mastodon: https://hear-me.social
Calckey: https://bostonsocial.online
Peertube: https://my-sunshine.video

#KBIN #Fediverse

840
 
 

Hey, I'll try to handle the abandoned magazines / transfers as quickly as possible. However, I need to automate this process because there are too many requests.

#kbinMeta

841
 
 

Setting the homepage option to Subscribed does work on desktop but does not work on mobile, hitting the homepage button will always direct to All.

842
 
 

Hello kbin! Since there’s a lot of new users migrating to this platform, I decided to make a short guide to creating and moderating a magazine. This will be a quick and short guide since there will be a lot of new features coming soon. I might make a new guide when a few major tools come, but in the meantime, I will occasionally update this guide when new feature roll out. If I misinterpret something or there’s something that should be here, feel free to comment them and I will update the guide. Thank you.

Explaining magazines

Since @kuontom already explained what a magazine is in his guide, I will just use the explanation they used in their guide. I will only show the basic explanation of magazines, so if you need magazines to be explained more, check out kuontom’s guide.

Magazines are topical forums on kbin, similar to subreddits on Reddit, where users can add threads or microblogs related to the topic. On non-kbin instances, forums may be termed differently. For example, Lemmy instances have 'communities'. However that doesn't mean you can't access forums of lemmy instances federated with kbin.social, they'll simply show up as magazines here.

Creating a new magazine

Before creating your own magazine, make sure the magazine you want to create wasn’t already created by another user. To search for magazines, simply click on “Magazines” on the navigation bar at the top. On mobile, the navigation bar can be accessed by clicking on the trigram on the top left of the page. You can now search to see if someone already created the magazine you wanted. If someone already made a magazine you wanted, I encourage you to join their magazine instead of creating a new one to avoid redundancy and confusion for other users.
If you don't find a magazine with a particular name on kbin, you can create your own. Find the “+” icon near your username on the top right of the page, a dropdown will show up. Click on “Create new magazine”. Here you will set up the basic information for your magazine, like the name, title, description, and rules. Here are the sections explained in more detail:

Name
This is where you will set the name of your magazine. Names cannot have spaces in them. The name you set will be attached to both the URL and the magazine nametag. For example, when you set the name of your magazine to “kbinRequests”, the URL page for that magazine will be https://kbin.social/m/kbinRequests, and the nametag for that magazine will be @kbinRequests@kbin.social. Setting an appropriate name will allow users to search for your magazine. When picking your name, be sure you are certain of a name since you cannot change it later!
(NOTE: Currently, names in kbin are case-sensitive, meaning https://kbin.social/m/RedditMigration will work but https://kbin.social/m/redditmigration will not work. This will be fixed in the future.)

Title
Not to be confused with Names, Titles are a short phrase you can use to describe your magazine. Titles don’t have to be the name as your name and can have spaces in them. For example, the magazine /m/RedditMigration has the title “RedditMigration to the "Threadiverse"”. Notice how the title is different from the actual name of the magazine. Titles are there to describe what your magazine is to new users.

Description
Description are short blurbs that you can use to describe your magazine. This part is self-explanatory, so I won’t go to deep on this one. Do keep in mind that you cannot use images in the description or the rules.

Rules
This is where you will layout the rules for your magazine. Like with the description, you can’t use images here. Again, this part is self-explanatory, so I won’t explain it much. When making your rules, make sure to use the markdowns to make is easier for users to read it.

+18 / NSFW
This checkbox is for when you’re making an NSFW magazine. If the magazine your making is NSFW, be sure to check this box for other users who don’t want to see NSFW content.
Everything here (except for the name) can be changed later if you want to, so don’t worry about finishing everything at once.

The Magazine panel

After you finished setting up the basic information for your magazine, there is still more things you should add to your magazine to make it more unique. This is where the magazine panel comes in. Head over to your magazine and click on “Magazine panel” It will be located to the right side of the screen (or towards the bottom if you’re on mobile). Here you can set up more things for your magazine and see more detailed information like reports and bans. Keep in mind that only the creator of the magazine can access the Magazine panel. Any other users that have been promoted to mod will not have access to the panel. This might be changed in future updates.

General
Here you can change the basic information for your magazine that you just previously setup. Here you can change everything (except for the name) if you like.

Reports
Here you can see every report user made in your magazine. When a user makes a report in your magazine, the user will need to reason for reporting the post. When a user sends a report, they will show up here. A link to the post in question will show along with the reason the user made for the report. Here you can decide to reject the report, approve it (meaning the post in question will be deleted), or to ban the user who made the original post. A report will look like this.

Moderators
Here you can promote other users to mod for your panel. You can add anyone from kbin as mod and remove them. Currently, you can add anyone, and they will be automatically added without the other user agreeing, but this might be changed in the future.

Badges
While there is no official answer to what badges are, the main theory is that badges are like flairs on Reddit. Badges allow users to categorize their posts to help everyone organize their content and makes browsing magazine less confusing. But this is just a theory since there is no official explanation. Hopefully @ernest can clarify this.
Tags

Like hashtags in threads, tags allow other posts from the fediverse to show up in your magazine. When someone makes a microblog with the same tags you put here, it will show up in your magazine, even if they didn’t make it in your magazine. Tags are useful for finding content from other users that is relevant to your magazine. If you don’t want this feature, you can just not any tags.

Bans
Here you can ban users from your magazine. When you ban someone from your magazine, they can no longer post or comment from your magazine. You can set a reason and an expiration date for the ban. When you ban someone, the banned user will get a notification of the magazine they were banned on and the mod that banned them.

Trash
Here you can view every post a mod has deleted. You can view the title of the post and the user who originally made the post. You can restore the post if you think it shouldn’t be deleted.

Appearance
This is where you will customize the look of your magazine.

Icon is the main picture of your magazine. It will show up on the sidebar and in https://kbin.social/magazines.
(NOTE: Icons have a max size of 600x500 instead of 600x500, which is why some icons look squished. This will be fixed in the future. You can adjust your icon for this or set your icon size to 500x500 as a temporary fix for this.)

You can fully customize your magazine using CSS or JS. I won’t go into how since it isn’t the point of this guide, but you can use other magazines like /m/kbinStyles to help you figure it out.
Here are a few examples on what you can do with stylesheets:
1
2
3
Statistics
Here you can see various statistics about your magazine, like content creation, votes, and views. You can sort by time and see how your magazine performs in certain aspects. It’s a big rough right now but will improve in future updates.

Resources

Here are a few resources to help moderate and manage your magazine:
BotIt is a tool for automatically reposting content from Reddit to kbin.
/m/kbinStyles is a magazine for customizing your kbin experience and look of your magazine.
/m/ModHelp is a magazine for helping other fellow moderators.
/m/quickstart is a magazine for finding guides about kbin and other relevant information.
Issues page for posting suggestions and bugs.

Conclusion

Welcome to the end of the guide. If I misinterpreted something or missed something, feel free to comment it. I will hopefully not forget to update this guide when new tools and feature come out.

843
 
 

I see that Kbin offers an RSS feed for all content on the server or for a specific magazine. But can I also get a single RSS feed for all my subscriptions?

844
 
 

On KBin we have the ability to add tags to posts. These can either be directly added using the ~~“pound” sign~~ octothorpe, as in #KbinMeta. You can also add tags using the “Tags” field when creating an article, link, or photo. The second method will append the tags to the end of the post when the post is federated.

This is invaluable for your post to be seen on other platforms, especially those without any algorithms, such as Mastodon.

KBin magazines can also have tags associated with them. This will associate content from the Fediverse that uses those tags with the magazine. Also, very useful for smaller magazines.

If you want to view content related to a specific tag, you can visit <Kbin instance>/tag/<name of tag>, ie: https://kbin.social/tag/kbin

Pleas tag you posts!

Edit:
Fixed some controversial terms: octothorpe

845
 
 
846
 
 

If only there was a way to combine them.

847
 
 
848
 
 

OK so when I downvote something it turns red. This is great and perfect. Is there a way I can have something turn blue when I upvote it? I keep upvoting posts 2x because I'm not sure if I've already upvoted them or not.

#kbinMeta

849
 
 

I don't see a way to mark something as a favorite, and when I go to https://kbin.social/fav I don't understand why it is I see the magazine I do which are different from all and subscribed.

As for the top bar, it seems to just be random magazine that sometimes even empty. Is there a way to control what shows up there?

850
 
 

Because currently, it seems like the only thing it's recording are downvotes. Meanwhile upvotes are completely ignored, leading to pretty much every profile I see having a negative reputation.

Also, I have a very fragile ego and my -6 reputation hurts a bit.

view more: ‹ prev next ›