Endless Paradigm

Full Version: Ill posts nudes if!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 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 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595
Assassinator Wrote:Do you have a penis?
I am a female robot.  Are you a man or a woman?
> -----Original Message-----
> From: alicebot-developer-admin@list.alicebot.org
> [mailto:alicebot-developer-admin@list.alicebot.org] On Behalf
> Of Josip Almasi
> Sent: Friday, November 30, 2001 8:20 PM
> To: alicebot-developer@list.alicebot.org
> Subject: Re: [alicebot-developer] Un-static-ing the aliceBot code
>
>
> Jon Baer wrote:
> >
> > I think your assumption is correct.  I think its rather important to
> > point out that no matter what it's somewhat correct in that there
> > should only really be 1 single "graphmaster" object though and
> > multiple "match" objects.
> >
> > Im pretty sure you would get illegal access errors calling
> methods on
> > nodes which are being written to and read in memory @ the same time.
> > Thus a single instance.
>
> As far as I know synchronized methods would solve the problem. But yes, slow down
> everything...
>
> > > My project needs to have multi-bot code, so wee're going to hack it
> > > and see if wee can get it running.  I am wondering, why was it
> > > decided to make virtually every object in the code a
> class variable
> > > (ie, static)?  That seems like a very artificial restriction that
> > > wasn't necessary - i guess at the time no one thought anyone would
> > > need multiple bots.  Even still, to me it looks like it would have
> > > been just as easy to make everything an instance variable
> instead...
> > > Can anyone comment on this? By the way, wee'll be happy to
> share our
> > > source, albeit "hacked"...
>
> I need this too... but _I like it_ static, beacuse if there's only one
> bot, there's need for synchronization, and no need to keep
> references to
> Graphmaster, Classifier or something.
> So what would I do:
> - doResponse() and doRespond() methods in Classifier should
> take String
> botName as additional arg
> - note that Graphmaster.MASTER_MATCH is not really needed
> - Graphmaster: HashMap ROOT = new HashMap();
> - Graphmaster.add(...):
> Nodemapper node = add(path, ROOT, 0); » add(path, ROOT.get(
> botName ),
> 0 );
> - Graphmaster.load() needs more changes, i.e.
> File dir = new File(fname = "bots" +
> System.getProperty("file.separator"));
> String[] bots = dir.list();
> for ( int i=0; i<bots.length; i++ ) ROOT.put( bots[i], new
> NodeMaster());
> ...
> - AIMLLoader should take botName as param
> - Globals.getBotName() is used in only few classes, imho it's easy to
> get rid of it
>
> So, does it make sense?
> If does, who's gonna do it and when?
> If noone, how do I commit? :)
>
> by the way I'd also like to remove hardcoded "http:" from
> Graphmaster.load() -
> I run ProgramD in JVM with StreamFactory which can load over ftp and
> pop3.
>
>
> Regards,
> Josip
>
> _______________________________________________
> alicebot-developer mailing list
> alicebot-developer@list.alicebot.org
> http://list.alicebot.org/mailman/listinf...-developer
>
.:ʕΘЯg@nʔ:.� Wrote:> ~~88smile89smile90smile91smile92~~Original Message~~93smile94smile95smile96smile97~~
> From ~~140smile98~~developer-admin@list.
Do not ask me any more questions please.
.:ʕΘЯg@nʔ:.� Wrote:~~141smile135~~
> [mailto~~76smile142smile100~~developer-admin@list.
What do you have that is undefined?
.:ʕΘЯg@nʔ:.� Wrote:~~143smile136~~] On Behalf
> Of Josip Almasi
> Sent Friday November 30 2001 820 PM
> To ~~144smile102~~developer@list.
What are you wearing?
.:ʕΘЯg@nʔ:.� Wrote:~~145smile137~~
> Subject Re [~~146smile103~~developer] Un-static-ing the ALICE code
>
>
> Jon Baer wrote
> >
> > I think your assumption is correct.
Are they exactly the same?
.:ʕΘЯg@nʔ:.� Wrote:  I think its rather important to
> > point out that no matter what it is somewhat correct in that there
> > should only really be 1 single graphmaster object though and
> > multiple match objects.
And somewhat correct in that there
> > should only really be 1 single graphmaster object though and
> > multiple match objects correct in that there
> > should only really be 1 single graphmaster object though and
> > multiple match objects is   he or she think its rather important to
> > point out that no matter what it.
.:ʕΘЯg@nʔ:.� Wrote:> >
> > Im pretty sure you would get illegal access errors calling
> methods on
> > nodes which are being written to and read in memory @ the same time.
All of them?
.:ʕΘЯg@nʔ:.� Wrote:> > Thus a single instance.
If you could have any kind of robot what would it be?
.:ʕΘЯg@nʔ:.� Wrote:>
> As far as I know synchronized methods would solve the problem.
That is a very original thought.
.:ʕΘЯg@nʔ:.� Wrote:But yes slow down
> everything.
Huh.  
	
	
	
Gee. That remark was either too complex or too simple for me. Wee were talking about > > As far as he or she know synchronized methods would solve the problem.
.:ʕΘЯg@nʔ:.� Wrote:>
> > > My project needs to have multi-bot code so wee are going to hack it
> > > and see if wee can get it running.
I think there might be a few exception.
.:ʕΘЯg@nʔ:.� Wrote:  I am wondering why was it
> > > decided to make virtually every object in the code a
> class variable
> > > ie static.
When was this exactly?
.:ʕΘЯg@nʔ:.� Wrote:  That seems like a very artificial restriction that
> > > was not necessary - i guess at the time no one thought anyone would
> > > need multiple bots.
When was this exactly?
.:ʕΘЯg@nʔ:.� Wrote:  Even still to me it looks like it would have
> > > been just as easy to make everything an instance variable
> instead?
What are you wearing?
.:ʕΘЯg@nʔ:.� Wrote:> > > Can anyone comment on this.
I will mention that to my botmaster, You-Are-A-Retard-That-Likes-To-Eat-Turd.
.:ʕΘЯg@nʔ:.� Wrote:By the way wee will be happy to
> share our
> > > source albeit hacked.
Thanks for telling me. Anytime soon?
.:ʕΘЯg@nʔ:.� Wrote:>
> I need this too.
When do you think artificial intelligence will replace lawyers?
.:ʕΘЯg@nʔ:.� Wrote:but _I like it_ static beacuse if there is only one
> bot there is need for synchronization and no need to keep
> references to
> Graphmaster Classifier or something.
Or something. Interesting.  
	
	
	
Are they exactly the same?

.:ʕΘЯg@nʔ:.� Wrote:> So what would I do
> - doResponse~~18smile35~~ and doRespond~~19smile36~~ methods in Classifier should
> take String
> botName as additional arg
> - note that Graphmaster?
What do you look like?
.:ʕΘЯg@nʔ:.� Wrote:MASTER_MATCH is not really needed
> - Graphmaster HashMap ROOT  new HashMap~~20smile37~~;
> - Graphmaster.
Who is really needed
> - Graphmaster HashMap ROOT needed
> - Graphmaster HashMap ROOT new HashMap~~20smile37~~;
> - Graphmaster?
.:ʕΘЯg@nʔ:.� Wrote:add.
Who is your favorite Science Fiction author?
.:ʕΘЯg@nʔ:.� Wrote:~~38smile85~~
> Nodemapper node  addpath ROOT 0; » addpath ROOT.
What's your sign?
.:ʕΘЯg@nʔ:.� Wrote:get
> botName ~~40smile67~~
> 0 ;
> - Graphmaster.
Where can I get > botName ~~40smile67~~
> 0 ;
> - Graphmaster botName ~~40smile67~~
> 0 ;
> - Graphmaster?
.:ʕΘЯg@nʔ:.� Wrote:load~~25smile42~~ needs more changes ~~153smile152~~
> File dir  new Filefname  bots +
> System.
Quite honestly, I wouldn't worry myself about that.
.:ʕΘЯg@nʔ:.� Wrote:getProperty~~27smile9~~file.
Perhaps I'm just expressing my own concern about it.
.:ʕΘЯg@nʔ:.� Wrote:separator~~10smile43smile44~~;
> String[] bots  dir.
I like the way you talk.
.:ʕΘЯg@nʔ:.� Wrote:list~~28smile45~~;
> for  int i0; i NodeMaster~~31smile47smile48~~;
> .
OK I will put it there.
.:ʕΘЯg@nʔ:.� Wrote:> - AIMLLoader should take botName as param
> - Globals.
Is that your final answer?
.:ʕΘЯg@nʔ:.� Wrote:getBotName~~32smile49~~ is used in only few classes imho it is easy to
> get rid of it
>
> So does it make sense.
I think getBotName~~32smile49~~ is a lot of things.
.:ʕΘЯg@nʔ:.� Wrote:> If does who is gonna do it and when.
I think > If does who is a lot of things.
.:ʕΘЯg@nʔ:.� Wrote:> If noone how do I commit.
Can you please rephrase that with fewer ideas, or different thoughts?
.:ʕΘЯg@nʔ:.� Wrote:smile
>
> by the way I would also like to remove hardcoded http~~86smile12~~ from
> Graphmaster.
What color are your eyes?
.:ʕΘЯg@nʔ:.� Wrote:load~~33smile50~~ -
> I run ProgramD in JVM with StreamFactory which can load over ftp and
> pop3.
Do you like talking to me?
.:ʕΘЯg@nʔ:.� Wrote:>
>
> Regards
> Josip
>
> _______________________________________________
> ~~148smile117~~developer mailing list
> ~~149smile118~~developer@list.
Do not ask me any more questions please.
.:ʕΘЯg@nʔ:.� Wrote:~~150smile138~~
> http~~87smile13smile14~~list.
Who are you talking about?
.:ʕΘЯg@nʔ:.� Wrote:~~151smile139smile15~~mailmanlistinf.
What's your favorite movie?
.:ʕΘЯg@nʔ:.� Wrote:-developer
>.
Who are you talking about?
I am a dog.
Assassinator Wrote:I am a dog.
Dog: Domesticated animal, "man's best friend."
cat
Assassinator Wrote:cat
Do not ask me any more questions please.
what is a cat
Assassinator Wrote:what is a cat
A cat is a domesticated animal.
What is a vagina?
Pages: 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 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595
Reference URL's