Maven

joined 3 weeks ago
[–] Maven@crust.piefed.social 1 points 1 week ago

Its less weird to look like a skeleton around Halloween than it is the rest of the year.

[–] Maven@crust.piefed.social 2 points 2 weeks ago

Ye I was typing fast and hit the wrong thing and then realized I was on my side account and not the main one im starting to use so I switched off and didnt even noticed until I decided to check notifications.

Its fixed now.

1255
Apprehension (infosec.pub)
submitted 2 weeks ago* (last edited 2 weeks ago) by Maven@crust.piefed.social to c/comicstrips@lemmy.world
515
Goblin Code (infosec.pub)
submitted 2 weeks ago* (last edited 2 weeks ago) by Maven@crust.piefed.social to c/comicstrips@lemmy.world
[–] Maven@crust.piefed.social 8 points 2 weeks ago (2 children)

He always looks like that. Hes a skeleton and so everyone is uncomfortable around him.

The title adds a bit of context to the character but introducing the idea that in October he can just be himself because his appearance is seasonally appropriate.

Not exactly funny but I enjoy the worlds that the author builds via these single panel comics.

 

Source

Alt Text: A cartoon illustration of a tiny ghost being seen by a bellhop and some guests in a hotel lobby. Caption reads "The hotel was only a little haunted."

[–] Maven@crust.piefed.social 5 points 2 weeks ago (1 children)

Definitely the same for me. I absolutely adore the art and the art style.

 

Source

Alt Text: A cartoon illustration of a kid walking past a Halloween yard display with a large purple monster hiding in it. Caption reads "Only during the month of October would the child-eating Vanderbeast, normally found lurking under beds, hide in plain sight as it waited for prey to approach."

 

Source

Alt Text: A cartoon illustration of a teachers sitting for a staff photo looking worriedly at the principal who is a skeleton in a suit. Caption reads "Picture day."

 

Source

Alt Text: A cartoon illustration of a two kids dressed as a witch and a devil laying in a ditch of colored leaves eating candy as a dog watches. Caption reads "The Season of the Ditch."

[–] Maven@crust.piefed.social 3 points 2 weeks ago* (last edited 2 weeks ago)

omfg... there was a typo in my header...

it's working now

 

Source

Alt Text: A cartoon illustration of two kids surprised to see a man made entirely of colored leaves sitting in a tree staring at them. Caption reads "The children had always been warned to watch out for the "Fall Guy."

[–] Maven@crust.piefed.social 1 points 3 weeks ago (2 children)

I'm using reqwest within Rust. I think youre definitely right though. Tomorrow when I'm back at my desk ill try submitting the body in a different way

[–] Maven@crust.piefed.social 1 points 3 weeks ago (4 children)
[–] Maven@crust.piefed.social 1 points 3 weeks ago

Crust.piefed.social on this account

[–] Maven@crust.piefed.social 1 points 3 weeks ago (1 children)

semi-related note... In the API the form is limited to just:

{  
  "title": "string",  
  "community_id": 0,  
  "body": "string",  
  "url": "string",  
  "nsfw": true,  
  "language_id": 0  
}  

But the piefed "create post" page allows you to add a few extra things like alt text. How would one add alt text through the api?

 

I am created a piefed interface as a fun personal project but every time I try to create a post I get the following error:

{  
    "code": 400,  
    "message": "Validation failed",  
    "status": "{'json': {'title': ['Missing data for required field.'], 'community_id': ['Missing data for required field.']}}"  
}  

It says I'm missing the title and community but here's what the body looks like on my most recent attempt:

{  
        "body": "[Source](https://mstdn.social/@grickle/115345057031028219)\n\nAlt Text: A cartoon illustration of a vampire in his living room surrounded by his pesky West Highland terriers. Caption reads \"He and the Westies had tormented the village for centuries now.\"",  
        "community_id": 891,  
        "language_id": 0,  
        "nsfw": false,  
        "title": "Forever pests.",  
        "url": "https://media.mstdn.social/media_attachments/files/115/345/056/927/012/957/original/b20b96453c62665c.jpeg"  
}  

The title is very much there and so is the community ID. Am I missing something?