This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2012-06-17 21:36:31

TorbyFork234
Scratcher
Registered: 2012-03-01
Posts: 1000+

Why can't forum posts go beyond 65535 characters?

As the title says, Why can't forum posts go beyond 65535 characters?

Offline

 

#2 2012-06-17 21:43:26

veggieman001
Scratcher
Registered: 2010-02-20
Posts: 1000+

Re: Why can't forum posts go beyond 65535 characters?

It's the FluxBB default, as well as being around 64k.


Posts: 20000 - Show all posts

Offline

 

#3 2012-06-17 21:44:18

TorbyFork234
Scratcher
Registered: 2012-03-01
Posts: 1000+

Re: Why can't forum posts go beyond 65535 characters?

Can it be changed?

Offline

 

#4 2012-06-17 22:08:36

Andres-Vander
Scratcher
Registered: 2010-09-16
Posts: 1000+

Re: Why can't forum posts go beyond 65535 characters?

Probably but why would you want to?


http://www.gifsoup.com/view1/2260823/flugelhorn-feline-o.gif

Offline

 

#5 2012-06-17 22:29:05

veggieman001
Scratcher
Registered: 2010-02-20
Posts: 1000+

Re: Why can't forum posts go beyond 65535 characters?

I don't think they'd increase it... it's a reasonable limit. Why do you want it increased?


Posts: 20000 - Show all posts

Offline

 

#6 2012-06-17 22:51:49

TorbyFork234
Scratcher
Registered: 2012-03-01
Posts: 1000+

Re: Why can't forum posts go beyond 65535 characters?

I wanted to make a topic about sharing array based maps, but the one I wanted to share 172,800 characters long, and I wanted to share 4 of those (in code tags of course).

Offline

 

#7 2012-06-17 22:51:51

jvvg
Scratcher
Registered: 2008-03-26
Posts: 1000+

Re: Why can't forum posts go beyond 65535 characters?

Actually, I looked into it, and FluxBB uses a "MEDIUMTEXT" field for the message.
Only 65535 characters can go into that.
However, they could try using a LARGETEXT.


http://tiny.cc/zwgbewhttp://tiny.cc/e1gbewhttp://tiny.cc/zygbewhttp://tiny.cc/izgbew
Goodbye, Scratch 1.4  sad                                                        Hello Scratch 2.0!  smile

Offline

 

#8 2012-06-17 22:54:20

funelephant
Scratcher
Registered: 2010-07-02
Posts: 1000+

Re: Why can't forum posts go beyond 65535 characters?

Well, that's gonna a be a VERY large post  hmm


nicki begs to differ
http://24.media.tumblr.com/ab0e6e8fd347c5e39c2821bcab9d16e6/tumblr_mgu35sui1L1rfb7aqo2_500.gif

Offline

 

#9 2012-06-17 23:00:41

veggieman001
Scratcher
Registered: 2010-02-20
Posts: 1000+

Re: Why can't forum posts go beyond 65535 characters?

TorbyFork234 wrote:

I wanted to make a topic about sharing array based maps, but the one I wanted to share 172,800 characters long, and I wanted to share 4 of those (in code tags of course).

I'd recommend using something like Pastebin and then linking to it.


Posts: 20000 - Show all posts

Offline

 

#10 2012-06-17 23:16:25

chanmanpartyman
Scratcher
Registered: 2011-05-30
Posts: 500+

Re: Why can't forum posts go beyond 65535 characters?

Just make separate posts.

Offline

 

#11 2012-06-17 23:34:48

puppymk
Scratcher
Registered: 2011-09-10
Posts: 100+

Re: Why can't forum posts go beyond 65535 characters?

chanmanpartyman wrote:

Just make separate posts.


http://dl.dropbox.com/u/60598636/puppymk-sig.png

Offline

 

#12 2012-06-17 23:41:26

TorbyFork234
Scratcher
Registered: 2012-03-01
Posts: 1000+

Re: Why can't forum posts go beyond 65535 characters?

chanmanpartyman wrote:

Just make separate posts.

But it would have to be 3 posts, and all 3 in code which makes it look all weird. I would have to have 12 different posts to post the 4 levels I wanted to post.

Offline

 

#13 2012-06-18 09:00:13

roijac
Scratcher
Registered: 2010-01-19
Posts: 1000+

Re: Why can't forum posts go beyond 65535 characters?

veggieman001 wrote:

TorbyFork234 wrote:

I wanted to make a topic about sharing array based maps, but the one I wanted to share 172,800 characters long, and I wanted to share 4 of those (in code tags of course).

I'd recommend using something like pastebin.com and then linking to it.

you even have a link

Offline

 

#14 2012-06-18 09:32:45

Molybdenum
Scratcher
Registered: 2012-06-17
Posts: 1000+

Re: Why can't forum posts go beyond 65535 characters?

I would actually recommend using a compression scheme, like http://conwaylife.com/wiki/RLE . That one's my favorite, but if you still need more compression, convert your array from base N (where N is the number of characters  + 1, because 01 and 1 would get converted to be the same) to base 36 or 62, depending on the case-sensitivity of your program. Ex.
00100
11100
00001

RLE (you need to convert 0 to a and 1 to b, $ is line break, 1X can just be written as X):
2ab2b$3b2a$4ab
15->14 (not much, but its good for sparse arrays)

Base (base 3 to base 36, 0->1, 1->2):
(3x5)4LRXP
15->10

(Thanks for your base converter bob6!)


"The Enrichment Center is required to remind you that you will be baked, and then there will be cake."
(|Balls and Platforms: Stay on!|) (|NaOS-H: An operating system... Or is it?|)

Offline

 

Board footer