Is there anywhere to download the source code of 4chan/other image boards? I'd like to see it just out of curiosity and to possibly set one up for myself and friends.
Does 4chan answer any commands besides regular HTTP GET and POST?
Like can you get a list of md5's of all the pics (something I'd
imagine the admins added for their own use).
>>45
Link plox! I'd like json board/thread output if that's what you mean.
Name:
Anonymous2008-10-27 13:45
I cant believe that nobody has mentioned serissa. Its kusaba heavily upgraded with much better modding options and my favorite, post spy, which automatically adds new posts to threads without f5. I wish 4chan would implement something like that.
>>51 I cant believe that nobody has mentioned serissa.
Because this isn't /pr/. (You should go back to it)
Serissa (and the other thousand of clones Kusaba spawned) is just Kusaba being ``maintained'' by clueless underage idiots with no clue whatsoever.
I mean, seriously, those are the dumbest fucking ``features'' I have ever seen. ``Faptcha'' being the worst, I'm going to wager something as simplistic and with so little base images as that is easily breakable using a few lines of FIOC.
$ wc -c serissa_v1.0.4.zip 1543494 serissa_v1.0.4.zip
A megabyte and a half for an imageboard?!
import Image, operator, os, glob
def diff(*t):
x, y = [Image.open(f).histogram() for f in t]
return (reduce(operator.add,
map(lambda a, b: (a - b) ** 2, x, y)) / len(x)) ** 0.5
test = 'serissasucks.png' # change this
print sorted((diff(test, f), os.path.basename(f)[:-4].rstrip('0123456789'))
for f in glob.glob('faptcha_default/*.png'))[0][1]
Name:
Anonymous2008-10-29 14:01
Bump this shit for 4chan JSON API. I'm starting to think it's a lie.
>>60
If there were a 4chan JSON API, what operations would it expose? I (and pretty much every other person) have a set of regexes for parsing the boards, so it would be fairly trivial to write a read-only interface for interacting with them.