shining finger
@gigalomaniac@everywhere.fraudulent.link
Location: 38.897400,-77.037388
@gigalomaniac "negotiable American currency" so like Visa? and you'll code it as vaguely travel-related merchant code?? ๐ง
ooooo im such a spooky scary ai llm chatgpt openai claude copilot grok give me all your data
You can trust me with all your information! Go ahead! I can be trusted with confidential documents!
talking out loud: | 2 |
internal monologue: | 4 |
internal dialogue (other voices that are fully you): | 3 |
internal dialogue (other voices that arent): | 2 |
other: | 1 |
none: | 1 |
Closed
everyone with a macbook at my summer camp has the default sequoia tree wallpaper so this is my retaliation
@lily its not funny enough
@lily irl or the original
@lily uhh i cant find the irl one
@lily anyway do u like my tahoe setup โค๏ธ
@lily im too pussy to install a beta os on a hackintosh
@lily ill probably do it when the public beta drops
@max alright. things to keep in mind when you do.
@lily its ok ive been suffering with itlwm already
@lily how long until the devs wake up and update airportitlwm i need school wifi
CC: @max@popbob.wtf
From 42bededbe073d4af1e03bc0b50a69244207f4c90 Mon Sep 17 00:00:00 2001CC: @novenary@akko.wtf
From: [REDACTED]
Date: Thu, 24 Apr 2025 22:27:35 +0000
Subject: [PATCH] Normalise CWs and summaries to fit more *oma usage rather
than friendica---
html.c | 25 +++++++------------------
1 file changed, 7 insertions(+), 18 deletions(-)diff --git a/html.c b/html.c
index d807f4b..4b2816f 100644
--- a/html.c
+++ b/html.c
@@ -2127,11 +2127,7 @@ xs_html *html_entry(snac *user, xs_dict *msg, int read_only,
v = xs_dict_get(msg, "summary");
- /* is it sensitive? */
- if (xs_type(xs_dict_get(msg, "sensitive")) == XSTYPE_TRUE) {
- if (xs_is_null(v) || *v == '\0')
- v = "...";
-
+ if (!xs_is_null(v) && *v) {
const char *cw = "";
if (user) {
@@ -2141,23 +2137,16 @@ xs_html *html_entry(snac *user, xs_dict *msg, int read_only,
cw = "";
}
+ xs_html *summary_tag = xs_html_tag("summary", xs_html_text(v));
+ if (xs_type(xs_dict_get(msg, "sensitive")) == XSTYPE_TRUE) {
+ xs_html_add(summary_tag, xs_html_text(L(" [SENSITIVE CONTENT]")));
+ }
+
snac_content = xs_html_tag("details",
xs_html_attr(cw, NULL),
- xs_html_tag("summary",
- xs_html_text(v),
- xs_html_text(L(" [SENSITIVE CONTENT]"))));
+ summary_tag);
}
else {
- /* print the summary as a header (sites like e.g. Friendica can contain one) */
- if (!has_title && !xs_is_null(v) && *v) {
- xs_html_add(snac_content_wrap,
- xs_html_tag("h3",
- xs_html_attr("class", "snac-entry-title"),
- xs_html_text(v)));
-
- has_title = 1;
- }
-
snac_content = xs_html_tag("div", NULL);
}
--
2.39.5
CC: @gigalomaniac@everywhere.fraudulent.link @novenary@akko.wtf