view bin/distort @ 11856:07117b057c06 draft

<b_jonas> slashlearn source//Sources for HackEgo can be found at https://bitbucket.org/GregorR/hackbot + https://bitbucket.org/GregorR/multibot + https://bitbucket.org/GregorR/umlbox . Sources for HackEso can be found at https://bitbucket.org/fizzie/hackbot + https://bitbucket.org/fizzie/multibot + https://bitbucket.org/fizzie/umlbox .
author HackEso <hackeso@esolangs.org>
date Tue, 16 Jul 2019 21:07:24 +0000
parents 4bf8e3c4e356
children 3544b44147db
line wrap: on
line source

#!/usr/bin/env python
import sys
N = 459
name = sys.argv[1] if len(sys.argv) > 1 else "/dev/stdin"
with open(name, "r") as f:
  data = ' \\ '.join(f.read().splitlines())
s = len(data)
mw = len(str(2*s/N))-1
mw += s > ((N-2)*9-18*mw+1)*((10**mw-1)/9)-mw
p=0
i=1
while (p<s):
  lw = N-mw-2-len(`i`)
  print data[p:p+lw]
  i+=1
  p+=lw