An implementation of Linear Feedback Shift Register based pseudo-random sequence generator in 120 bytes of JavaScript.
LFSR(length,seed)
e.g.
LFSR(865,1567)
will generate a sequence 865 bytes long from the seed 1567 and return a raw JS string containing it.
You can use coercion to initialize s and save 2 bytes: