User avatar
kopper colon_three @kopper@not-brain.d.on-t.work
3mo
they call it redis because you can only store red data there if it's any other color youre are screwed this is true dont look it up
3
1
1
0
User avatar
pancakes nonbinary_cat @pancakes@meow.company
3mo
@kopper i made a json schema for valid redis data
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Red",
  "description": "Red color",
  "type": "object",
  "properties": {
    "r": {
      "description": "Red channel",
      "type": "number",
      "exclusiveMinimum": 0
      "maximum": 1
    },
    "g": {
      "description": "Green channel",
      "type": "number",
      "minimum": 0
      "maximum": 0
    },
    "b": {
      "description": "Blue channel",
      "type": "number",
      "minimum": 0
      "maximum": 0
    }
  },
  "required": [ "r", "g", "b" ]
}
1
0
3
0

User avatar
kopper colon_three @kopper@not-brain.d.on-t.work
3mo
@pancakes bug: this can store black data as well
1
0
1
0
User avatar
pancakes nonbinary_cat @pancakes@meow.company
3mo
@kopper ty, fixed in edit
:grine@not-brain.d.on-t.work:1
0
0
1
1