This repository has been archived by the owner on Feb 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnohup.out
13415 lines (12413 loc) · 462 KB
/
nohup.out
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
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/var/lib/gems/1.8/gems/activesupport-3.1.2/lib/active_support/dependencies.rb:234:in `load': /home/ubuntu/parzival/config/initializers/session_store.rb:3: syntax error, unexpected ':', expecting $end (SyntaxError)
...sion_store :cookie_store, key: '_parzival_session'
^
from /var/lib/gems/1.8/gems/activesupport-3.1.2/lib/active_support/dependencies.rb:234:in `load'
from /var/lib/gems/1.8/gems/activesupport-3.1.2/lib/active_support/dependencies.rb:223:in `load_dependency'
from /var/lib/gems/1.8/gems/activesupport-3.1.2/lib/active_support/dependencies.rb:640:in `new_constants_in'
from /var/lib/gems/1.8/gems/activesupport-3.1.2/lib/active_support/dependencies.rb:223:in `load_dependency'
from /var/lib/gems/1.8/gems/activesupport-3.1.2/lib/active_support/dependencies.rb:234:in `load'
from /var/lib/gems/1.8/gems/railties-3.1.2/lib/rails/engine.rb:556
from /var/lib/gems/1.8/gems/railties-3.1.2/lib/rails/engine.rb:555:in `each'
from /var/lib/gems/1.8/gems/railties-3.1.2/lib/rails/engine.rb:555
from /var/lib/gems/1.8/gems/railties-3.1.2/lib/rails/initializable.rb:30:in `instance_exec'
from /var/lib/gems/1.8/gems/railties-3.1.2/lib/rails/initializable.rb:30:in `run'
from /var/lib/gems/1.8/gems/railties-3.1.2/lib/rails/initializable.rb:55:in `run_initializers'
from /var/lib/gems/1.8/gems/railties-3.1.2/lib/rails/initializable.rb:54:in `each'
from /var/lib/gems/1.8/gems/railties-3.1.2/lib/rails/initializable.rb:54:in `run_initializers'
from /var/lib/gems/1.8/gems/railties-3.1.2/lib/rails/application.rb:96:in `initialize!'
from /var/lib/gems/1.8/gems/railties-3.1.2/lib/rails/railtie/configurable.rb:30:in `send'
from /var/lib/gems/1.8/gems/railties-3.1.2/lib/rails/railtie/configurable.rb:30:in `method_missing'
from /home/ubuntu/parzival/config/environment.rb:5
from /home/ubuntu/parzival/config.ru:4:in `require'
from /home/ubuntu/parzival/config.ru:4
from /var/lib/gems/1.8/gems/rack-1.3.6/lib/rack/builder.rb:51:in `instance_eval'
from /var/lib/gems/1.8/gems/rack-1.3.6/lib/rack/builder.rb:51:in `initialize'
from /home/ubuntu/parzival/config.ru:1:in `new'
from /home/ubuntu/parzival/config.ru:1
=> Booting WEBrick
=> Rails 3.1.2 application starting in development on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
Exiting
[2012-03-12 16:26:12] INFO WEBrick 1.3.1
[2012-03-12 16:26:12] INFO ruby 1.9.2 (2012-02-14) [x86_64-linux]
[2012-03-12 16:26:12] INFO WEBrick::HTTPServer#start: pid=28703 port=3000
=> Booting WEBrick
=> Rails 3.1.2 application starting in development on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
Mar 12, 2012 4:26:58 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 16:26:53 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"Will Robinson is in danger."}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
What is Will Robinson in?Who is in danger?
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (5.5ms)
Completed 200 OK in 12163ms (Views: 166.6ms | ActiveRecord: 0.0ms)
Mar 12, 2012 5:55:36 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 17:55:35 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"\r\n \r\n \r\n \r\n Section 5: Cocktails with rum \r\n "}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.3ms)
Completed 200 OK in 4014ms (Views: 7.6ms | ActiveRecord: 0.0ms)
Mar 12, 2012 5:56:04 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 17:56:03 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"The Blue Hawaii was invented in 1957 by Harry Yee, legendary head bartender of the Hilton Hawaiian Village in Waikiki, Hawaii when a sales representative of Dutch distiller Bols asked him to design a drink that featured their blue color of Curaçao liqueur. After experimenting with several variations he settled on a version somewhat different than the most popular version today, but with the signature blue color, pineapple wedge, and cocktail umbrella. \r\n"}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
Who settled on a version somewhat different than the most popular version today?
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.3ms)
Completed 200 OK in 20623ms (Views: 67.4ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:00:50 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:00:48 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"The Blue Hawaii was invented in 1957 by Harry Yee, legendary head bartender of the Hilton Hawaiian Village in Waikiki, Hawaii when a sales representative of Dutch distiller Bols asked him to design a drink that featured their blue color of Curaçao liqueur. After experimenting with several variations he settled on a version somewhat different than the most popular version today, but with the signature blue color, pineapple wedge, and cocktail umbrella. \r\n"}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
Who settled on a version somewhat different than the most popular version today?
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.2ms)
Completed 200 OK in 15427ms (Views: 5.3ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:02:28 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:02:27 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"The Blue Hawaii was invented in 1957 by Harry Yee, legendary head bartender of the Hilton Hawaiian Village in Waikiki, Hawaii when a sales representative of Dutch distiller Bols asked him to design a drink that featured their blue color of Curaçao liqueur. After experimenting with several variations he settled on a version somewhat different than the most popular version today, but with the signature blue color, pineapple wedge, and cocktail umbrella. \r\n"}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
Who settled on a version somewhat different than the most popular version today?
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.2ms)
Completed 200 OK in 15393ms (Views: 7.4ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:03:01 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:03:00 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"The Blue Hawaii was invented in 1957 by Harry Yee, legendary head bartender of the Hilton Hawaiian Village in Waikiki, Hawaii when a sales representative of Dutch distiller Bols asked him to design a drink that featured their blue color of Curaçao liqueur. After experimenting with several variations he settled on a version somewhat different than the most popular version today, but with the signature blue color, pineapple wedge, and cocktail umbrella. \r\n"}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
Who settled on a version somewhat different than the most popular version today?
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.2ms)
Completed 200 OK in 15026ms (Views: 6.4ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:03:27 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:03:26 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"The Blue Hawaii was invented in 1957 by Harry Yee, legendary head bartender of the Hilton Hawaiian Village in Waikiki, Hawaii when a sales representative of Dutch distiller Bols asked him to design a drink that featured their blue color of Curaçao liqueur. After experimenting with several variations he settled on a version somewhat different than the most popular version today, but with the signature blue color, pineapple wedge, and cocktail umbrella. \r\n"}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
Who settled on a version somewhat different than the most popular version today?
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.2ms)
Completed 200 OK in 15063ms (Views: 5.9ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:16:08 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:16:07 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"\r\n \r\n \r\n \r\n Section 5: Cocktails with rum \r\n "}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.2ms)
Completed 200 OK in 3801ms (Views: 5.9ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:18:47 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:18:46 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"\r\n \r\n \r\n \r\n Section 5: Cocktails with rum \r\n "}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.2ms)
Completed 200 OK in 3810ms (Views: 6.2ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:20:26 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:20:25 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"\r\n \r\n \r\n \r\n Section 5: Cocktails with rum \r\n "}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.2ms)
Completed 200 OK in 3588ms (Views: 5.9ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:21:24 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@56406199
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:21:23 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"\r\n \r\n \r\n \r\n Section 5: Cocktails with rum \r\n "}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.2ms)
Completed 200 OK in 3884ms (Views: 6.2ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:33:06 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:33:05 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"\r\n \r\n \r\n \r\n Section 5: Cocktails with rum \r\n "}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.3ms)
Completed 200 OK in 3930ms (Views: 7.4ms | ActiveRecord: 0.0ms)
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:33:49 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"\r\n \r\n \r\n \r\n Section 5: Cocktails with rum \r\n "}
WARNING: Can't verify CSRF token authenticity
Completed 500 Internal Server Error in 1ms
NoMethodError (undefined method `trim' for #<String:0x00000003da1530>):
app/controllers/pages_controller.rb:8:in `generate'
Rendered /home/ubuntu/.rvm/gems/ruby-1.9.2-p318/gems/actionpack-3.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
Rendered /home/ubuntu/.rvm/gems/ruby-1.9.2-p318/gems/actionpack-3.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
Rendered /home/ubuntu/.rvm/gems/ruby-1.9.2-p318/gems/actionpack-3.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.9ms)
Mar 12, 2012 6:36:29 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:36:28 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"\r\n \r\n \r\n \r\n Section 5: Cocktails with rum \r\n "}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.2ms)
Completed 200 OK in 3785ms (Views: 5.8ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:36:33 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:36:32 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"This section will include questions on the following topics: \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Bacardi IBA Christian Delpech IBA 2005 Blue Hawaii undefined "}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
What will include questions on the following topics:?
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.3ms)
Completed 200 OK in 9822ms (Views: 6.7ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:38:07 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:38:06 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"\r\n \r\n \r\n \r\n Section 5: Cocktails with rum \r\n "}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.3ms)
Completed 200 OK in 4014ms (Views: 8.7ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:38:12 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:38:11 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"This section will include questions on the following topics: \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Bacardi IBA Christian Delpech IBA 2005 Blue Hawaii undefined "}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
What will include questions on the following topics: Bacardi IBA Christian Delpech IBA 2005 Blue Hawaii undefined?
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.3ms)
Completed 200 OK in 11026ms (Views: 6.5ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:38:23 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:38:22 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"The Blue Hawaii is a tropical cocktail made of rum, pineapple juice, blue Curacao, sweet and sour mix, and sometimes vodka as well. It should not be confused with the similarly named Blue Hawaiian cocktail that contains creme of coconut instead of sweet and sour mix, and never includes vodka. \r\n\r\n History and Popularity "}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
What is the Blue Hawaii as well?What should the Blue Hawaii not be confused with?What is the Blue Hawaii a tropical cocktail made of as well?
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.2ms)
Completed 200 OK in 19444ms (Views: 5.8ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:38:43 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:38:42 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"The Blue Hawaii was invented in 1957 by Harry Yee, legendary head bartender of the Hilton Hawaiian Village in Waikiki, Hawaii when a sales representative of Dutch distiller Bols asked him to design a drink that featured their blue color of Curaçao liqueur. After experimenting with several variations he settled on a version somewhat different than the most popular version today, but with the signature blue color, pineapple wedge, and cocktail umbrella. "}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
Who settled on a version somewhat different than the most popular version today?
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.2ms)
Completed 200 OK in 14398ms (Views: 5.6ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:38:58 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:38:57 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"The name \"Blue Hawaii\" is related only indirectly to the 1961 Elvis Presley film of the same name, and apparently derives instead from the film's title song, a hit composed by Leo Robin for the 1937 Bing Crosby film Waikiki Wedding . It was Yee who named the drink which, along with the films and songs, many other tropical drinks he invented, and tiki bars such as Trader Vic, did much to popularize a faux Hawaiian tiki culture, both in Hawaii itself and on the Mainland. The era was immediately pre-statehood, a time when Hawaii was thought of by most Americans as playground for the rich. Tourism and development was already significant, but all centered around Waikiki and at only a small fraction of today's levels – about 100,000 visitors per year then, compared to seven million today. \r\n Preparation and variations "}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.3ms)
Completed 200 OK in 4058ms (Views: 6.2ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:39:02 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:39:01 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"A blue Hawaii is typically served on the rocks. As with most tropical drinks, there are many variations in preparation, presentation, and ingredients. Hence, it is often blended with ice, margarita-like, to be served as a frozen cocktail. Many variations of glassware are used, the more whimsical the better: tiki mugs, cocktail glasses, parfait glasses, or carved out coconuts or pineapples. "}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
What is a blue Hawaii typically served on?What are used, the more whimsical mugs, cocktail glasses, or carved out coconuts or pineapples?What are parfait glasses?What are many variations of glassware used, ?What is typically served on the rocks?What are cocktail glasses?What is often blended with ice?
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.2ms)
Completed 200 OK in 21178ms (Views: 6.2ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:39:24 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:39:23 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"The base liquor is usually light rum but vodka may be partially or completely substituted as a matter of taste. Similarly, a flavored rum or vodka such as Malibu Rum may eliminate the need for crème of coconut, or the coconut flavor may be omitted entirely (coconut milk, a very different product, should not be used). Even the pineapple juice is sometimes left out in favor of sour mix. The only constant, in fact, is the name and the blue Curaçao. "}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
What is sometimes left out in favor of sour mix?What may be partially or completely substituted as a matter of taste?What is the pineapple juice sometimes left out in?What may vodka be partially or completely substituted as?What is usually light rum?What is the name and the blue Curaao?What is the only constant?What is the base liquor?
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.2ms)
Completed 200 OK in 13388ms (Views: 6.4ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:39:38 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:39:37 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"Because it is easy and inexpensive to make, it is often served as a punch. At its simplest, it is a bottle or two of plain or coconut-flavored light rum, a bottle of blue curacao, a can of pineapple juice, and a bag of ice, mixed together in a punchbowl. The Blue Hawaii is seasonal, often considered a summer or warm weather drink. Occasionally, because it contains yellow pineapple juice, the Blue Hawaii will be a lovely shade of green. \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n \r\n\r\n "}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
What will the Blue Hawaii be a lovely shade of?What contains yellow pineapple juice?What will be a lovely shade of green?What does the Blue Hawaii contain?What will the Blue Hawaii be?What is often served as a punch?What is seasonal?What is easy and inexpensive to make?
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.2ms)
Completed 200 OK in 13820ms (Views: 6.5ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:39:52 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:39:51 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"The Blue Hawaii is a tropical cocktail made of rum, pineapple juice, blue Curacao, sweet and sour mix, and sometimes vodka as well. It should not be confused with the similarly named Blue Hawaiian cocktail that contains creme of coconut instead of sweet and sour mix, and never includes vodka. \r\n\r\n History and Popularity "}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
What is the Blue Hawaii as well?What should the Blue Hawaii not be confused with?What is the Blue Hawaii a tropical cocktail made of as well?
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.2ms)
Completed 200 OK in 18996ms (Views: 6.1ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:40:12 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:40:11 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"The Blue Hawaii was invented in 1957 by Harry Yee, legendary head bartender of the Hilton Hawaiian Village in Waikiki, Hawaii when a sales representative of Dutch distiller Bols asked him to design a drink that featured their blue color of Curaçao liqueur. After experimenting with several variations he settled on a version somewhat different than the most popular version today, but with the signature blue color, pineapple wedge, and cocktail umbrella. "}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
Who settled on a version somewhat different than the most popular version today?
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.2ms)
Completed 200 OK in 14822ms (Views: 5.9ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:41:07 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:41:05 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"\r\n \r\n \r\n \r\n Section 5: Cocktails with rum \r\n "}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.2ms)
Completed 200 OK in 3846ms (Views: 5.7ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:41:11 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:41:10 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"This section will include questions on the following topics: \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Bacardi IBA Christian Delpech IBA 2005 Blue Hawaii undefined "}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
What will include questions on the following topics: Bacardi IBA Christian Delpech IBA 2005 Blue Hawaii undefined?
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.2ms)
Completed 200 OK in 10884ms (Views: 6.3ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:41:23 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:41:21 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"The Blue Hawaii is a tropical cocktail made of rum, pineapple juice, blue Curacao, sweet and sour mix, and sometimes vodka as well. It should not be confused with the similarly named Blue Hawaiian cocktail that contains creme of coconut instead of sweet and sour mix, and never includes vodka. \r\n\r\n History and Popularity "}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor
What is the Blue Hawaii as well?What should the Blue Hawaii not be confused with?What is the Blue Hawaii a tropical cocktail made of as well?
PROCESSING COMPLETE.
Rendered pages/generate.json.erb (0.2ms)
Completed 200 OK in 18871ms (Views: 7.2ms | ActiveRecord: 0.0ms)
Mar 12, 2012 6:41:42 PM net.didion.jwnl.util.MessageLog doLog
INFO: Installing dictionary net.didion.jwnl.dictionary.FileBackedDictionary@522a4983
Started POST "/generate" for 71.71.40.151 at 2012-03-12 18:41:41 +0000
Processing by PagesController#generate as */*
Parameters: {"text"=>"The Blue Hawaii was invented in 1957 by Harry Yee, legendary head bartender of the Hilton Hawaiian Village in Waikiki, Hawaii when a sales representative of Dutch distiller Bols asked him to design a drink that featured their blue color of Curaçao liqueur. After experimenting with several variations he settled on a version somewhat different than the most popular version today, but with the signature blue color, pineapple wedge, and cocktail umbrella. "}
WARNING: Can't verify CSRF token authenticity
PROCESSING BEGUN
app
config
config.ru
db
doc
Gemfile
Gemfile.lock
lib
log
nohup.out
Parzival.pem
parzival.ppk
public
qg
Rakefile
README
run.sh
script
test
tmp
vendor