Posts
1429
Following
133
Followers
172
of the @kitsunecafe@tech.lgbt notoriety

"what a fascinating yet quietly terrifying being neofox_pleading" @kirakira@furry.engineer
"turbo queer" @kasdeya@cryptid.cafe

eli (ˈe̝ːli), vampire kitsune

If human nature is bad then hierarchy should be abolished because those on the top will inevitably abuse their power. If human nature is good then there is no need for hierarchy because people will do good things without being dominated by others. Either way, we should have anarchy. If people are too evil to rule themselves then they are far too evil to rule other people.

1
16
31
re: mental health, ableism
Show content

@OctaviaConAmore @mynameistillian @gavi “wait supporting mental health means i cant use stigmatized disorders for political expediency and personal convenience?”

0
0
6

people are always like "support mental health" until its the non-cutesy mental illness like bpd, bipolar, or schizophrenia

11
8
5

@49016 @kopper @catgirl_so guess i’ll be causing my first soon nkoShrug

0
0
2
nonsense about body parts
Show content

somebody said a thing cost them an arm and a leg, but they still had all their arms and all their legs and that got me thinking: where did they even get an extra arm and an extra leg, like I guess an arms dealer, but what about the leg?

0
4
0
lewd
Show content

This one wants to be trained neocat_pleading_reach

1
2
1
re: 18+? tf
Show content

@kirakira “mr ben, mr jerry, it’s back again”

0
1
3

eli (ˈe̝ːli), vampire kitsune

wplace is just a psyop by toby fox to advertise deltarune

0
6
24

@catgirl_so very helpful!! thank it!! neocat_pat this also explains a lot about -key forks

1
0
4

@rowan mhm! here's a quickstart guide for incorporating activitypub into new projects!

  1. neocat_floof_explode
2
5
2

@vivi love and protect

0
0
2

eli (ˈe̝ːli), vampire kitsune

im not supposed to be reading the spec they publish!! thats for the egg head forgejo users to argue about, im supposed to be cloning a “shadow666/activitypub-starter” repo that hasnt been touched in 6 years and then filing issues on the AP issue tracker about it

0
0
5

eli (ˈe̝ːli), vampire kitsune

wow can you believe its “give lesbians one million dollar month” again

1
8
19

eli (ˈe̝ːli), vampire kitsune

does anyone have a good primer on making activitypub enabled apps? i have an idea that i wanna get working but i don’t feel like reading 7,000 pages of activity pub spec

2
1
11

eli (ˈe̝ːli), vampire kitsune

@kasdeya @desea yeah, you can overwrite any variables from bulma at :root and it will take effect through the whole library

https://bulma.io/documentation/customize/with-css-variables/

1
0
1

eli (ˈe̝ːli), vampire kitsune

yeah

0
2
5

eli (ˈe̝ːli), vampire kitsune

Edited 7 months ago
0
1
8

eli (ˈe̝ːli), vampire kitsune

Edited 7 months ago
pseudocode, not screenreader friendly probably
Show content

@kasdeya i’m trying to make a custom ui element which accepts a list of arbitrary data, then binds that data to templates at runtime

its kinda like this (sorry if this is fucked up or doesnt make sense)

# a protocol defining some thing which can be bound to some property
class Bindable(Protocol):
  def bind(value):
    raise NotImplementedError

# data that can be bound to a bindable object
class Property(Protocol):
  @property
  def value(self):
    raise NotImplementedError

  def has_updated() -> bool:
    return True

# some ui element which can be cloned/instantiated to make copies
class Template(Protocol):
  def instantiate() -> Bindable:
    raise NotImplementedError

class ListUi:
  _data_source: list[Property]
  _template: Template
  _ui_elements: list[Bindable]
  _capacity: int
  _index: int
  
  @property
  def data_source(self):
    return self._data_source
 
  @property.setter
  def data_source(self, value):
    this._data_source = value
    self.rebind_items()

  def bind_items(self):
    visible = self._data_source[index:self._capacity]
    iter = zip(self._ui_elements, visible)
    for element, item in iter:
      element.bind(item.value)

basically i just want to have a list of properties that will update their respective bound template when they change. unity has a pretty featureful system for handling this but Got Damb its complicated

1
0
2

eli (ˈe̝ːli), vampire kitsune

jesus christ unity’s ui data binding system is complicated

1
0
3
Show older