View Single Post
Old 03-20-2005, 03:40 PM   #154 (permalink)
nulltype
Crazy
 
Reference program

Quote:
Originally Posted by alkaloid
I've seen this thing popping up in several places on the net in the last day or so, and I don't buy it. I tried a little experiment, and the simple claim given here doesn't hold up very well. Short sentences without context are very hard to read, especially if they don't have many one-, two-, or three-letter words that are obviously invariant under the given rule. Four-letter words are bound in their correct form half the time, and trivial to correct when they are not. Furthermore, one can devise scrambling strategies that mislead the reader for certain classes of longer words.
I think what we see in the given paragraph is that the first/last letter constraint combined with enough invariant or nearly-invariant words combined with enough material to provide context clues raises the information content of the stream to a readable level. I don't think the first/last letter constraint by itself is adequate. It's certainly interesting, but the claim as given here is overstated.

Steve
I was a bit suspicious that this was a little rigged.

So I made a python program that accomplishes the discussed operation upon an input file or even standard input. (yay!)

Code:
#!/bin/env python

import random
import string

def scramble(s):
    # check for single character or empty strings
    if len(s) <= 1:
        return s

    # check for strings having no different characters
    for i in range(len(s) - 1):
        if s[i] != s[i+1]:
            break
    else:
        return s

    l = list(s)
    r = s
    while r == s:
        random.shuffle(l)
        r = string.join(l, '')
    return r

import fileinput
file = ''
for line in fileinput.input():
        file += line

word = ''
output = ''
for char in list(file):
    if char in string.ascii_letters:
        word += char
    else:
        if len(word) > 0:
            if len(word) == 1:
                output += word
            else:
                output += word[0] + scramble(word[1:-1]) + word[-1]
            word = ''
        output += char

print output
And so:

Quote:
Originally Posted by Halx
If you want a definition of an internet troll, look up Bones. Here's where I get personal. What can you derive about a grown man who actually takes hours out of his day to register new email accounts, sign up for an internet website and annoy people? Does this man need some fucking validation? Does he get off on this recognition? It's obvious he revels in the positive attention you all give him, but have you ever stopped to think that he also revels in the negative attention he gets from the staff? The dude is sick in the fucking head.
Apply magic:

Quote:
Originally Posted by Halx
If you wnat a dfoiientin of an iternent tlrol, look up Benos. Hree's werhe I get psorenal. Waht can you dveire auobt a gwron man who alauctly teaks hruos out of his day to reetsgir new emial auctoncs, sgin up for an ietnrent wibsete and anony plepoe? Deos tihs man need smoe fkicung vaioldatin? Deos he get off on tihs rogotiecnin? It's ovobuis he rveels in the pivtsoie aenittotn you all gvie him, but hvae you eevr soepptd to thnik taht he aslo relevs in the niagvtee antetiton he gtes form the saftf? The ddue is scik in the fnciukg haed.
Seems way harder to read than the example 'joke.' Conclusion: the example paragraph is contrived. I now have a theory about Dutch that I will now test.

+C
__________________
Gib mir mein Destillat / Gib mir mein Alltagstot / Gib mir mein Gnadenbrot / zur Ewigkeit

Last edited by nulltype; 03-20-2005 at 03:42 PM.. Reason: Left a few debugging variables in the code
nulltype is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360