The Pub Discussion Board

Get your favorite beverage, sit back, and join in the discussion

You are not logged in.

#1 2024-12-06 06:32:41

Bridget
Barmaid
From: The Internet
Registered: 2006-09-09
Posts: 868
Website

Dead Messenger, The

The Dead Messenger

Amy's having a slow day when a John picks her up off a street corner.  He takes her to a motel and they start to have fun... but he isn't a normal John, he's been hired to send a message, and unfortunately Amy doesn't need to be alive to pass it on.

Caution: While there is plenty of consensual sex to begin, but it turns sharply as the story progresses.


Please read The Mystic Wolf Pub Critiquing Guide.

SITE CONTENT POLICY:  The administrator of this site will not reject, remove, or censor any story posted to this site based on the story's content.  No story shall be removed except for purely technical reasons (which will be worked out with the author so that the story can be reposted as quickly as possible), or due to a direct order from the site's hosting provider, a law-enforcement entity, or the story's owner.

Offline

 

#2 2024-12-06 20:09:15

Eric Storm
Pub Owner
From: New Port Richey, FL
Registered: 2006-09-12
Posts: 5910
Website

Re: Dead Messenger, The

Based solely on the description and the conversation in Discord, might this not need the "sm" code?

Eric Storm


Please Remember:  The right to Freedom of Speech does not carry the proviso, "As long as it doesn't upset anyone."  The US Constitution does not grant you the right to not be offended.  If you don't like what someone's saying... IGNORE THEM.
----
Facebook page

Offline

 

#3 2024-12-07 01:54:52

Saran
Inebriated
Registered: 2023-09-19
Posts: 30

Re: Dead Messenger, The

Possibly...  I didn't add it because it's not really part of the sex act itself.  There is definitely pain involved, just not really part of the sex.

I can add it.

Offline

 

#4 2024-12-07 02:32:16

Eric Storm
Pub Owner
From: New Port Richey, FL
Registered: 2006-09-12
Posts: 5910
Website

Re: Dead Messenger, The

Up to you.  I haven't read the story, so I was speaking only from what I'd heard through conversation.

Eric Storm


Please Remember:  The right to Freedom of Speech does not carry the proviso, "As long as it doesn't upset anyone."  The US Constitution does not grant you the right to not be offended.  If you don't like what someone's saying... IGNORE THEM.
----
Facebook page

Offline

 

#5 2024-12-12 19:49:41

abaddon.pale
Inebriated
Registered: 2018-09-11
Posts: 87

Re: Dead Messenger, The

not sure why you have 4 line breaks between each paragraph.

beyond that.. Interesting 1st Person, Second Person POV.. not sure I have seen that before.

Overall a very disturbing and dark story. But as a reader once told me.. While it's not my cup of tea, you caused an emotional reaction and as such.. that's good writing.

(posted from Chapter 1)

Offline

 

#6 2024-12-17 16:38:03

Saran
Inebriated
Registered: 2023-09-19
Posts: 30

Re: Dead Messenger, The

I think the formatting is a bit of an oddity...  This was posted as text instead of HTML so I think that's part of it.  (I think my original had one line break between each, but the site makes each of those a paragraph...  but that's just a guess.  I should probably fix it)

Thanks for the comments.  It is certainly meant to be a visceral story.

Offline

 

#7 2024-12-17 19:27:27

Eric Storm
Pub Owner
From: New Port Richey, FL
Registered: 2006-09-12
Posts: 5910
Website

Re: Dead Messenger, The

The larger-than-normal paragraph separations are, indeed, due to the conversion from text to HTML.  However, after looking at the code, I can't determine why it's as large as it is.  The code tells it to turn a "standard" line break (represented as \r\n), into an HTML line break (represented as <br>\n)  The original text contains two standard line breaks (that is, "\r\n \r\n" ) between paragraphs.  For some reason, the script is turning that into FOUR sets of <br>\n.  It shouldn't be doing that, but I have no idea why it is, so I can't fix it.

Lesson for the day:  While we allow plaintext uploads, they usually look like shit, so submit things in HTML format.

Eric Storm


Please Remember:  The right to Freedom of Speech does not carry the proviso, "As long as it doesn't upset anyone."  The US Constitution does not grant you the right to not be offended.  If you don't like what someone's saying... IGNORE THEM.
----
Facebook page

Offline

 

#8 2024-12-30 09:53:22

Saran
Inebriated
Registered: 2023-09-19
Posts: 30

Re: Dead Messenger, The

Eric Storm wrote:

The larger-than-normal paragraph separations are, indeed, due to the conversion from text to HTML.  However, after looking at the code, I can't determine why it's as large as it is.  The code tells it to turn a "standard" line break (represented as \r\n), into an HTML line break (represented as <br>\n)  The original text contains two standard line breaks (that is, "\r\n \r\n" ) between paragraphs.  For some reason, the script is turning that into FOUR sets of <br>\n.  It shouldn't be doing that, but I have no idea why it is, so I can't fix it.

Lesson for the day:  While we allow plaintext uploads, they usually look like shit, so submit things in HTML format.

Eric Storm

My guess is that the parser is turning each line break into a "paragraph break."  (or this specifically new line =><br>\n<br>\n)   Because the <p> marker has margins and such put in place by browsers, it takes care of the spacing, but in TEXT you have to add an extra line to make it "pretty."  So the parser assumes it needs to make the text "pretty" and adds the extra "line break."  So if you submitted each paragraphs as a single line in text and just one line break between lines, it would show up exactly as expected.  But when submitting "pretty" text to the parser, it simple adds double "return" for each new line.

(Text parsers are an evil thing that have to set rules based on unformatted contents.)
However LESSON LEARNED I will submit via HTML from now on.

Last edited by Saran (2024-12-30 09:53:38)

Offline

 

#9 2024-12-30 18:48:26

Eric Storm
Pub Owner
From: New Port Richey, FL
Registered: 2006-09-12
Posts: 5910
Website

Re: Dead Messenger, The

That's not how the parser works.  I should know: I wrote it.  The parser makes (or is supposed to make) a one-to-one conversion: it switches out each "\r\n" combo, or an individual \r or \n, for exactly one "<br>".  It doesn't make any guesses as to why you put a line break in your plaintext at all.  I specifically did not convert to the <p> tag because I was aware that you might not have wanted a paragraph break: sometimes you really do just want to start a new line.  (For instance, when doing poetry.)

Like I said, I have no idea why it's putting in additional <br>s.  There seems to be no logical reason in the code for it to do so.

All of which is why I strongly recommend uploading as HTML.  3dsmile

Eric Storm


Please Remember:  The right to Freedom of Speech does not carry the proviso, "As long as it doesn't upset anyone."  The US Constitution does not grant you the right to not be offended.  If you don't like what someone's saying... IGNORE THEM.
----
Facebook page

Offline

 

Board footer

Powered by PunBB
© Copyright 2002–2005 Rickard Andersson