Ori

joined 11 months ago
[โ€“] [email protected] 1 points 11 months ago

I feel like it was too much. It ๐Ÿ’ฏ fits Klingon style, but they're almost too foreign.

[โ€“] [email protected] 6 points 11 months ago

Some of these things are being discussed at the Codeberg. There's some issues opened like #406 - Rename "Microblog" in header to "Posts" for consistency., or other ones requesting feedback like #680 - Rename 'posts' to 'microposts' everywhere. Truly, the best place to put these ideas or thoughts is on the Codeberg. That's where the action is - but it never hurts to discuss here too, just may not be passed along.

[โ€“] [email protected] 2 points 11 months ago

Meh. Let them have their fun. Plenty of other things to be infuriated at.

[โ€“] [email protected] 3 points 11 months ago

You'd probably have the best luck on the Codeberg repository or on Matrix. Though, I'm sure one of the primary contributors may see this as well.

[โ€“] [email protected] 2 points 11 months ago

Some friends from high school and I were in an Cisco A+ class together. One night we ordered pizza, and after finishing it - we took the larger of the boxes, cleaned it out, and turned it into a server. We ended up running a few different game servers on there with the first being CS:Source, I believe. When that died, I started a 1&1 VPS that ran a Dark Age of Camelot freeshard for a while.

[โ€“] [email protected] 0 points 11 months ago (1 children)

Just redirects me to kbin.social homepage. I do recall seeing this before (in Matrix, I believe?) and it had worked then, or rather it gave me the "us news" magazine.

 
[โ€“] [email protected] 2 points 11 months ago (1 children)

I switch between kay-bin and kebin (like Kevin with a b).

[โ€“] [email protected] 2 points 11 months ago

There's one in alpha over @ArtemisApp , but as for a publicly available one, I'm not aware of one - no. Most people are happy with the PWA though.

[โ€“] [email protected] 13 points 11 months ago (5 children)

A good visualization of this can be found on FediDB. Active users on kbin has recently surpassed those on Lemmy.

[โ€“] [email protected] 10 points 11 months ago

For users: Please do not blindly enter credentials in scripts that ask for them. I haven't had a chance to go through this script, but just do your own due diligence!

[โ€“] [email protected] 2 points 11 months ago (1 children)

There's a lot of good discussion around the logo, it's origin and how it's evolving, going on in the codeberg.

[โ€“] [email protected] 0 points 11 months ago (1 children)

I'd be happy for someone to correct me if I'm wrong, but I feel as though you're pretty much right with your last statement. Generally a project becomes forked and when the source is updated, you integrate the new changes into your now separate fork.

 

I'm looking for a self hosted dashboard to monitor various services and logs for multiple servers. A quick search turned up cockpit, but I was curious if anyone had thoughts about it, or if there were better alternatives.

 

Creating a new thread as I've moved instances and can no longer update the old one. Sorry about that!

kbin-mod-options

Description

The purpose of this script is to allow mod authors to more easily implement settings and features. Only new feature notes will be included in this document. To view usage, please refer to the README.

Patch Notes

  • 0.1.0 - Initial Release

  • 0.2.0 - Breaking change. By default, settings will be collapsed as a drawer.

    • 0.2.2 - Compatibility fix for KUP (Kbin Usability Pack) 0.2.1+.
    • 0.2.3 - Style changes + animations.
    • 0.2.4 - Bug-fix for Kbin/kbin-core#666.
  • 0.3.0 - New feature: Observers!

Observer

This is for making infinite scroll support easier for mod creators and not an actual setting module.

kmoCreateObserver({<funcToCall: yourFunctionNameHere>[, nodeType: 'id'][, nodeToWatch: 'content'][, watchSubtree: false]});

NOTE: You're passing an object here that allows for named arguments. Please review example closely.

  • funcToCall - required
  • nodeType - optional
  • nodeToWatch - optional
  • watchSubtree - optional

Example

// Create observer for main content feed.
cont myObserver = kmoCreateObserver({funcToCall: updateNewContent});
// Example function
function updateNewContent() {
    // Do stuff here
}
// Stop observing, maybe your addon is toggled off?
function shutdown() {
    myObserver.disconnect();
}

// Maybe you want to watch perry.dev's subscription panel list
const mySubObserver = kmoCreateObserver({funcToCall: subUpdate, nodeType: 'class', nodeToWatch: 'subscription-list'});
// Example function
function subUpdate() {
    // Do stuff here
}
// Stop observering - doesn't have to be in a function, but it makes life easier.
function shutdown() {
    mySubObserver.disconnect();
}

view more: next โ€บ