-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdemo.txt
20940 lines (19878 loc) · 935 KB
/
demo.txt
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
Script started on Mon Sep 24 15:14:20 2007
ritchie-youngs-computer:~/.Trash/mayhem ritchiey$ ritchie-youngs-computer:~/.Trash/mayhem ritchiey$ ritchie-youngs-computer:~/.Trash/mayhem ritchiey$ critchie-youngs-computer:~/.Trash/mayhem ritchiey$ critchie-youngs-computer:~/.Trash/mayhem ritchiey$ cdritchie-youngs-computer:~/.Trash/mayhem ritchiey$ cd
ritchie-youngs-computer:~ ritchiey$ ritchie-youngs-computer:~ ritchiey$ ritchie-youngs-computer:~ ritchiey$ critchie-youngs-computer:~ ritchiey$ critchie-youngs-computer:~ ritchiey$ cdritchie-youngs-computer:~ ritchiey$ cdritchie-youngs-computer:~ ritchiey$ cd ritchie-youngs-computer:~ ritchiey$ cd ritchie-youngs-computer:~ ritchiey$ cd xritchie-youngs-computer:~ ritchiey$ cd x
ritchie-youngs-computer:~/x ritchiey$ ritchie-youngs-computer:~/x ritchiey$ ritchie-youngs-computer:~/x ritchiey$ #ritchie-youngs-computer:~/x ritchiey$ #ritchie-youngs-computer:~/x ritchiey$ # ritchie-youngs-computer:~/x ritchiey$ # ritchie-youngs-computer:~/x ritchiey$ # Iritchie-youngs-computer:~/x ritchiey$ # Iritchie-youngs-computer:~/x ritchiey$ # I ritchie-youngs-computer:~/x ritchiey$ # I ritchie-youngs-computer:~/x ritchiey$ # I writchie-youngs-computer:~/x ritchiey$ # I writchie-youngs-computer:~/x ritchiey$ # I waritchie-youngs-computer:~/x ritchiey$ # I waritchie-youngs-computer:~/x ritchiey$ # I wanritchie-youngs-computer:~/x ritchiey$ # I wanritchie-youngs-computer:~/x ritchiey$ # I wantritchie-youngs-computer:~/x ritchiey$ # I wantritchie-youngs-computer:~/x ritchiey$ # I want ritchie-youngs-computer:~/x ritchiey$ # I want ritchie-youngs-computer:~/x ritchiey$ # I want tritchie-youngs-computer:~/x ritchiey$ # I want tritchie-youngs-computer:~/x ritchiey$ # I want toritchie-youngs-computer:~/x ritchiey$ # I want toritchie-youngs-computer:~/x ritchiey$ # I want to ritchie-youngs-computer:~/x ritchiey$ # I want to ritchie-youngs-computer:~/x ritchiey$ # I want to sritchie-youngs-computer:~/x ritchiey$ # I want to sritchie-youngs-computer:~/x ritchiey$ # I want to stritchie-youngs-computer:~/x ritchiey$ # I want to stritchie-youngs-computer:~/x ritchiey$ # I want to staritchie-youngs-computer:~/x ritchiey$ # I want to staritchie-youngs-computer:~/x ritchiey$ # I want to starritchie-youngs-computer:~/x ritchiey$ # I want to starritchie-youngs-computer:~/x ritchiey$ # I want to startritchie-youngs-computer:~/x ritchiey$ # I want to startritchie-youngs-computer:~/x ritchiey$ # I want to start ritchie-youngs-computer:~/x ritchiey$ # I want to start ritchie-youngs-computer:~/x ritchiey$ # I want to start aritchie-youngs-computer:~/x ritchiey$ # I want to start aritchie-youngs-computer:~/x ritchiey$ # I want to start anritchie-youngs-computer:~/x ritchiey$ # I want to start anritchie-youngs-computer:~/x ritchiey$ # I want to start an ritchie-youngs-computer:~/x ritchiey$ # I want to start an ritchie-youngs-computer:~/x ritchiey$ # I want to start an eritchie-youngs-computer:~/x ritchiey$ # I want to start an eritchie-youngs-computer:~/x ritchiey$ # I want to start an evritchie-youngs-computer:~/x ritchiey$ # I want to start an evritchie-youngs-computer:~/x ritchiey$ # I want to start an eviritchie-youngs-computer:~/x ritchiey$ # I want to start an eviritchie-youngs-computer:~/x ritchiey$ # I want to start an evilritchie-youngs-computer:~/x ritchiey$ # I want to start an evilritchie-youngs-computer:~/x ritchiey$ # I want to start an evil ritchie-youngs-computer:~/x ritchiey$ # I want to start an evil ritchie-youngs-computer:~/x ritchiey$ # I want to start an evil eritchie-youngs-computer:~/x ritchiey$ # I want to start an evil eritchie-youngs-computer:~/x ritchiey$ # I want to start an evil emritchie-youngs-computer:~/x ritchiey$ # I want to start an evil emritchie-youngs-computer:~/x ritchiey$ # I want to start an evil emiritchie-youngs-computer:~/x ritchiey$ # I want to start an evil emiritchie-youngs-computer:~/x ritchiey$ # I want to start an evil em[Kritchie-youngs-computer:~/x ritchiey$ # I want to start an evil emritchie-youngs-computer:~/x ritchiey$ # I want to start an evil empritchie-youngs-computer:~/x ritchiey$ # I want to start an evil empritchie-youngs-computer:~/x ritchiey$ # I want to start an evil empiritchie-youngs-computer:~/x ritchiey$ # I want to start an evil empiritchie-youngs-computer:~/x ritchiey$ # I want to start an evil empirritchie-youngs-computer:~/x ritchiey$ # I want to start an evil empirritchie-youngs-computer:~/x ritchiey$ # I want to start an evil empireritchie-youngs-computer:~/x ritchiey$ # I want to start an evil empireritchie-youngs-computer:~/x ritchiey$ # I want to start an evil empire.ritchie-youngs-computer:~/x ritchiey$ # I want to start an evil empire.
ritchie-youngs-computer:~/x ritchiey$ ritchie-youngs-computer:~/x ritchiey$ ritchie-youngs-computer:~/x ritchiey$ #ritchie-youngs-computer:~/x ritchiey$ #ritchie-youngs-computer:~/x ritchiey$ # ritchie-youngs-computer:~/x ritchiey$ # ritchie-youngs-computer:~/x ritchiey$ # Iritchie-youngs-computer:~/x ritchiey$ # Iritchie-youngs-computer:~/x ritchiey$ # I'ritchie-youngs-computer:~/x ritchiey$ # I'ritchie-youngs-computer:~/x ritchiey$ # I'mritchie-youngs-computer:~/x ritchiey$ # I'mritchie-youngs-computer:~/x ritchiey$ # I'm ritchie-youngs-computer:~/x ritchiey$ # I'm ritchie-youngs-computer:~/x ritchiey$ # I'm gritchie-youngs-computer:~/x ritchiey$ # I'm gritchie-youngs-computer:~/x ritchiey$ # I'm goritchie-youngs-computer:~/x ritchiey$ # I'm goritchie-youngs-computer:~/x ritchiey$ # I'm goiritchie-youngs-computer:~/x ritchiey$ # I'm goiritchie-youngs-computer:~/x ritchiey$ # I'm goinritchie-youngs-computer:~/x ritchiey$ # I'm goinritchie-youngs-computer:~/x ritchiey$ # I'm goingritchie-youngs-computer:~/x ritchiey$ # I'm goingritchie-youngs-computer:~/x ritchiey$ # I'm going ritchie-youngs-computer:~/x ritchiey$ # I'm going ritchie-youngs-computer:~/x ritchiey$ # I'm going tritchie-youngs-computer:~/x ritchiey$ # I'm going tritchie-youngs-computer:~/x ritchiey$ # I'm going toritchie-youngs-computer:~/x ritchiey$ # I'm going toritchie-youngs-computer:~/x ritchiey$ # I'm going to ritchie-youngs-computer:~/x ritchiey$ # I'm going to ritchie-youngs-computer:~/x ritchiey$ # I'm going to britchie-youngs-computer:~/x ritchiey$ # I'm going to britchie-youngs-computer:~/x ritchiey$ # I'm going to buritchie-youngs-computer:~/x ritchiey$ # I'm going to buritchie-youngs-computer:~/x ritchiey$ # I'm going to buiritchie-youngs-computer:~/x ritchiey$ # I'm going to buiritchie-youngs-computer:~/x ritchiey$ # I'm going to builritchie-youngs-computer:~/x ritchiey$ # I'm going to builritchie-youngs-computer:~/x ritchiey$ # I'm going to buildritchie-youngs-computer:~/x ritchiey$ # I'm going to buildritchie-youngs-computer:~/x ritchiey$ # I'm going to build ritchie-youngs-computer:~/x ritchiey$ # I'm going to build ritchie-youngs-computer:~/x ritchiey$ # I'm going to build britchie-youngs-computer:~/x ritchiey$ # I'm going to build britchie-youngs-computer:~/x ritchiey$ # I'm going to build [Kritchie-youngs-computer:~/x ritchiey$ # I'm going to build ritchie-youngs-computer:~/x ritchiey$ # I'm going to build mritchie-youngs-computer:~/x ritchiey$ # I'm going to build mritchie-youngs-computer:~/x ritchiey$ # I'm going to build myritchie-youngs-computer:~/x ritchiey$ # I'm going to build myritchie-youngs-computer:~/x ritchiey$ # I'm going to build my ritchie-youngs-computer:~/x ritchiey$ # I'm going to build my ritchie-youngs-computer:~/x ritchiey$ # I'm going to build my eritchie-youngs-computer:~/x ritchiey$ # I'm going to build my eritchie-youngs-computer:~/x ritchiey$ # I'm going to build my emritchie-youngs-computer:~/x ritchiey$ # I'm going to build my emritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empiritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empiritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empirritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empirritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empireritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empireritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire ritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire ritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire oritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire oritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire ofritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire ofritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire o[Kritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire oritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire onritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire onritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire on ritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire on ritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire on tritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire on tritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire on thritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire on thritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire on thuritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire on thuritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire on thugritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire on thugritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire on thuggritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire on thuggritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire on thuggeritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire on thuggeritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire on thuggerritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire on thuggerritchie-youngs-computer:~/x ritchiey$ # I'm going to build my empire on thuggery a a an an and and and and and s and s and so and so and sof and sof and soft and soft and softw and softw and softwa and softwa and softwar and softwar and software and software and software and software and software p and software p and software pa and software pa and software pat and software pat and software pate and software pate and software paten and software paten and software patent and software patent and software patents and software patents and software patents and software patents and software patents a and software patents a and software patents an and software patents an and software patents and and software patents and and software patents and and software patents and and software patents and n and software patents and n and software patents and no and software patents and no and software patents and noo and software patents and noo and software patents and noon and software patents and noon and software patents and noone and software patents and noone and software patents and noon[K and software patents and noon and software patents and noo[K and software patents and noo and software patents and no[K and software patents and no and software patents and nob and software patents and nob and software patents and nobo and software patents and nobo and software patents and nobod and software patents and nobod and software patents and nobody and software patents and nobody and software patents and nobody and software patents and nobody and software patents and nobody b and software patents and nobody b and software patents and nobody [K and software patents and nobody and software patents and nobody c and software patents and nobody c and software patents and nobody ca and software patents and nobody ca and software patents and nobody can and software patents and nobody can and software patents and nobody can and software patents and nobody can and software patents and nobody can s and software patents and nobody can s and software patents and nobody can st and software patents and nobody can st and software patents and nobody can sto and software patents and nobody can sto and software patents and nobody can stop and software patents and nobody can stop and software patents and nobody can stop and software patents and nobody can stop and software patents and nobody can stop m and software patents and nobody can stop m and software patents and nobody can stop me and software patents and nobody can stop me and software patents and nobody can stop me. and software patents and nobody can stop me.
ritchie-youngs-computer:~/x ritchiey$ ritchie-youngs-computer:~/x ritchiey$ ritchie-youngs-computer:~/x ritchiey$ #ritchie-youngs-computer:~/x ritchiey$ #ritchie-youngs-computer:~/x ritchiey$ # ritchie-youngs-computer:~/x ritchiey$ # ritchie-youngs-computer:~/x ritchiey$ # Britchie-youngs-computer:~/x ritchiey$ # Britchie-youngs-computer:~/x ritchiey$ # Buritchie-youngs-computer:~/x ritchiey$ # Buritchie-youngs-computer:~/x ritchiey$ # Butritchie-youngs-computer:~/x ritchiey$ # Butritchie-youngs-computer:~/x ritchiey$ # But ritchie-youngs-computer:~/x ritchiey$ # But ritchie-youngs-computer:~/x ritchiey$ # But fritchie-youngs-computer:~/x ritchiey$ # But fritchie-youngs-computer:~/x ritchiey$ # But firitchie-youngs-computer:~/x ritchiey$ # But firitchie-youngs-computer:~/x ritchiey$ # But firritchie-youngs-computer:~/x ritchiey$ # But firritchie-youngs-computer:~/x ritchiey$ # But firsritchie-youngs-computer:~/x ritchiey$ # But firsritchie-youngs-computer:~/x ritchiey$ # But firstritchie-youngs-computer:~/x ritchiey$ # But firstritchie-youngs-computer:~/x ritchiey$ # But first,ritchie-youngs-computer:~/x ritchiey$ # But first,ritchie-youngs-computer:~/x ritchiey$ # But first, ritchie-youngs-computer:~/x ritchiey$ # But first, ritchie-youngs-computer:~/x ritchiey$ # But first, Iritchie-youngs-computer:~/x ritchiey$ # But first, Iritchie-youngs-computer:~/x ritchiey$ # But first, I'ritchie-youngs-computer:~/x ritchiey$ # But first, I'ritchie-youngs-computer:~/x ritchiey$ # But first, I'lritchie-youngs-computer:~/x ritchiey$ # But first, I'lritchie-youngs-computer:~/x ritchiey$ # But first, I'llritchie-youngs-computer:~/x ritchiey$ # But first, I'llritchie-youngs-computer:~/x ritchiey$ # But first, I'll ritchie-youngs-computer:~/x ritchiey$ # But first, I'll ritchie-youngs-computer:~/x ritchiey$ # But first, I'll nritchie-youngs-computer:~/x ritchiey$ # But first, I'll nritchie-youngs-computer:~/x ritchiey$ # But first, I'll neritchie-youngs-computer:~/x ritchiey$ # But first, I'll neritchie-youngs-computer:~/x ritchiey$ # But first, I'll neeritchie-youngs-computer:~/x ritchiey$ # But first, I'll neeritchie-youngs-computer:~/x ritchiey$ # But first, I'll needritchie-youngs-computer:~/x ritchiey$ # But first, I'll needritchie-youngs-computer:~/x ritchiey$ # But first, I'll need ritchie-youngs-computer:~/x ritchiey$ # But first, I'll need ritchie-youngs-computer:~/x ritchiey$ # But first, I'll need aritchie-youngs-computer:~/x ritchiey$ # But first, I'll need aritchie-youngs-computer:~/x ritchiey$ # But first, I'll need a ritchie-youngs-computer:~/x ritchiey$ # But first, I'll need a ritchie-youngs-computer:~/x ritchiey$ # But first, I'll need a[Kritchie-youngs-computer:~/x ritchiey$ # But first, I'll need aritchie-youngs-computer:~/x ritchiey$ # But first, I'll need [Kritchie-youngs-computer:~/x ritchiey$ # But first, I'll need ritchie-youngs-computer:~/x ritchiey$ # But first, I'll need sritchie-youngs-computer:~/x ritchiey$ # But first, I'll need sritchie-youngs-computer:~/x ritchiey$ # But first, I'll need soritchie-youngs-computer:~/x ritchiey$ # But first, I'll need soritchie-youngs-computer:~/x ritchiey$ # But first, I'll need somritchie-youngs-computer:~/x ritchiey$ # But first, I'll need somritchie-youngs-computer:~/x ritchiey$ # But first, I'll need someritchie-youngs-computer:~/x ritchiey$ # But first, I'll need someritchie-youngs-computer:~/x ritchiey$ # But first, I'll need some ritchie-youngs-computer:~/x ritchiey$ # But first, I'll need some ritchie-youngs-computer:~/x ritchiey$ # But first, I'll need some tritchie-youngs-computer:~/x ritchiey$ # But first, I'll need some tritchie-youngs-computer:~/x ritchiey$ # But first, I'll need some thritchie-youngs-computer:~/x ritchiey$ # But first, I'll need some thritchie-youngs-computer:~/x ritchiey$ # But first, I'll need some thuritchie-youngs-computer:~/x ritchiey$ # But first, I'll need some thuritchie-youngs-computer:~/x ritchiey$ # But first, I'll need some thugritchie-youngs-computer:~/x ritchiey$ # But first, I'll need some thugritchie-youngs-computer:~/x ritchiey$ # But first, I'll need some thugsritchie-youngs-computer:~/x ritchiey$ # But first, I'll need some thugs
ritchie-youngs-computer:~/x ritchiey$ ritchie-youngs-computer:~/x ritchiey$ ritchie-youngs-computer:~/x ritchiey$ #ritchie-youngs-computer:~/x ritchiey$ #ritchie-youngs-computer:~/x ritchiey$ # ritchie-youngs-computer:~/x ritchiey$ # ritchie-youngs-computer:~/x ritchiey$ # aritchie-youngs-computer:~/x ritchiey$ # aritchie-youngs-computer:~/x ritchiey$ # anritchie-youngs-computer:~/x ritchiey$ # anritchie-youngs-computer:~/x ritchiey$ # andritchie-youngs-computer:~/x ritchiey$ # andritchie-youngs-computer:~/x ritchiey$ # and ritchie-youngs-computer:~/x ritchiey$ # and ritchie-youngs-computer:~/x ritchiey$ # and Iritchie-youngs-computer:~/x ritchiey$ # and Iritchie-youngs-computer:~/x ritchiey$ # and I'ritchie-youngs-computer:~/x ritchiey$ # and I'ritchie-youngs-computer:~/x ritchiey$ # and I'lritchie-youngs-computer:~/x ritchiey$ # and I'lritchie-youngs-computer:~/x ritchiey$ # and I'llritchie-youngs-computer:~/x ritchiey$ # and I'llritchie-youngs-computer:~/x ritchiey$ # and I'll ritchie-youngs-computer:~/x ritchiey$ # and I'll ritchie-youngs-computer:~/x ritchiey$ # and I'll nritchie-youngs-computer:~/x ritchiey$ # and I'll nritchie-youngs-computer:~/x ritchiey$ # and I'll neritchie-youngs-computer:~/x ritchiey$ # and I'll neritchie-youngs-computer:~/x ritchiey$ # and I'll neeritchie-youngs-computer:~/x ritchiey$ # and I'll neeritchie-youngs-computer:~/x ritchiey$ # and I'll needritchie-youngs-computer:~/x ritchiey$ # and I'll needritchie-youngs-computer:~/x ritchiey$ # and I'll need ritchie-youngs-computer:~/x ritchiey$ # and I'll need ritchie-youngs-computer:~/x ritchiey$ # and I'll need sritchie-youngs-computer:~/x ritchiey$ # and I'll need sritchie-youngs-computer:~/x ritchiey$ # and I'll need soritchie-youngs-computer:~/x ritchiey$ # and I'll need soritchie-youngs-computer:~/x ritchiey$ # and I'll need somritchie-youngs-computer:~/x ritchiey$ # and I'll need somritchie-youngs-computer:~/x ritchiey$ # and I'll need someritchie-youngs-computer:~/x ritchiey$ # and I'll need someritchie-youngs-computer:~/x ritchiey$ # and I'll need some ritchie-youngs-computer:~/x ritchiey$ # and I'll need some ritchie-youngs-computer:~/x ritchiey$ # and I'll need some writchie-youngs-computer:~/x ritchiey$ # and I'll need some writchie-youngs-computer:~/x ritchiey$ # and I'll need some waritchie-youngs-computer:~/x ritchiey$ # and I'll need some waritchie-youngs-computer:~/x ritchiey$ # and I'll need some wayritchie-youngs-computer:~/x ritchiey$ # and I'll need some wayritchie-youngs-computer:~/x ritchiey$ # and I'll need some way ritchie-youngs-computer:~/x ritchiey$ # and I'll need some way ritchie-youngs-computer:~/x ritchiey$ # and I'll need some way tritchie-youngs-computer:~/x ritchiey$ # and I'll need some way tritchie-youngs-computer:~/x ritchiey$ # and I'll need some way toritchie-youngs-computer:~/x ritchiey$ # and I'll need some way toritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to ritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to ritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to kritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to kritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keeritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keeritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keepritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keepritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keep ritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keep ritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keep tritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keep tritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keep trritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keep trritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keep traritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keep traritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keep tracritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keep tracritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keep trackritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keep trackritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keep track ritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keep track ritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keep track oritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keep track oritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keep track ofritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keep track ofritchie-youngs-computer:~/x ritchiey$ # and I'll need some way to keep track of ttthththethethemthemthem.them.them[Kthemthem.them.
ritchie-youngs-computer:~/x ritchiey$ ritchie-youngs-computer:~/x ritchiey$ ritchie-youngs-computer:~/x ritchiey$ #ritchie-youngs-computer:~/x ritchiey$ #ritchie-youngs-computer:~/x ritchiey$ # ritchie-youngs-computer:~/x ritchiey$ # ritchie-youngs-computer:~/x ritchiey$ # Iritchie-youngs-computer:~/x ritchiey$ # Iritchie-youngs-computer:~/x ritchiey$ # I ritchie-youngs-computer:~/x ritchiey$ # I ritchie-youngs-computer:~/x ritchiey$ # I kritchie-youngs-computer:~/x ritchiey$ # I kritchie-youngs-computer:~/x ritchiey$ # I knritchie-youngs-computer:~/x ritchiey$ # I knritchie-youngs-computer:~/x ritchiey$ # I knoritchie-youngs-computer:~/x ritchiey$ # I knoritchie-youngs-computer:~/x ritchiey$ # I knowritchie-youngs-computer:~/x ritchiey$ # I knowritchie-youngs-computer:~/x ritchiey$ # I know ritchie-youngs-computer:~/x ritchiey$ # I know ritchie-youngs-computer:~/x ritchiey$ # I know Iritchie-youngs-computer:~/x ritchiey$ # I know Iritchie-youngs-computer:~/x ritchiey$ # I know I'ritchie-youngs-computer:~/x ritchiey$ # I know I'ritchie-youngs-computer:~/x ritchiey$ # I know I'lritchie-youngs-computer:~/x ritchiey$ # I know I'lritchie-youngs-computer:~/x ritchiey$ # I know I'llritchie-youngs-computer:~/x ritchiey$ # I know I'llritchie-youngs-computer:~/x ritchiey$ # I know I'll ritchie-youngs-computer:~/x ritchiey$ # I know I'll ritchie-youngs-computer:~/x ritchiey$ # I know I'll hritchie-youngs-computer:~/x ritchiey$ # I know I'll hritchie-youngs-computer:~/x ritchiey$ # I know I'll haritchie-youngs-computer:~/x ritchiey$ # I know I'll haritchie-youngs-computer:~/x ritchiey$ # I know I'll havritchie-youngs-computer:~/x ritchiey$ # I know I'll havritchie-youngs-computer:~/x ritchiey$ # I know I'll haveritchie-youngs-computer:~/x ritchiey$ # I know I'll haveritchie-youngs-computer:~/x ritchiey$ # I know I'll have ritchie-youngs-computer:~/x ritchiey$ # I know I'll have ritchie-youngs-computer:~/x ritchiey$ # I know I'll have aritchie-youngs-computer:~/x ritchiey$ # I know I'll have aritchie-youngs-computer:~/x ritchiey$ # I know I'll have a ritchie-youngs-computer:~/x ritchiey$ # I know I'll have a ritchie-youngs-computer:~/x ritchiey$ # I know I'll have a critchie-youngs-computer:~/x ritchiey$ # I know I'll have a critchie-youngs-computer:~/x ritchiey$ # I know I'll have a ceritchie-youngs-computer:~/x ritchiey$ # I know I'll have a ceritchie-youngs-computer:~/x ritchiey$ # I know I'll have a cenritchie-youngs-computer:~/x ritchiey$ # I know I'll have a cenritchie-youngs-computer:~/x ritchiey$ # I know I'll have a centritchie-youngs-computer:~/x ritchiey$ # I know I'll have a centritchie-youngs-computer:~/x ritchiey$ # I know I'll have a centrritchie-youngs-computer:~/x ritchiey$ # I know I'll have a centrritchie-youngs-computer:~/x ritchiey$ # I know I'll have a centraritchie-youngs-computer:~/x ritchiey$ # I know I'll have a centraritchie-youngs-computer:~/x ritchiey$ # I know I'll have a centralritchie-youngs-computer:~/x ritchiey$ # I know I'll have a centralritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central ritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central ritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central dritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central dritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central daritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central daritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central datritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central datritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central da[Kritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central daritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central d[Kritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central dritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central [Kritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central ritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central dritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central dritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central diritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central diritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central dirritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central dirritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central direritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central direritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central direcritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central direcritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central directritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central directritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central directoritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central directoritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central directorritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central directorritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central directoryritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central directoryritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central directory ritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central directory ritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central directory oritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central directory oritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central directory ofritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central directory ofritchie-youngs-computer:~/x ritchiey$ # I know I'll have a central directory of ttthththuthuthugthugthugsthugsthugs.thugs.thugs. thugs. thugs.[Kthugs.
ritchie-youngs-computer:~/x ritchiey$ ritchie-youngs-computer:~/x ritchiey$ ritchie-youngs-computer:~/x ritchiey$ #ritchie-youngs-computer:~/x ritchiey$ #ritchie-youngs-computer:~/x ritchiey$ # ritchie-youngs-computer:~/x ritchiey$ # ritchie-youngs-computer:~/x ritchiey$ # Iritchie-youngs-computer:~/x ritchiey$ # Iritchie-youngs-computer:~/x ritchiey$ # I'ritchie-youngs-computer:~/x ritchiey$ # I'ritchie-youngs-computer:~/x ritchiey$ # I'lritchie-youngs-computer:~/x ritchiey$ # I'lritchie-youngs-computer:~/x ritchiey$ # I'llritchie-youngs-computer:~/x ritchiey$ # I'llritchie-youngs-computer:~/x ritchiey$ # I'll ritchie-youngs-computer:~/x ritchiey$ # I'll ritchie-youngs-computer:~/x ritchiey$ # I'll sritchie-youngs-computer:~/x ritchiey$ # I'll sritchie-youngs-computer:~/x ritchiey$ # I'll stritchie-youngs-computer:~/x ritchiey$ # I'll stritchie-youngs-computer:~/x ritchiey$ # I'll storitchie-youngs-computer:~/x ritchiey$ # I'll storitchie-youngs-computer:~/x ritchiey$ # I'll storritchie-youngs-computer:~/x ritchiey$ # I'll storritchie-youngs-computer:~/x ritchiey$ # I'll storeritchie-youngs-computer:~/x ritchiey$ # I'll storeritchie-youngs-computer:~/x ritchiey$ # I'll store ritchie-youngs-computer:~/x ritchiey$ # I'll store ritchie-youngs-computer:~/x ritchiey$ # I'll store tritchie-youngs-computer:~/x ritchiey$ # I'll store tritchie-youngs-computer:~/x ritchiey$ # I'll store thritchie-youngs-computer:~/x ritchiey$ # I'll store thritchie-youngs-computer:~/x ritchiey$ # I'll store theritchie-youngs-computer:~/x ritchiey$ # I'll store theritchie-youngs-computer:~/x ritchiey$ # I'll store themritchie-youngs-computer:~/x ritchiey$ # I'll store themritchie-youngs-computer:~/x ritchiey$ # I'll store them ritchie-youngs-computer:~/x ritchiey$ # I'll store them ritchie-youngs-computer:~/x ritchiey$ # I'll store them iritchie-youngs-computer:~/x ritchiey$ # I'll store them iritchie-youngs-computer:~/x ritchiey$ # I'll store them inritchie-youngs-computer:~/x ritchiey$ # I'll store them inritchie-youngs-computer:~/x ritchiey$ # I'll store them in ritchie-youngs-computer:~/x ritchiey$ # I'll store them in ritchie-youngs-computer:~/x ritchiey$ # I'll store them in aritchie-youngs-computer:~/x ritchiey$ # I'll store them in aritchie-youngs-computer:~/x ritchiey$ # I'll store them in anritchie-youngs-computer:~/x ritchiey$ # I'll store them in anritchie-youngs-computer:~/x ritchiey$ # I'll store them in an ritchie-youngs-computer:~/x ritchiey$ # I'll store them in an ritchie-youngs-computer:~/x ritchiey$ # I'll store them in an eritchie-youngs-computer:~/x ritchiey$ # I'll store them in an eritchie-youngs-computer:~/x ritchiey$ # I'll store them in an [Kritchie-youngs-computer:~/x ritchiey$ # I'll store them in an ritchie-youngs-computer:~/x ritchiey$ # I'll store them in an Xritchie-youngs-computer:~/x ritchiey$ # I'll store them in an Xritchie-youngs-computer:~/x ritchiey$ # I'll store them in an XMritchie-youngs-computer:~/x ritchiey$ # I'll store them in an XMritchie-youngs-computer:~/x ritchiey$ # I'll store them in an XMLritchie-youngs-computer:~/x ritchiey$ # I'll store them in an XMLritchie-youngs-computer:~/x ritchiey$ # I'll store them in an XML ritchie-youngs-computer:~/x ritchiey$ # I'll store them in an XML ritchie-youngs-computer:~/x ritchiey$ # I'll store them in an XML fritchie-youngs-computer:~/x ritchiey$ # I'll store them in an XML fritchie-youngs-computer:~/x ritchiey$ # I'll store them in an XML firitchie-youngs-computer:~/x ritchiey$ # I'll store them in an XML firitchie-youngs-computer:~/x ritchiey$ # I'll store them in an XML filritchie-youngs-computer:~/x ritchiey$ # I'll store them in an XML filritchie-youngs-computer:~/x ritchiey$ # I'll store them in an XML fileritchie-youngs-computer:~/x ritchiey$ # I'll store them in an XML fileritchie-youngs-computer:~/x ritchiey$ # I'll store them in an XML file.ritchie-youngs-computer:~/x ritchiey$ # I'll store them in an XML file.
ritchie-youngs-computer:~/x ritchiey$ ritchie-youngs-computer:~/x ritchiey$ ritchie-youngs-computer:~/x ritchiey$ rritchie-youngs-computer:~/x ritchiey$ rritchie-youngs-computer:~/x ritchiey$ ruritchie-youngs-computer:~/x ritchiey$ ruritchie-youngs-computer:~/x ritchiey$ rubritchie-youngs-computer:~/x ritchiey$ rubritchie-youngs-computer:~/x ritchiey$ rubyritchie-youngs-computer:~/x ritchiey$ rubyritchie-youngs-computer:~/x ritchiey$ rubysritchie-youngs-computer:~/x ritchiey$ rubysritchie-youngs-computer:~/x ritchiey$ rubysyritchie-youngs-computer:~/x ritchiey$ rubysyritchie-youngs-computer:~/x ritchiey$ rubysynritchie-youngs-computer:~/x ritchiey$ rubysynritchie-youngs-computer:~/x ritchiey$ rubysyncritchie-youngs-computer:~/x ritchiey$ rubysyncritchie-youngs-computer:~/x ritchiey$ rubysync ritchie-youngs-computer:~/x ritchiey$ rubysync ritchie-youngs-computer:~/x ritchiey$ rubysync[Kritchie-youngs-computer:~/x ritchiey$ rubysyncritchie-youngs-computer:~/x ritchiey$ rubysyn[Kritchie-youngs-computer:~/x ritchiey$ rubysynritchie-youngs-computer:~/x ritchiey$ rubysy[Kritchie-youngs-computer:~/x ritchiey$ rubysyritchie-youngs-computer:~/x ritchiey$ rubys[Kritchie-youngs-computer:~/x ritchiey$ rubysritchie-youngs-computer:~/x ritchiey$ ruby[Kritchie-youngs-computer:~/x ritchiey$ rubyritchie-youngs-computer:~/x ritchiey$ rub[Kritchie-youngs-computer:~/x ritchiey$ rubritchie-youngs-computer:~/x ritchiey$ ru[Kritchie-youngs-computer:~/x ritchiey$ ruritchie-youngs-computer:~/x ritchiey$ r[Kritchie-youngs-computer:~/x ritchiey$ rritchie-youngs-computer:~/x ritchiey$ [Kritchie-youngs-computer:~/x ritchiey$ ritchie-youngs-computer:~/x ritchiey$ lritchie-youngs-computer:~/x ritchiey$ lritchie-youngs-computer:~/x ritchiey$ leritchie-youngs-computer:~/x ritchiey$ leritchie-youngs-computer:~/x ritchiey$ letritchie-youngs-computer:~/x ritchiey$ letritchie-youngs-computer:~/x ritchiey$ le[Kritchie-youngs-computer:~/x ritchiey$ leritchie-youngs-computer:~/x ritchiey$ l[Kritchie-youngs-computer:~/x ritchiey$ lritchie-youngs-computer:~/x ritchiey$ [Kritchie-youngs-computer:~/x ritchiey$ ritchie-youngs-computer:~/x ritchiey$ #ritchie-youngs-computer:~/x ritchiey$ #ritchie-youngs-computer:~/x ritchiey$ # ritchie-youngs-computer:~/x ritchiey$ # ritchie-youngs-computer:~/x ritchiey$ # lritchie-youngs-computer:~/x ritchiey$ # lritchie-youngs-computer:~/x ritchiey$ # leritchie-youngs-computer:~/x ritchiey$ # leritchie-youngs-computer:~/x ritchiey$ # letritchie-youngs-computer:~/x ritchiey$ # letritchie-youngs-computer:~/x ritchiey$ # letsritchie-youngs-computer:~/x ritchiey$ # letsritchie-youngs-computer:~/x ritchiey$ # lets ritchie-youngs-computer:~/x ritchiey$ # lets ritchie-youngs-computer:~/x ritchiey$ # lets uritchie-youngs-computer:~/x ritchiey$ # lets uritchie-youngs-computer:~/x ritchiey$ # lets usritchie-youngs-computer:~/x ritchiey$ # lets usritchie-youngs-computer:~/x ritchiey$ # lets useritchie-youngs-computer:~/x ritchiey$ # lets useritchie-youngs-computer:~/x ritchiey$ # lets use ritchie-youngs-computer:~/x ritchiey$ # lets use ritchie-youngs-computer:~/x ritchiey$ # lets use tritchie-youngs-computer:~/x ritchiey$ # lets use tritchie-youngs-computer:~/x ritchiey$ # lets use thritchie-youngs-computer:~/x ritchiey$ # lets use thritchie-youngs-computer:~/x ritchiey$ # lets use thiritchie-youngs-computer:~/x ritchiey$ # lets use thiritchie-youngs-computer:~/x ritchiey$ # lets use th[Kritchie-youngs-computer:~/x ritchiey$ # lets use thritchie-youngs-computer:~/x ritchiey$ # lets use t[Kritchie-youngs-computer:~/x ritchiey$ # lets use tritchie-youngs-computer:~/x ritchiey$ # lets use [Kritchie-youngs-computer:~/x ritchiey$ # lets use ritchie-youngs-computer:~/x ritchiey$ # lets use tritchie-youngs-computer:~/x ritchiey$ # lets use tritchie-youngs-computer:~/x ritchiey$ # lets use thritchie-youngs-computer:~/x ritchiey$ # lets use thritchie-youngs-computer:~/x ritchiey$ # lets use thiritchie-youngs-computer:~/x ritchiey$ # lets use thiritchie-youngs-computer:~/x ritchiey$ # lets use thisritchie-youngs-computer:~/x ritchiey$ # lets use thisritchie-youngs-computer:~/x ritchiey$ # lets use this ritchie-youngs-computer:~/x ritchiey$ # lets use this ritchie-youngs-computer:~/x ritchiey$ # lets use this Rritchie-youngs-computer:~/x ritchiey$ # lets use this Rritchie-youngs-computer:~/x ritchiey$ # lets use this Ruritchie-youngs-computer:~/x ritchiey$ # lets use this Ruritchie-youngs-computer:~/x ritchiey$ # lets use this Rubritchie-youngs-computer:~/x ritchiey$ # lets use this Rubritchie-youngs-computer:~/x ritchiey$ # lets use this Rubyritchie-youngs-computer:~/x ritchiey$ # lets use this Rubyritchie-youngs-computer:~/x ritchiey$ # lets use this RubySritchie-youngs-computer:~/x ritchiey$ # lets use this RubySritchie-youngs-computer:~/x ritchiey$ # lets use this RubySyritchie-youngs-computer:~/x ritchiey$ # lets use this RubySyritchie-youngs-computer:~/x ritchiey$ # lets use this RubySynritchie-youngs-computer:~/x ritchiey$ # lets use this RubySynritchie-youngs-computer:~/x ritchiey$ # lets use this RubySyncritchie-youngs-computer:~/x ritchiey$ # lets use this RubySyncritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync ritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync ritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync toritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync toritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tolritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tolritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tol ritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tol ritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tol[Kritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tolritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync to[Kritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync toritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tooritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tooritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync toolritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync toolritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool ritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool ritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool tritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool tritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool toritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool toritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to ritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to ritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to iritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to iritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to imritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to imritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to impritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to impritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to imporitchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to imporitchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to imporritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to imporritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to importritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to importritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to import ritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to import ritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to import tritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to import tritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to import th eeememe[Kee e e[Ke[K[Aritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to import t[K
[K[Aritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to import tritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to import [Kritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to import ritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to import[Kritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to importritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to impor[Kritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to imporritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to impo[Kritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to imporitchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to imp[Kritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to impritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to im[Kritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to imritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to i[Kritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to iritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to [Kritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to ritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool to[Kritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool toritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool t[Kritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool tritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool [Kritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool ritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tool[Kritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync toolritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync too[Kritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tooritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync to[Kritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync toritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync t[Kritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync tritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync [Kritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync ritchie-youngs-computer:~/x ritchiey$ # lets use this RubySync[Kritchie-youngs-computer:~/x ritchiey$ # lets use this RubySyncritchie-youngs-computer:~/x ritchiey$ # lets use this RubySyn[Kritchie-youngs-computer:~/x ritchiey$ # lets use this RubySynritchie-youngs-computer:~/x ritchiey$ # lets use this RubySy[Kritchie-youngs-computer:~/x ritchiey$ # lets use this RubySyritchie-youngs-computer:~/x ritchiey$ # lets use this RubyS[Kritchie-youngs-computer:~/x ritchiey$ # lets use this RubySritchie-youngs-computer:~/x ritchiey$ # lets use this Ruby[Kritchie-youngs-computer:~/x ritchiey$ # lets use this Rubyritchie-youngs-computer:~/x ritchiey$ # lets use this Rub[Kritchie-youngs-computer:~/x ritchiey$ # lets use this Rubritchie-youngs-computer:~/x ritchiey$ # lets use this Ru[Kritchie-youngs-computer:~/x ritchiey$ # lets use this Ruritchie-youngs-computer:~/x ritchiey$ # lets use this R[Kritchie-youngs-computer:~/x ritchiey$ # lets use this Rritchie-youngs-computer:~/x ritchiey$ # lets use this [Kritchie-youngs-computer:~/x ritchiey$ # lets use this ritchie-youngs-computer:~/x ritchiey$ # lets use this[Kritchie-youngs-computer:~/x ritchiey$ # lets use thisritchie-youngs-computer:~/x ritchiey$ # lets use thi[Kritchie-youngs-computer:~/x ritchiey$ # lets use thiritchie-youngs-computer:~/x ritchiey$ # lets use th[Kritchie-youngs-computer:~/x ritchiey$ # lets use thritchie-youngs-computer:~/x ritchiey$ # lets use t[Kritchie-youngs-computer:~/x ritchiey$ # lets use tritchie-youngs-computer:~/x ritchiey$ # lets use [Kritchie-youngs-computer:~/x ritchiey$ # lets use ritchie-youngs-computer:~/x ritchiey$ # lets use Rritchie-youngs-computer:~/x ritchiey$ # lets use Rritchie-youngs-computer:~/x ritchiey$ # lets use Roritchie-youngs-computer:~/x ritchiey$ # lets use Roritchie-youngs-computer:~/x ritchiey$ # lets use R[Kritchie-youngs-computer:~/x ritchiey$ # lets use Rritchie-youngs-computer:~/x ritchiey$ # lets use Ruritchie-youngs-computer:~/x ritchiey$ # lets use Ruritchie-youngs-computer:~/x ritchiey$ # lets use Rubritchie-youngs-computer:~/x ritchiey$ # lets use Rubritchie-youngs-computer:~/x ritchiey$ # lets use Rubyritchie-youngs-computer:~/x ritchiey$ # lets use Rubyritchie-youngs-computer:~/x ritchiey$ # lets use RubySritchie-youngs-computer:~/x ritchiey$ # lets use RubySritchie-youngs-computer:~/x ritchiey$ # lets use RubySyritchie-youngs-computer:~/x ritchiey$ # lets use RubySyritchie-youngs-computer:~/x ritchiey$ # lets use RubySynritchie-youngs-computer:~/x ritchiey$ # lets use RubySynritchie-youngs-computer:~/x ritchiey$ # lets use RubySyncritchie-youngs-computer:~/x ritchiey$ # lets use RubySyncritchie-youngs-computer:~/x ritchiey$ # lets use RubySync ritchie-youngs-computer:~/x ritchiey$ # lets use RubySync ritchie-youngs-computer:~/x ritchiey$ # lets use RubySync tritchie-youngs-computer:~/x ritchiey$ # lets use RubySync tritchie-youngs-computer:~/x ritchiey$ # lets use RubySync toritchie-youngs-computer:~/x ritchiey$ # lets use RubySync toritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to ritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to ritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to iritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to iritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to imritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to imritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to impritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to impritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to imporitchie-youngs-computer:~/x ritchiey$ # lets use RubySync to imporitchie-youngs-computer:~/x ritchiey$ # lets use RubySync to imporritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to imporritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to importritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to importritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to import ritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to import ritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to import tritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to import tritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to import thritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to import thritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to import theritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to import theritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to import themritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to import themritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to import theritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to import thritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to import tritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to import ritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to importritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to imporritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to imporitchie-youngs-computer:~/x ritchiey$ # lets use RubySync to impritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to imritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to iritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to ritchie-youngs-computer:~/x ritchiey$ # lets use RubySync toritchie-youngs-computer:~/x ritchiey$ # lets use RubySync tritchie-youngs-computer:~/x ritchiey$ # lets use RubySync ritchie-youngs-computer:~/x ritchiey$ # lets use RubySyncritchie-youngs-computer:~/x ritchiey$ # lets use RubySynritchie-youngs-computer:~/x ritchiey$ # lets use RubySyritchie-youngs-computer:~/x ritchiey$ # lets use RubySritchie-youngs-computer:~/x ritchiey$ # lets use Rubyritchie-youngs-computer:~/x ritchiey$ # lets use RubySritchie-youngs-computer:~/x ritchiey$ # lets use RubySyritchie-youngs-computer:~/x ritchiey$ # lets use RubySynritchie-youngs-computer:~/x ritchiey$ # lets use RubySyncritchie-youngs-computer:~/x ritchiey$ # lets use RubySync ritchie-youngs-computer:~/x ritchiey$ # lets use RubySync tritchie-youngs-computer:~/x ritchiey$ # lets use RubySync toritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to ritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to iritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to imritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to impritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to imporitchie-youngs-computer:~/x ritchiey$ # lets use RubySync to imporritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to importritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to import ritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to import tritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to import thritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to import theritchie-youngs-computer:~/x ritchiey$ # lets use RubySync to import them
ritchie-youngs-computer:~/x ritchiey$ ritchie-youngs-computer:~/x ritchiey$ ritchie-youngs-computer:~/x ritchiey$ rritchie-youngs-computer:~/x ritchiey$ rritchie-youngs-computer:~/x ritchiey$ ruritchie-youngs-computer:~/x ritchiey$ ruritchie-youngs-computer:~/x ritchiey$ rubritchie-youngs-computer:~/x ritchiey$ rubritchie-youngs-computer:~/x ritchiey$ rubyritchie-youngs-computer:~/x ritchiey$ rubyritchie-youngs-computer:~/x ritchiey$ rubysritchie-youngs-computer:~/x ritchiey$ rubysritchie-youngs-computer:~/x ritchiey$ rubysyritchie-youngs-computer:~/x ritchiey$ rubysyritchie-youngs-computer:~/x ritchiey$ rubysynritchie-youngs-computer:~/x ritchiey$ rubysynritchie-youngs-computer:~/x ritchiey$ rubysyncritchie-youngs-computer:~/x ritchiey$ rubysyncritchie-youngs-computer:~/x ritchiey$ rubysync ritchie-youngs-computer:~/x ritchiey$ rubysync ritchie-youngs-computer:~/x ritchiey$ rubysync critchie-youngs-computer:~/x ritchiey$ rubysync critchie-youngs-computer:~/x ritchiey$ rubysync crritchie-youngs-computer:~/x ritchiey$ rubysync crritchie-youngs-computer:~/x ritchiey$ rubysync creritchie-youngs-computer:~/x ritchiey$ rubysync creritchie-youngs-computer:~/x ritchiey$ rubysync crearitchie-youngs-computer:~/x ritchiey$ rubysync crearitchie-youngs-computer:~/x ritchiey$ rubysync creatritchie-youngs-computer:~/x ritchiey$ rubysync creatritchie-youngs-computer:~/x ritchiey$ rubysync createritchie-youngs-computer:~/x ritchiey$ rubysync createritchie-youngs-computer:~/x ritchiey$ rubysync create ritchie-youngs-computer:~/x ritchiey$ rubysync create ritchie-youngs-computer:~/x ritchiey$ rubysync create mritchie-youngs-computer:~/x ritchiey$ rubysync create mritchie-youngs-computer:~/x ritchiey$ rubysync create maritchie-youngs-computer:~/x ritchiey$ rubysync create maritchie-youngs-computer:~/x ritchiey$ rubysync create mayritchie-youngs-computer:~/x ritchiey$ rubysync create mayritchie-youngs-computer:~/x ritchiey$ rubysync create mayhritchie-youngs-computer:~/x ritchiey$ rubysync create mayhritchie-youngs-computer:~/x ritchiey$ rubysync create mayheritchie-youngs-computer:~/x ritchiey$ rubysync create mayheritchie-youngs-computer:~/x ritchiey$ rubysync create mayhemritchie-youngs-computer:~/x ritchiey$ rubysync create mayhem
ritchie-youngs-computer:~/x ritchiey$ ritchie-youngs-computer:~/x ritchiey$ ritchie-youngs-computer:~/x ritchiey$ rritchie-youngs-computer:~/x ritchiey$ rritchie-youngs-computer:~/x ritchiey$ ruritchie-youngs-computer:~/x ritchiey$ ruritchie-youngs-computer:~/x ritchiey$ rubritchie-youngs-computer:~/x ritchiey$ rubritchie-youngs-computer:~/x ritchiey$ rubtritchie-youngs-computer:~/x ritchiey$ rubtritchie-youngs-computer:~/x ritchiey$ rubtyritchie-youngs-computer:~/x ritchiey$ rubtyritchie-youngs-computer:~/x ritchiey$ rubtysritchie-youngs-computer:~/x ritchiey$ rubtysritchie-youngs-computer:~/x ritchiey$ rubtysyritchie-youngs-computer:~/x ritchiey$ rubtysyritchie-youngs-computer:~/x ritchiey$ rubtysynritchie-youngs-computer:~/x ritchiey$ rubtysynritchie-youngs-computer:~/x ritchiey$ rubtysyncritchie-youngs-computer:~/x ritchiey$ rubtysyncritchie-youngs-computer:~/x ritchiey$ rubtysyn[Kritchie-youngs-computer:~/x ritchiey$ rubtysynritchie-youngs-computer:~/x ritchiey$ rubtysy[Kritchie-youngs-computer:~/x ritchiey$ rubtysyritchie-youngs-computer:~/x ritchiey$ rubtys[Kritchie-youngs-computer:~/x ritchiey$ rubtysritchie-youngs-computer:~/x ritchiey$ rubty[Kritchie-youngs-computer:~/x ritchiey$ rubtyritchie-youngs-computer:~/x ritchiey$ rubt[Kritchie-youngs-computer:~/x ritchiey$ rubtritchie-youngs-computer:~/x ritchiey$ rub[Kritchie-youngs-computer:~/x ritchiey$ rubritchie-youngs-computer:~/x ritchiey$ ru[Kritchie-youngs-computer:~/x ritchiey$ ruritchie-youngs-computer:~/x ritchiey$ r[Kritchie-youngs-computer:~/x ritchiey$ rritchie-youngs-computer:~/x ritchiey$ [Kritchie-youngs-computer:~/x ritchiey$ ritchie-youngs-computer:~/x ritchiey$ critchie-youngs-computer:~/x ritchiey$ critchie-youngs-computer:~/x ritchiey$ cdritchie-youngs-computer:~/x ritchiey$ cdritchie-youngs-computer:~/x ritchiey$ cd ritchie-youngs-computer:~/x ritchiey$ cd ritchie-youngs-computer:~/x ritchiey$ cd mritchie-youngs-computer:~/x ritchiey$ cd mritchie-youngs-computer:~/x ritchiey$ cd maritchie-youngs-computer:~/x ritchiey$ cd maritchie-youngs-computer:~/x ritchiey$ cd mayritchie-youngs-computer:~/x ritchiey$ cd mayritchie-youngs-computer:~/x ritchiey$ cd mayhritchie-youngs-computer:~/x ritchiey$ cd mayhritchie-youngs-computer:~/x ritchiey$ cd mayheritchie-youngs-computer:~/x ritchiey$ cd mayheritchie-youngs-computer:~/x ritchiey$ cd mayhemritchie-youngs-computer:~/x ritchiey$ cd mayhem
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ lritchie-youngs-computer:~/x/mayhem ritchiey$ lritchie-youngs-computer:~/x/mayhem ritchiey$ lsritchie-youngs-computer:~/x/mayhem ritchiey$ lsritchie-youngs-computer:~/x/mayhem ritchiey$ ls ritchie-youngs-computer:~/x/mayhem ritchiey$ ls ritchie-youngs-computer:~/x/mayhem ritchiey$ ls -ritchie-youngs-computer:~/x/mayhem ritchiey$ ls -ritchie-youngs-computer:~/x/mayhem ritchiey$ ls -lritchie-youngs-computer:~/x/mayhem ritchiey$ ls -l
total 0
drwxr-xr-x 2 ritchiey ritchiey 68 Sep 24 15:21 connectors
drwxr-xr-x 2 ritchiey ritchiey 68 Sep 24 15:21 db
drwxr-xr-x 2 ritchiey ritchiey 68 Sep 24 15:21 log
drwxr-xr-x 2 ritchiey ritchiey 68 Sep 24 15:21 pipelines
drwxr-xr-x 5 ritchiey ritchiey 170 Sep 24 15:21 shared
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Oritchie-youngs-computer:~/x/mayhem ritchiey$ # Oritchie-youngs-computer:~/x/mayhem ritchiey$ # Okritchie-youngs-computer:~/x/mayhem ritchiey$ # Okritchie-youngs-computer:~/x/mayhem ritchiey$ # O[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Oritchie-youngs-computer:~/x/mayhem ritchiey$ # [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # rritchie-youngs-computer:~/x/mayhem ritchiey$ # rritchie-youngs-computer:~/x/mayhem ritchiey$ # ruritchie-youngs-computer:~/x/mayhem ritchiey$ # ruritchie-youngs-computer:~/x/mayhem ritchiey$ # rubritchie-youngs-computer:~/x/mayhem ritchiey$ # rubritchie-youngs-computer:~/x/mayhem ritchiey$ # rubyritchie-youngs-computer:~/x/mayhem ritchiey$ # rubyritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync critchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync critchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync coritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync coritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync conritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync conritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync conneritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync conneritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connecritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connecritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connectritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connectritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connectoritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connectoritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connectorritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connectorritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector ritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector ritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector heritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector heritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hemritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hemritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector he[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector heritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector henritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector henritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hencritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hencritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector henchritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector henchritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector henchmritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector henchmritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector henchmeritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector henchmeritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector henchmenritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector henchmenritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector henchmenmritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector henchmenmritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector henchmen[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector henchmenritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector henchme[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector henchmeritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector henchm[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector henchmritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hench[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector henchritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector henc[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hencritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hen[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector henritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector he[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector heritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector h[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hrritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hrritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr ritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr ritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -ritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -ritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -rritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -rritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -ritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -tritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -tritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -t ritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -t ritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -t critchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -t critchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -t csritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -t csritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -t csvritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -t csvritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -t csv_ritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -t csv_ritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -t csv_fritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -t csv_fritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -t csv_firitchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -t csv_firitchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -t csv_filritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -t csv_filritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -t csv_file [K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # rubysync connector hr -t csv_fil[Ke
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ #[Kritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync critchie-youngs-computer:~/x/mayhem ritchiey$ rubysync critchie-youngs-computer:~/x/mayhem ritchiey$ rubysync cnritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync cnritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync cnnritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync cnnritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync cn[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync cnritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync c[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync critchie-youngs-computer:~/x/mayhem ritchiey$ rubysync coritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync coritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync conritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync conritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync conneritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync conneritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connecritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connecritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connectritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connectritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connectoritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connectoritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connectorritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connectorritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hrritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hrritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr -ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr -ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr -tritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr -tritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr -t ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr -t ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr -t critchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr -t critchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr -t csritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr -t csritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr -t csvritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr -t csvritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr -t csv_ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr -t csv_ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr -t csv_fritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr -t csv_fritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr -t csv_firitchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr -t csv_firitchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr -t csv_filritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr -t csv_filritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr -t csv_fileritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hr -t csv_file
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync critchie-youngs-computer:~/x/mayhem ritchiey$ rubysync critchie-youngs-computer:~/x/mayhem ritchiey$ rubysync coritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync coritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync conritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync conritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync conneritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync conneritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connecritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connecritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connectritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connectritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connectoritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connectoritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connectorritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connectorritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hrritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hrritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector h[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector hritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector [Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector dritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector dritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector daritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector daritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector datritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector datritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector dataritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector dataritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector databritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector databritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector databaritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector databaritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector databanritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector databanritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector databankritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector databankritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector databank ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector databank ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector databank -ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector databank -ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector databank -tritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector databank -tritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector databank -t ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector databank -t ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector databank -t xritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector databank -t xritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector databank -t xmritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector databank -t xmritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector databank -t xmlritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector databank -t xml
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Lritchie-youngs-computer:~/x/mayhem ritchiey$ # Lritchie-youngs-computer:~/x/mayhem ritchiey$ # Leritchie-youngs-computer:~/x/mayhem ritchiey$ # Leritchie-youngs-computer:~/x/mayhem ritchiey$ # Letritchie-youngs-computer:~/x/mayhem ritchiey$ # Letritchie-youngs-computer:~/x/mayhem ritchiey$ # Letsritchie-youngs-computer:~/x/mayhem ritchiey$ # Letsritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets ritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets ritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets hritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets hritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets haritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets haritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets havritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets havritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets haveritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets haveritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have ritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have ritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have aritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have aritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a ritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a ritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a lritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a lritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a loritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a loritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a looritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a looritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a lookritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a lookritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look ritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look ritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look writchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look writchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look whritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look whritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look wharitchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look wharitchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look whatritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look whatritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what ritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what ritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what rritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what rritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what ruritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what ruritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what rubritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what rubritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what rubyritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what rubyritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what rubysritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what rubysritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what rubysync critchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what rubysync critchie-youngs-computer:~/x/mayhem ritchiey$ # Lets have a look what rubysync cr eeeaeaeateateateeateeateseateseates eates eates feates feates foeates foeates foreates foreates for eates for eates for ueates for ueates for useates for useates for us:eates for us:eates for us[Keates for us
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat critchie-youngs-computer:~/x/mayhem ritchiey$ cat critchie-youngs-computer:~/x/mayhem ritchiey$ cat coritchie-youngs-computer:~/x/mayhem ritchiey$ cat coritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/ritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/ritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/hritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/hritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/hrritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/hrritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/hr_connector.rb ritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/hr_connector.rb
class HrConnector < RubySync::Connectors::CsvFileConnector
# True if the first line of each file is a header
# and should be ignored
header_line true
field_names ['names', 'of', 'the', 'columns']
path_field 'name_of_field_to_use_as_the_id'
in_path '/directory/to/read/files/from'
out_path '/directory/to/write/files/to'
in_glob '*.csv'
out_extension '.csv'
end
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # rritchie-youngs-computer:~/x/mayhem ritchiey$ # rritchie-youngs-computer:~/x/mayhem ritchiey$ # reritchie-youngs-computer:~/x/mayhem ritchiey$ # reritchie-youngs-computer:~/x/mayhem ritchiey$ # rearitchie-youngs-computer:~/x/mayhem ritchiey$ # rearitchie-youngs-computer:~/x/mayhem ritchiey$ # realritchie-youngs-computer:~/x/mayhem ritchiey$ # realritchie-youngs-computer:~/x/mayhem ritchiey$ # reallritchie-youngs-computer:~/x/mayhem ritchiey$ # reallritchie-youngs-computer:~/x/mayhem ritchiey$ # reallyritchie-youngs-computer:~/x/mayhem ritchiey$ # reallyritchie-youngs-computer:~/x/mayhem ritchiey$ # really ritchie-youngs-computer:~/x/mayhem ritchiey$ # really ritchie-youngs-computer:~/x/mayhem ritchiey$ # really nritchie-youngs-computer:~/x/mayhem ritchiey$ # really nritchie-youngs-computer:~/x/mayhem ritchiey$ # really neritchie-youngs-computer:~/x/mayhem ritchiey$ # really neritchie-youngs-computer:~/x/mayhem ritchiey$ # really neeritchie-youngs-computer:~/x/mayhem ritchiey$ # really neeritchie-youngs-computer:~/x/mayhem ritchiey$ # really needritchie-youngs-computer:~/x/mayhem ritchiey$ # really needritchie-youngs-computer:~/x/mayhem ritchiey$ # really need ritchie-youngs-computer:~/x/mayhem ritchiey$ # really need ritchie-youngs-computer:~/x/mayhem ritchiey$ # really need tritchie-youngs-computer:~/x/mayhem ritchiey$ # really need tritchie-youngs-computer:~/x/mayhem ritchiey$ # really need toritchie-youngs-computer:~/x/mayhem ritchiey$ # really need toritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to ritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to ritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to firitchie-youngs-computer:~/x/mayhem ritchiey$ # really need to firitchie-youngs-computer:~/x/mayhem ritchiey$ # really need to filritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to filritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fil ritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fil ritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fil iritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fil iritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fil inritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fil inritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fil in ritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fil in ritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fil in[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fil inritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fil i[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fil iritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fil [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fil ritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fil[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to filritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fillritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fillritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill ritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill ritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill iritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill iritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill inritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill inritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill in ritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill in ritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill in sritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill in sritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill in soritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill in soritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill in somritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill in somritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill in someritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill in someritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill in some ritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill in some ritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill in some britchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill in some britchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill in some blritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill in some blritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill in some blaritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill in some blaritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill in some blanritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill in some blanritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill in some blank sss s s hs hs hes hes hers hers heres heres here.s here.s here. s here. s here. Ss here. Ss here. Sps here. Sps here. Spes here. Spes here. Specs here. Specs here. Specis here. Specis here. Specifs here. Specifs here. Specifis here. Specifis here. Specifics here. Specifics here. Specificas here. Specificas here. Specificals here. Specificals here. Specificalls here. Specificalls here. Specificallys here. Specificallys here. Specifically,s here. Specifically,s here. Specifically, s here. Specifically, s here. Specifically, ws here. Specifically, ws here. Specifically, whs here. Specifically, whs here. Specifically, whas here. Specifically, whas here. Specifically, whats here. Specifically, whats here. Specifically, what s here. Specifically, what s here. Specifically, what ts here. Specifically, what ts here. Specifically, what ths here. Specifically, what ths here. Specifically, what thes here. Specifically, what thes here. Specifically, what the s here. Specifically, what the s here. Specifically, what the fs here. Specifically, what the fs here. Specifically, what the fis here. Specifically, what the fis here. Specifically, what the fies here. Specifically, what the fies here. Specifically, what the fiels here. Specifically, what the fiels here. Specifically, what the fields here. Specifically, what the fields here. Specifically, what the fieldss here. Specifically, what the fieldss here. Specifically, what the fields s here. Specifically, what the fields s here. Specifically, what the fields as here. Specifically, what the fields as here. Specifically, what the fields aas here. Specifically, what the fields aas here. Specifically, what the fields aars here. Specifically, what the fields aars here. Specifically, what the fields aares here. Specifically, what the fields aares here. Specifically, what the fields aar[Ks here. Specifically, what the fields aars here. Specifically, what the fields aa[Ks here. Specifically, what the fields aas here. Specifically, what the fields a[Ks here. Specifically, what the fields as here. Specifically, what the fields ars here. Specifically, what the fields ars here. Specifically, what the fields ares here. Specifically, what the fields ares here. Specifically, what the fields are,s here. Specifically, what the fields are,s here. Specifically, what the fields are, s here. Specifically, what the fields are, s here. Specifically, what the fields are,[Ks here. Specifically, what the fields are,s here. Specifically, what the fields are[Ks here. Specifically, what the fields ares here. Specifically, what the fields are s here. Specifically, what the fields are s here. Specifically, what the fields are as here. Specifically, what the fields are as here. Specifically, what the fields are ans here. Specifically, what the fields are ans here. Specifically, what the fields are ands here. Specifically, what the fields are ands here. Specifically, what the fields are and s here. Specifically, what the fields are and s here. Specifically, what the fields are and ws here. Specifically, what the fields are and ws here. Specifically, what the fields are and wes here. Specifically, what the fields are and wes here. Specifically, what the fields are and wehs here. Specifically, what the fields are and wehs here. Specifically, what the fields are and we[Ks here. Specifically, what the fields are and wes here. Specifically, what the fields are and w[Ks here. Specifically, what the fields are and ws here. Specifically, what the fields are and whs here. Specifically, what the fields are and whs here. Specifically, what the fields are and whes here. Specifically, what the fields are and whes here. Specifically, what the fields are and whers here. Specifically, what the fields are and whers here. Specifically, what the fields are and wheres here. Specifically, what the fields are and wheres here. Specifically, what the fields are and where s here. Specifically, what the fields are and where s here. Specifically, what the fields are and where ts here. Specifically, what the fields are and where ts here. Specifically, what the fields are and where ths here. Specifically, what the fields are and where ths here. Specifically, what the fields are and where t[Ks here. Specifically, what the fields are and where ts here. Specifically, what the fields are and where tos here. Specifically, what the fields are and where tos here. Specifically, what the fields are and where to s here. Specifically, what the fields are and where to s here. Specifically, what the fields are and where to rs here. Specifically, what the fields are and where to rs here. Specifically, what the fields are and where to res here. Specifically, what the fields are and where to res here. Specifically, what the fields are and where to reas here. Specifically, what the fields are and where to reas here. Specifically, what the fields are and where to reads here. Specifically, what the fields are and where to reads here. Specifically, what the fields are and where to read s here. Specifically, what the fields are and where to read s here. Specifically, what the fields are and where to read ts here. Specifically, what the fields are and where to read ts here. Specifically, what the fields are and where to read ths here. Specifically, what the fields are and where to read ths here. Specifically, what the fields are and where to read thes here. Specifically, what the fields are and where to read thes here. Specifically, what the fields are and where to read the s here. Specifically, what the fields are and where to read the s here. Specifically, what the fields are and where to read the fs here. Specifically, what the fields are and where to read the fs here. Specifically, what the fields are and where to read the fis here. Specifically, what the fields are and where to read the fis here. Specifically, what the fields are and where to read the fils here. Specifically, what the fields are and where to read the fils here. Specifically, what the fields are and where to read the files here. Specifically, what the fields are and where to read the files here. Specifically, what the fields are and where to read the filess here. Specifically, what the fields are and where to read the filess here. Specifically, what the fields are and where to read the files s here. Specifically, what the fields are and where to read the files s here. Specifically, what the fields are and where to read the files fs here. Specifically, what the fields are and where to read the files fs here. Specifically, what the fields are and where to read the files frs here. Specifically, what the fields are and where to read the files frs here. Specifically, what the fields are and where to read the files fros here. Specifically, what the fields are and where to read the files fros here. Specifically, what the fields are and where to read the files froms here. Specifically, what the fields are and where to read the files froms here. Specifically, what the fields are and where to read the files from.s here. Specifically, what the fields are and where to read the files from.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # aritchie-youngs-computer:~/x/mayhem ritchiey$ # aritchie-youngs-computer:~/x/mayhem ritchiey$ # anritchie-youngs-computer:~/x/mayhem ritchiey$ # anritchie-youngs-computer:~/x/mayhem ritchiey$ # andritchie-youngs-computer:~/x/mayhem ritchiey$ # andritchie-youngs-computer:~/x/mayhem ritchiey$ # and ritchie-youngs-computer:~/x/mayhem ritchiey$ # and ritchie-youngs-computer:~/x/mayhem ritchiey$ # and aritchie-youngs-computer:~/x/mayhem ritchiey$ # and aritchie-youngs-computer:~/x/mayhem ritchiey$ # and alritchie-youngs-computer:~/x/mayhem ritchiey$ # and alritchie-youngs-computer:~/x/mayhem ritchiey$ # and alsritchie-youngs-computer:~/x/mayhem ritchiey$ # and alsritchie-youngs-computer:~/x/mayhem ritchiey$ # and alsoritchie-youngs-computer:~/x/mayhem ritchiey$ # and alsoritchie-youngs-computer:~/x/mayhem ritchiey$ # and also,ritchie-youngs-computer:~/x/mayhem ritchiey$ # and also,ritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, ritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, ritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, writchie-youngs-computer:~/x/mayhem ritchiey$ # and also, writchie-youngs-computer:~/x/mayhem ritchiey$ # and also, whritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, whritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, whiritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, whiritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, whicritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, whicritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, whichritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, whichritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which ritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which ritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which fritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which fritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which firitchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which firitchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which fieritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which fieritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which fielritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which fielritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which fieldritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which fieldritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field ritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field ritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field tritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field tritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field toritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field toritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field to ritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field to ritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field to uritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field to uritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field to usritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field to usritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field to useritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field to useritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field to use ritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field to use ritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field to use aritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field to use aritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field to use asritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field to use asritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field to use as ritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field to use as ritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field to use as t hhhehehe he he ihe ihe idhe idhe id he id he id ohe id ohe id orhe id orhe id or he id or he id or phe id or phe id or pahe id or pahe id or pathe id or pathe id or pathhe id or pathhe id or pat[Khe id or pathe id or pa[Khe id or pahe id or p[Khe id or phe id or [Khe id or he id or[Khe id orhe id o[Khe id ohe id [Khe id he id fhe id fhe id fohe id fohe id forhe id forhe id for he id for he id for the id for the id for thhe id for thhe id for thihe id for thihe id for thishe id for thishe id for this he id for this he id for this che id for this che id for this cohe id for this cohe id for this conhe id for this conhe id for this connhe id for this connhe id for this connehe id for this connehe id for this conneche id for this conneche id for this connecthe id for this connecthe id for this connectohe id for this connectohe id for this connectorhe id for this connector
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ # and also, which field to use as thhe id for this connectorhe id for this connector[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # really need to fill in some blankss here. Specifically, what the fields are and where to read the files from.s here. Specifically, what the fields are and where to read the files from.[Aritchie-youngs-computer:~/x/mayhem ritchiey$ [4Pcat connectors/hr_connector.rb
[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/hr_connector.rb
class HrConnector < RubySync::Connectors::CsvFileConnector
# True if the first line of each file is a header
# and should be ignored
header_line true
field_names 'id,first_name,last_name,skills'.split(',')
path_field 'id'
in_path '/Users/ritchiey/x/in'
#out_path '/directory/to/write/files/to'
in_glob '*.csv'
out_extension '.csv'
end
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Nritchie-youngs-computer:~/x/mayhem ritchiey$ # Nritchie-youngs-computer:~/x/mayhem ritchiey$ # Noritchie-youngs-computer:~/x/mayhem ritchiey$ # Noritchie-youngs-computer:~/x/mayhem ritchiey$ # Notritchie-youngs-computer:~/x/mayhem ritchiey$ # Notritchie-youngs-computer:~/x/mayhem ritchiey$ # Not ritchie-youngs-computer:~/x/mayhem ritchiey$ # Not ritchie-youngs-computer:~/x/mayhem ritchiey$ # Not tritchie-youngs-computer:~/x/mayhem ritchiey$ # Not tritchie-youngs-computer:~/x/mayhem ritchiey$ # Not thritchie-youngs-computer:~/x/mayhem ritchiey$ # Not thritchie-youngs-computer:~/x/mayhem ritchiey$ # Not theritchie-youngs-computer:~/x/mayhem ritchiey$ # Not theritchie-youngs-computer:~/x/mayhem ritchiey$ # Not th[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Not thritchie-youngs-computer:~/x/mayhem ritchiey$ # Not t[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Not tritchie-youngs-computer:~/x/mayhem ritchiey$ # Not [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Not ritchie-youngs-computer:~/x/mayhem ritchiey$ # Not[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Notritchie-youngs-computer:~/x/mayhem ritchiey$ # Noteritchie-youngs-computer:~/x/mayhem ritchiey$ # Noteritchie-youngs-computer:~/x/mayhem ritchiey$ # Note ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note tritchie-youngs-computer:~/x/mayhem ritchiey$ # Note tritchie-youngs-computer:~/x/mayhem ritchiey$ # Note thritchie-youngs-computer:~/x/mayhem ritchiey$ # Note thritchie-youngs-computer:~/x/mayhem ritchiey$ # Note theritchie-youngs-computer:~/x/mayhem ritchiey$ # Note theritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the fritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the fritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the firitchie-youngs-computer:~/x/mayhem ritchiey$ # Note the firitchie-youngs-computer:~/x/mayhem ritchiey$ # Note the fieritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the fieritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the fielritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the fielritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the fieldritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the fieldritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the fieldsritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the fieldsritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the fieldritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field nritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field nritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field naritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field naritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field namritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field namritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field nameritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field nameritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field namesritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field namesritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names.ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names.ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. Iritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. Iritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I mritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I mritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I myritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I myritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I my ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I my ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I my britchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I my britchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I my [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I my ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I my[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I myritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I m[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I mritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I maritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I maritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I matritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I matritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I mat ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I mat ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I mat britchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I mat britchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I mat beritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I mat beritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I mat be ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I mat be ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I mat be[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I mat beritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I mat b[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I mat britchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I mat [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I mat ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I mat[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I matritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I ma[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I maritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I mayritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I mayritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I may ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I may ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I may britchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I may britchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I may beritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I may beritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I may be ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I may be ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I may be aritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I may be aritchie-youngs-computer:~/x/mayhem ritchiey$ # Note the field names. I may be a mmmememegmegmeglmeglmeglomeglomeglommeglommeglomameglomameglomanmeglomanmeglomanimeglomanimeglomaniameglomaniameglomaniacmeglomaniacmeglomaniac meglomaniac meglomaniac tmeglomaniac tmeglomaniac thmeglomaniac thmeglomaniac thameglomaniac thameglomaniac thatmeglomaniac thatmeglomaniac that meglomaniac that meglomaniac that[Kmeglomaniac thatmeglomaniac tha[Kmeglomaniac thameglomaniac th[Kmeglomaniac thmeglomaniac t[Kmeglomaniac tmeglomaniac [Kmeglomaniac meglomaniac bmeglomaniac bmeglomaniac bumeglomaniac bumeglomaniac butmeglomaniac butmeglomaniac but meglomaniac but meglomaniac but tmeglomaniac but tmeglomaniac but thmeglomaniac but thmeglomaniac but thameglomaniac but thameglomaniac but thatmeglomaniac but thatmeglomaniac but that meglomaniac but that meglomaniac but that dmeglomaniac but that dmeglomaniac but that domeglomaniac but that domeglomaniac but that doemeglomaniac but that doemeglomaniac but that doesmeglomaniac but that doesmeglomaniac but that doesnmeglomaniac but that doesnmeglomaniac but that doesn'meglomaniac but that doesn'meglomaniac but that doesn'tmeglomaniac but that doesn'tmeglomaniac but that doesn't meglomaniac but that doesn't meglomaniac but that doesn't mmeglomaniac but that doesn't mmeglomaniac but that doesn't memeglomaniac but that doesn't memeglomaniac but that doesn't meameglomaniac but that doesn't meameglomaniac but that doesn't meanmeglomaniac but that doesn't meanmeglomaniac but that doesn't mean meglomaniac but that doesn't mean meglomaniac but that doesn't mean Imeglomaniac but that doesn't mean Imeglomaniac but that doesn't mean I'meglomaniac but that doesn't mean I'meglomaniac but that doesn't mean I'mmeglomaniac but that doesn't mean I'mmeglomaniac but that doesn't mean I'm meglomaniac but that doesn't mean I'm meglomaniac but that doesn't mean I'm nmeglomaniac but that doesn't mean I'm nmeglomaniac but that doesn't mean I'm nomeglomaniac but that doesn't mean I'm nomeglomaniac but that doesn't mean I'm notmeglomaniac but that doesn't mean I'm notmeglomaniac but that doesn't mean I'm not meglomaniac but that doesn't mean I'm not meglomaniac but that doesn't mean I'm not lmeglomaniac but that doesn't mean I'm not lmeglomaniac but that doesn't mean I'm not lameglomaniac but that doesn't mean I'm not lameglomaniac but that doesn't mean I'm not lazmeglomaniac but that doesn't mean I'm not lazmeglomaniac but that doesn't mean I'm not lazymeglomaniac but that doesn't mean I'm not lazymeglomaniac but that doesn't mean I'm not lazy.meglomaniac but that doesn't mean I'm not lazy.meglomaniac but that doesn't mean I'm not lazy. meglomaniac but that doesn't mean I'm not lazy. meglomaniac but that doesn't mean I'm not lazy.[Kmeglomaniac but that doesn't mean I'm not lazy.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Writchie-youngs-computer:~/x/mayhem ritchiey$ # Writchie-youngs-computer:~/x/mayhem ritchiey$ # Whritchie-youngs-computer:~/x/mayhem ritchiey$ # Whritchie-youngs-computer:~/x/mayhem ritchiey$ # Wharitchie-youngs-computer:~/x/mayhem ritchiey$ # Wharitchie-youngs-computer:~/x/mayhem ritchiey$ # Whatritchie-youngs-computer:~/x/mayhem ritchiey$ # Whatritchie-youngs-computer:~/x/mayhem ritchiey$ # Wha[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Wharitchie-youngs-computer:~/x/mayhem ritchiey$ # Wh[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Whritchie-youngs-computer:~/x/mayhem ritchiey$ # W[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Writchie-youngs-computer:~/x/mayhem ritchiey$ # [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rritchie-youngs-computer:~/x/mayhem ritchiey$ # Rritchie-youngs-computer:~/x/mayhem ritchiey$ # Raritchie-youngs-computer:~/x/mayhem ritchiey$ # Raritchie-youngs-computer:~/x/mayhem ritchiey$ # Ratritchie-youngs-computer:~/x/mayhem ritchiey$ # Ratritchie-youngs-computer:~/x/mayhem ritchiey$ # Rathritchie-youngs-computer:~/x/mayhem ritchiey$ # Rathritchie-youngs-computer:~/x/mayhem ritchiey$ # Ratheritchie-youngs-computer:~/x/mayhem ritchiey$ # Ratheritchie-youngs-computer:~/x/mayhem ritchiey$ # Ratherritchie-youngs-computer:~/x/mayhem ritchiey$ # Ratherritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather tritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather tritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather thritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather thritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather tharitchie-youngs-computer:~/x/mayhem ritchiey$ # Rather tharitchie-youngs-computer:~/x/mayhem ritchiey$ # Rather thanritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather thanritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than lritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than lritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than liritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than liritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than lisritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than lisritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than listritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than listritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list oritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list oritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list ouritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list ouritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list outritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list outritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out tritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out tritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out thritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out thritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out theritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out theritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out the ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out the ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out the fritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out the fritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out the firitchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out the firitchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out the fieritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out the fieritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out the fielritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out the fielritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out the fieldritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out the fieldritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out the field ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out the field ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out the field nritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out the field nritchie-youngs-computer:~/x/mayhem ritchiey$ # Rather than list out the field na mmmememesmesmes mes mes ymes ymes y mes y mes y[Kmes ymes [Kmes mes bmes bmes bymes bymes byumes byumes byu mes byu mes byu[Kmes byumes by[Kmes bymes by mes by mes by hmes by hmes by hames by hames by hanmes by hanmes by handmes by handmes by hand mes by hand mes by hand Imes by hand Imes by hand I mes by hand I mes by hand I tmes by hand I tmes by hand I tomes by hand I tomes by hand I toomes by hand I toomes by hand I tookmes by hand I tookmes by hand I took mes by hand I took mes by hand I took ames by hand I took ames by hand I took admes by hand I took admes by hand I took advmes by hand I took advmes by hand I took advames by hand I took advames by hand I took advanmes by hand I took advanmes by hand I took advantmes by hand I took advantmes by hand I took advantames by hand I took advantames by hand I took advantaemes by hand I took advantaemes by hand I took advanta[Kmes by hand I took advantames by hand I took advantagmes by hand I took advantagmes by hand I took advantagemes by hand I took advantagemes by hand I took advantage mes by hand I took advantage mes by hand I took advantage omes by hand I took advantage omes by hand I took advantage ofmes by hand I took advantage ofmes by hand I took advantage of mes by hand I took advantage of mes by hand I took advantage of tmes by hand I took advantage of tmes by hand I took advantage of thmes by hand I took advantage of thmes by hand I took advantage of themes by hand I took advantage of themes by hand I took advantage of the mes by hand I took advantage of the mes by hand I took advantage of the fmes by hand I took advantage of the fmes by hand I took advantage of the fames by hand I took advantage of the fames by hand I took advantage of the facmes by hand I took advantage of the facmes by hand I took advantage of the factmes by hand I took advantage of the factmes by hand I took advantage of the fact mes by hand I took advantage of the fact mes by hand I took advantage of the fact tmes by hand I took advantage of the fact tmes by hand I took advantage of the fact tames by hand I took advantage of the fact tames by hand I took advantage of the fact tahmes by hand I took advantage of the fact tahmes by hand I took advantage of the fact tahtmes by hand I took advantage of the fact tahtmes by hand I took advantage of the fact taht mes by hand I took advantage of the fact taht mes by hand I took advantage of the fact taht[Kmes by hand I took advantage of the fact tahtmes by hand I took advantage of the fact tah[Kmes by hand I took advantage of the fact tahmes by hand I took advantage of the fact ta[Kmes by hand I took advantage of the fact tames by hand I took advantage of the fact t[Kmes by hand I took advantage of the fact tmes by hand I took advantage of the fact thmes by hand I took advantage of the fact thmes by hand I took advantage of the fact thames by hand I took advantage of the fact thames by hand I took advantage of the fact thatmes by hand I took advantage of the fact thatmes by hand I took advantage of the fact that mes by hand I took advantage of the fact that mes by hand I took advantage of the fact that tmes by hand I took advantage of the fact that tmes by hand I took advantage of the fact that thmes by hand I took advantage of the fact that thmes by hand I took advantage of the fact that thimes by hand I took advantage of the fact that thimes by hand I took advantage of the fact that thismes by hand I took advantage of the fact that thismes by hand I took advantage of the fact that this mes by hand I took advantage of the fact that this mes by hand I took advantage of the fact that this imes by hand I took advantage of the fact that this imes by hand I took advantage of the fact that this ismes by hand I took advantage of the fact that this ismes by hand I took advantage of the fact that this isimes by hand I took advantage of the fact that this isimes by hand I took advantage of the fact that this isi mes by hand I took advantage of the fact that this isi mes by hand I took advantage of the fact that this isi[Kmes by hand I took advantage of the fact that this isimes by hand I took advantage of the fact that this is[Kmes by hand I took advantage of the fact that this ismes by hand I took advantage of the fact that this is mes by hand I took advantage of the fact that this is mes by hand I took advantage of the fact that this is rmes by hand I took advantage of the fact that this is rmes by hand I took advantage of the fact that this is remes by hand I took advantage of the fact that this is remes by hand I took advantage of the fact that this is reames by hand I took advantage of the fact that this is reames by hand I took advantage of the fact that this is realmes by hand I took advantage of the fact that this is realmes by hand I took advantage of the fact that this is reallmes by hand I took advantage of the fact that this is reallmes by hand I took advantage of the fact that this is reallymes by hand I took advantage of the fact that this is reallymes by hand I took advantage of the fact that this is really mes by hand I took advantage of the fact that this is really mes by hand I took advantage of the fact that this is really ames by hand I took advantage of the fact that this is really ames by hand I took advantage of the fact that this is really a mes by hand I took advantage of the fact that this is really a mes by hand I took advantage of the fact that this is really a Rmes by hand I took advantage of the fact that this is really a Rmes by hand I took advantage of the fact that this is really a Rimes by hand I took advantage of the fact that this is really a Rimes by hand I took advantage of the fact that this is really a Ribmes by hand I took advantage of the fact that this is really a Ribmes by hand I took advantage of the fact that this is really a Ri[Kmes by hand I took advantage of the fact that this is really a Rimes by hand I took advantage of the fact that this is really a R[Kmes by hand I took advantage of the fact that this is really a Rmes by hand I took advantage of the fact that this is really a Rumes by hand I took advantage of the fact that this is really a Rumes by hand I took advantage of the fact that this is really a Rubmes by hand I took advantage of the fact that this is really a Rubmes by hand I took advantage of the fact that this is really a Rubymes by hand I took advantage of the fact that this is really a Rubymes by hand I took advantage of the fact that this is really a Ruby mes by hand I took advantage of the fact that this is really a Ruby mes by hand I took advantage of the fact that this is really a Ruby Smes by hand I took advantage of the fact that this is really a Ruby Smes by hand I took advantage of the fact that this is really a Ruby [Kmes by hand I took advantage of the fact that this is really a Ruby mes by hand I took advantage of the fact that this is really a Ruby smes by hand I took advantage of the fact that this is really a Ruby smes by hand I took advantage of the fact that this is really a Ruby scmes by hand I took advantage of the fact that this is really a Ruby scmes by hand I took advantage of the fact that this is really a Ruby scrmes by hand I took advantage of the fact that this is really a Ruby scrmes by hand I took advantage of the fact that this is really a Ruby scrimes by hand I took advantage of the fact that this is really a Ruby scrimes by hand I took advantage of the fact that this is really a Ruby scripmes by hand I took advantage of the fact that this is really a Ruby scripmes by hand I took advantage of the fact that this is really a Ruby scriptmes by hand I took advantage of the fact that this is really a Ruby scriptmes by hand I took advantage of the fact that this is really a Ruby script mes by hand I took advantage of the fact that this is really a Ruby script mes by hand I took advantage of the fact that this is really a Ruby script ames by hand I took advantage of the fact that this is really a Ruby script ames by hand I took advantage of the fact that this is really a Ruby script anmes by hand I took advantage of the fact that this is really a Ruby script anmes by hand I took advantage of the fact that this is really a Ruby script andmes by hand I took advantage of the fact that this is really a Ruby script andmes by hand I took advantage of the fact that this is really a Ruby script and mes by hand I took advantage of the fact that this is really a Ruby script and mes by hand I took advantage of the fact that this is really a Ruby script and g rrrararabrabrabbrabbrabberabberabbe rabbe rabbe[Krabberabbedrabbedrabbe[Krabberabb[Krabbrab[Krabra[Krar[Kr[K[Ames by hand I took advantage of the fact that this is really a Ruby script and [K
[K[Ames by hand I took advantage of the fact that this is really a Ruby script and mes by hand I took advantage of the fact that this is really a Ruby script and[Kmes by hand I took advantage of the fact that this is really a Ruby script andmes by hand I took advantage of the fact that this is really a Ruby script and mes by hand I took advantage of the fact that this is really a Ruby script and mes by hand I took advantage of the fact that this is really a Ruby script and p aaasasastastasteasteastedastedasted asted asted iasted iasted inasted inasted in asted in asted in tasted in tasted in thasted in thasted in theasted in theasted in the asted in the asted in the fasted in the fasted in the feasted in the feasted in the feaasted in the feaasted in the feadasted in the feadasted in the fea[Kasted in the feaasted in the fe[Kasted in the feasted in the f[Kasted in the fasted in the [Kasted in the asted in the hasted in the hasted in the heasted in the heasted in the heaasted in the heaasted in the headasted in the headasted in the headeasted in the headeasted in the headerasted in the headerasted in the header asted in the header asted in the header lasted in the header lasted in the header liasted in the header liasted in the header lieasted in the header lieasted in the header lienasted in the header lienasted in the header lien asted in the header lien asted in the header lien[Kasted in the header lienasted in the header lie[Kasted in the header lieasted in the header li[Kasted in the header liasted in the header linasted in the header linasted in the header lineasted in the header lineasted in the header line asted in the header line asted in the header line oasted in the header line oasted in the header line ofasted in the header line ofasted in the header line of asted in the header line of asted in the header line of tasted in the header line of tasted in the header line of thasted in the header line of thasted in the header line of theasted in the header line of theasted in the header line of the asted in the header line of the asted in the header line of the Casted in the header line of the Casted in the header line of the CSasted in the header line of the CSasted in the header line of the CSvasted in the header line of the CSvasted in the header line of the CS[Kasted in the header line of the CSasted in the header line of the CSVasted in the header line of the CSVasted in the header line of the CSV asted in the header line of the CSV asted in the header line of the CSV fasted in the header line of the CSV fasted in the header line of the CSV fiasted in the header line of the CSV fiasted in the header line of the CSV filasted in the header line of the CSV filasted in the header line of the CSV fileasted in the header line of the CSV fileasted in the header line of the CSV file asted in the header line of the CSV file asted in the header line of the CSV file aasted in the header line of the CSV file aasted in the header line of the CSV file anasted in the header line of the CSV file anasted in the header line of the CSV file andasted in the header line of the CSV file andasted in the header line of the CSV file and asted in the header line of the CSV file and asted in the header line of the CSV file and tasted in the header line of the CSV file and tasted in the header line of the CSV file and teasted in the header line of the CSV file and teasted in the header line of the CSV file and tenasted in the header line of the CSV file and tenasted in the header line of the CSV file and ten asted in the header line of the CSV file and ten asted in the header line of the CSV file and ten[Kasted in the header line of the CSV file and tenasted in the header line of the CSV file and te[Kasted in the header line of the CSV file and teasted in the header line of the CSV file and t[Kasted in the header line of the CSV file and tasted in the header line of the CSV file and thasted in the header line of the CSV file and thasted in the header line of the CSV file and theasted in the header line of the CSV file and theasted in the header line of the CSV file and thenasted in the header line of the CSV file and thenasted in the header line of the CSV file and then asted in the header line of the CSV file and then asted in the header line of the CSV file and then aasted in the header line of the CSV file and then aasted in the header line of the CSV file and then asasted in the header line of the CSV file and then asasted in the header line of the CSV file and then askasted in the header line of the CSV file and then askasted in the header line of the CSV file and then ask asted in the header line of the CSV file and then ask asted in the header line of the CSV file and then ask[Kasted in the header line of the CSV file and then askasted in the header line of the CSV file and then as[Kasted in the header line of the CSV file and then asasted in the header line of the CSV file and then a[Kasted in the header line of the CSV file and then aasted in the header line of the CSV file and then [Kasted in the header line of the CSV file and then asted in the header line of the CSV file and then tasted in the header line of the CSV file and then tasted in the header line of the CSV file and then teasted in the header line of the CSV file and then teasted in the header line of the CSV file and then telasted in the header line of the CSV file and then telasted in the header line of the CSV file and then telkasted in the header line of the CSV file and then telkasted in the header line of the CSV file and then tel[Kasted in the header line of the CSV file and then telasted in the header line of the CSV file and then tellasted in the header line of the CSV file and then tellasted in the header line of the CSV file and then tell asted in the header line of the CSV file and then tell asted in the header line of the CSV file and then tell Rasted in the header line of the CSV file and then tell Rasted in the header line of the CSV file and then tell Ruasted in the header line of the CSV file and then tell Ruasted in the header line of the CSV file and then tell Rubasted in the header line of the CSV file and then tell Rubasted in the header line of the CSV file and then tell Rubyasted in the header line of the CSV file and then tell Rubyasted in the header line of the CSV file and then tell Ruby asted in the header line of the CSV file and then tell Ruby asted in the header line of the CSV file and then tell Ruby tasted in the header line of the CSV file and then tell Ruby tasted in the header line of the CSV file and then tell Ruby toasted in the header line of the CSV file and then tell Ruby toasted in the header line of the CSV file and then tell Ruby to asted in the header line of the CSV file and then tell Ruby to asted in the header line of the CSV file and then tell Ruby to sasted in the header line of the CSV file and then tell Ruby to sasted in the header line of the CSV file and then tell Ruby to spasted in the header line of the CSV file and then tell Ruby to spasted in the header line of the CSV file and then tell Ruby to splasted in the header line of the CSV file and then tell Ruby to splasted in the header line of the CSV file and then tell Ruby to spliasted in the header line of the CSV file and then tell Ruby to spliasted in the header line of the CSV file and then tell Ruby to splicasted in the header line of the CSV file and then tell Ruby to splicasted in the header line of the CSV file and then tell Ruby to splictasted in the header line of the CSV file and then tell Ruby to splictasted in the header line of the CSV file and then tell Ruby to splic[Kasted in the header line of the CSV file and then tell Ruby to splicasted in the header line of the CSV file and then tell Ruby to spli[Kasted in the header line of the CSV file and then tell Ruby to spliasted in the header line of the CSV file and then tell Ruby to splitasted in the header line of the CSV file and then tell Ruby to splitasted in the header line of the CSV file and then tell Ruby to split asted in the header line of the CSV file and then tell Ruby to split asted in the header line of the CSV file and then tell Ruby to split tasted in the header line of the CSV file and then tell Ruby to split tasted in the header line of the CSV file and then tell Ruby to split thasted in the header line of the CSV file and then tell Ruby to split thasted in the header line of the CSV file and then tell Ruby to split theasted in the header line of the CSV file and then tell Ruby to split theasted in the header line of the CSV file and then tell Ruby to split the asted in the header line of the CSV file and then tell Ruby to split the asted in the header line of the CSV file and then tell Ruby to split the sasted in the header line of the CSV file and then tell Ruby to split the sasted in the header line of the CSV file and then tell Ruby to split the scasted in the header line of the CSV file and then tell Ruby to split the scasted in the header line of the CSV file and then tell Ruby to split the s[Kasted in the header line of the CSV file and then tell Ruby to split the sasted in the header line of the CSV file and then tell Ruby to split the stasted in the header line of the CSV file and then tell Ruby to split the stasted in the header line of the CSV file and then tell Ruby to split the strasted in the header line of the CSV file and then tell Ruby to split the strasted in the header line of the CSV file and then tell Ruby to split the striasted in the header line of the CSV file and then tell Ruby to split the striasted in the header line of the CSV file and then tell Ruby to split the strinasted in the header line of the CSV file and then tell Ruby to split the strinasted in the header line of the CSV file and then tell Ruby to split the stringasted in the header line of the CSV file and then tell Ruby to split the stringasted in the header line of the CSV file and then tell Ruby to split the string bbbybyby by by cby cby coby coby comby comby commby commby commaby commaby commasby commasby commas by commas by commas tby commas tby commas toby commas toby commas to by commas to by commas to cby commas to cby commas to crby commas to crby commas to creby commas to creby commas to creaby commas to creaby commas to creatby commas to creatby commas to createby commas to createby commas to create by commas to create by commas to create aby commas to create aby commas to create a by commas to create a by commas to create a[Kby commas to create aby commas to create anby commas to create anby commas to create an by commas to create an by commas to create an aby commas to create an aby commas to create an arby commas to create an arby commas to create an arrby commas to create an arrby commas to create an arraby commas to create an arraby commas to create an arrayby commas to create an arrayby commas to create an array.by commas to create an array.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ pritchie-youngs-computer:~/x/mayhem ritchiey$ pritchie-youngs-computer:~/x/mayhem ritchiey$ pwritchie-youngs-computer:~/x/mayhem ritchiey$ pwritchie-youngs-computer:~/x/mayhem ritchiey$ pwdritchie-youngs-computer:~/x/mayhem ritchiey$ pwd
/Users/ritchiey/x/mayhem
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ cdritchie-youngs-computer:~/x/mayhem ritchiey$ cdritchie-youngs-computer:~/x/mayhem ritchiey$ c[Kritchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ clritchie-youngs-computer:~/x/mayhem ritchiey$ clritchie-youngs-computer:~/x/mayhem ritchiey$ clsritchie-youngs-computer:~/x/mayhem ritchiey$ clsritchie-youngs-computer:~/x/mayhem ritchiey$ cls ritchie-youngs-computer:~/x/mayhem ritchiey$ cls ritchie-youngs-computer:~/x/mayhem ritchiey$ cls[Kritchie-youngs-computer:~/x/mayhem ritchiey$ clsritchie-youngs-computer:~/x/mayhem ritchiey$ cl[Kritchie-youngs-computer:~/x/mayhem ritchiey$ clritchie-youngs-computer:~/x/mayhem ritchiey$ c[Kritchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ lritchie-youngs-computer:~/x/mayhem ritchiey$ lritchie-youngs-computer:~/x/mayhem ritchiey$ lsritchie-youngs-computer:~/x/mayhem ritchiey$ lsritchie-youngs-computer:~/x/mayhem ritchiey$ ls ritchie-youngs-computer:~/x/mayhem ritchiey$ ls ritchie-youngs-computer:~/x/mayhem ritchiey$ ls -ritchie-youngs-computer:~/x/mayhem ritchiey$ ls -ritchie-youngs-computer:~/x/mayhem ritchiey$ ls -lritchie-youngs-computer:~/x/mayhem ritchiey$ ls -lritchie-youngs-computer:~/x/mayhem ritchiey$ ls -l ritchie-youngs-computer:~/x/mayhem ritchiey$ ls -l ritchie-youngs-computer:~/x/mayhem ritchiey$ ls -l .ritchie-youngs-computer:~/x/mayhem ritchiey$ ls -l .ritchie-youngs-computer:~/x/mayhem ritchiey$ ls -l ..ritchie-youngs-computer:~/x/mayhem ritchiey$ ls -l ..
total 16
-rw-r--r-- 1 ritchiey ritchiey 118 Sep 24 15:04 henchmen.csv
drwxr-xr-x 7 ritchiey ritchiey 238 Sep 24 15:21 mayhem
-rwxr--r-- 1 ritchiey ritchiey 93 Sep 24 15:06 more.csv
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Nritchie-youngs-computer:~/x/mayhem ritchiey$ # Nritchie-youngs-computer:~/x/mayhem ritchiey$ # Noritchie-youngs-computer:~/x/mayhem ritchiey$ # Noritchie-youngs-computer:~/x/mayhem ritchiey$ # Notritchie-youngs-computer:~/x/mayhem ritchiey$ # Notritchie-youngs-computer:~/x/mayhem ritchiey$ # Notiritchie-youngs-computer:~/x/mayhem ritchiey$ # Notiritchie-youngs-computer:~/x/mayhem ritchiey$ # Noticritchie-youngs-computer:~/x/mayhem ritchiey$ # Noticritchie-youngs-computer:~/x/mayhem ritchiey$ # Noticeritchie-youngs-computer:~/x/mayhem ritchiey$ # Noticeritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice ritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice ritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice tritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice tritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice thritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice thritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice tharitchie-youngs-computer:~/x/mayhem ritchiey$ # Notice tharitchie-youngs-computer:~/x/mayhem ritchiey$ # Notice thatritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice thatritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that ritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that ritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that tritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that tritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that thritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that thritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that theritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that theritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that therritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that therritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that thereritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that thereritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there ritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there ritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there iritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there iritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there isritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there isritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is ritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is ritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is nritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is nritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is noritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is noritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is notritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is notritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is not ritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is not ritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is not[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is notritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is no[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is noritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is no ritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is no ritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is no iritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is no iritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is no inritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is no inritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is no in ritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is no in ritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is no in dritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is no in dritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is no in diritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is no in diritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is no in dirritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is no in dirritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is no in direritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is no in direritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is no in direcritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is no in direcritchie-youngs-computer:~/x/mayhem ritchiey$ # Notice that there is no in direct ooorororyoryory ory ory tory tory tyory tyory tyeory tyeory tyetory tyetory tye[Kory tyeory ty[Kory tyory t[Kory tory [Kory ory tory tory teory teory tetory tetory te[Kory teory t[Kory tory [Kory ory yory yory yeory yeory yetory yet
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync firitchie-youngs-computer:~/x/mayhem ritchiey$ rubysync firitchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fieritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fieritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fielritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fielritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fieldritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fieldritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fieldsritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fieldsritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields hritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields hritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields hrritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields hr
id
first_name
last_name
skills
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # aritchie-youngs-computer:~/x/mayhem ritchiey$ # aritchie-youngs-computer:~/x/mayhem ritchiey$ # anritchie-youngs-computer:~/x/mayhem ritchiey$ # anritchie-youngs-computer:~/x/mayhem ritchiey$ # andritchie-youngs-computer:~/x/mayhem ritchiey$ # andritchie-youngs-computer:~/x/mayhem ritchiey$ # and ritchie-youngs-computer:~/x/mayhem ritchiey$ # and ritchie-youngs-computer:~/x/mayhem ritchiey$ # and iritchie-youngs-computer:~/x/mayhem ritchiey$ # and iritchie-youngs-computer:~/x/mayhem ritchiey$ # and itritchie-youngs-computer:~/x/mayhem ritchiey$ # and itritchie-youngs-computer:~/x/mayhem ritchiey$ # and it ritchie-youngs-computer:~/x/mayhem ritchiey$ # and it ritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lritchie-youngs-computer:~/x/mayhem ritchiey$ # and it liritchie-youngs-computer:~/x/mayhem ritchiey$ # and it liritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lisritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lisritchie-youngs-computer:~/x/mayhem ritchiey$ # and it listritchie-youngs-computer:~/x/mayhem ritchiey$ # and it listritchie-youngs-computer:~/x/mayhem ritchiey$ # and it listsritchie-youngs-computer:~/x/mayhem ritchiey$ # and it listsritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists ritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists ritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists tritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists tritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists thritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists thritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists theritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists theritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the ritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the ritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the firitchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the firitchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fieritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fieritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fielritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fielritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fieldritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fieldritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fieldsritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fieldsritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fields ritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fields ritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fields iritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fields iritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fields inritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fields inritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fields in ritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fields in ritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fields in tritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fields in tritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fields in thritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fields in thritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fields in theritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fields in theritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fields in the ritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fields in the ritchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fields in the critchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fields in the critchie-youngs-computer:~/x/mayhem ritchiey$ # and it lists the fields in the co nnnnnnnnennennecnnecnnectnnectnnectonnectonnectornnectornnector.nnector.nnector. nnector. nnector. Tnnector. Tnnector. Thnnector. Thnnector. Thinnector. Thinnector. Thisnnector. Thisnnector. This nnector. This nnector. This wnnector. This wnnector. This winnector. This winnector. This wilnnector. This wilnnector. This willnnector. This willnnector. This will nnector. This will nnector. This will wnnector. This will wnnector. This will wonnector. This will wonnector. This will wornnector. This will wornnector. This will worknnector. This will worknnector. This will work nnector. This will work nnector. This will work fnnector. This will work fnnector. This will work fonnector. This will work fonnector. This will work fornnector. This will work fornnector. This will work for nnector. This will work for nnector. This will work for annector. This will work for annector. This will work for annnector. This will work for annnector. This will work for anynnector. This will work for anynnector. This will work for any nnector. This will work for any nnector. This will work for any cnnector. This will work for any cnnector. This will work for any connector. This will work for any connector. This will work for any connnector. This will work for any connnector. This will work for any connnnector. This will work for any connnnector. This will work for any connennector. This will work for any connennector. This will work for any connecnnector. This will work for any connecnnector. This will work for any connectnnector. This will work for any connectnnector. This will work for any connectonnector. This will work for any connectonnector. This will work for any connectornnector. This will work for any connectornnector. This will work for any connector nnector. This will work for any connector nnector. This will work for any connector wnnector. This will work for any connector wnnector. This will work for any connector whnnector. This will work for any connector whnnector. This will work for any connector whennector. This will work for any connector whennector. This will work for any connector whernnector. This will work for any connector whernnector. This will work for any connector wherennector. This will work for any connector wherennector. This will work for any connector where nnector. This will work for any connector where nnector. This will work for any connector where innector. This will work for any connector where innector. This will work for any connector where itnnector. This will work for any connector where itnnector. This will work for any connector where it nnector. This will work for any connector where it nnector. This will work for any connector where it cnnector. This will work for any connector where it cnnector. This will work for any connector where it cannector. This will work for any connector where it cannector. This will work for any connector where it cannnector. This will work for any connector where it cannnector. This will work for any connector where it can nnector. This will work for any connector where it can nnector. This will work for any connector where it can dnnector. This will work for any connector where it can dnnector. This will work for any connector where it can dtnnector. This will work for any connector where it can dtnnector. This will work for any connector where it can d[Knnector. This will work for any connector where it can dnnector. This will work for any connector where it can dennector. This will work for any connector where it can dennector. This will work for any connector where it can detnnector. This will work for any connector where it can detnnector. This will work for any connector where it can detennector. This will work for any connector where it can detennector. This will work for any connector where it can deternnector. This will work for any connector where it can deternnector. This will work for any connector where it can determnnector. This will work for any connector where it can determnnector. This will work for any connector where it can determinnector. This will work for any connector where it can determinnector. This will work for any connector where it can determinnnector. This will work for any connector where it can determinnnector. This will work for any connector where it can determinennector. This will work for any connector where it can determinennector. This will work for any connector where it can determine nnector. This will work for any connector where it can determine nnector. This will work for any connector where it can determine tnnector. This will work for any connector where it can determine tnnector. This will work for any connector where it can determine thnnector. This will work for any connector where it can determine thnnector. This will work for any connector where it can determine thennector. This will work for any connector where it can determine thennector. This will work for any connector where it can determine the nnector. This will work for any connector where it can determine the nnector. This will work for any connector where it can determine the fnnector. This will work for any connector where it can determine the fnnector. This will work for any connector where it can determine the finnector. This will work for any connector where it can determine the finnector. This will work for any connector where it can determine the fiennector. This will work for any connector where it can determine the fiennector. This will work for any connector where it can determine the fielnnector. This will work for any connector where it can determine the fielnnector. This will work for any connector where it can determine the fieldnnector. This will work for any connector where it can determine the fieldnnector. This will work for any connector where it can determine the field nnector. This will work for any connector where it can determine the field nnector. This will work for any connector where it can determine the field nnnector. This will work for any connector where it can determine the field nnnector. This will work for any connector where it can determine the field nannector. This will work for any connector where it can determine the field nannector. This will work for any connector where it can determine the field namnnector. This will work for any connector where it can determine the field namnnector. This will work for any connector where it can determine the field namennector. This will work for any connector where it can determine the field namennector. This will work for any connector where it can determine the field names ... . . D. D. [K. . S. S. So. So. Som. Som. Some. Some. Somet. Somet. Someti. Someti. Sometim. Sometim. Sometime. Sometime. Sometime . Sometime . Sometime t. Sometime t. Sometime th. Sometime th. Sometime t[K. Sometime t. Sometime [K. Sometime . Sometime[K. Sometime. Sometimes. Sometimes. Sometimes . Sometimes . Sometimes t. Sometimes t. Sometimes th. Sometimes th. Sometimes thi. Sometimes thi. Sometimes this. Sometimes this. Sometimes this . Sometimes this . Sometimes this w. Sometimes this w. Sometimes this wi. Sometimes this wi. Sometimes this wil. Sometimes this wil. Sometimes this will. Sometimes this will. Sometimes this will . Sometimes this will . Sometimes this will b. Sometimes this will b. Sometimes this will be. Sometimes this will be. Sometimes this will b[K. Sometimes this will b. Sometimes this will [K. Sometimes this will . Sometimes this will m. Sometimes this will m. Sometimes this will me. Sometimes this will me. Sometimes this will mea. Sometimes this will mea. Sometimes this will mean. Sometimes this will mean. Sometimes this will mean . Sometimes this will mean . Sometimes this will mean i. Sometimes this will mean i. Sometimes this will mean in. Sometimes this will mean in. Sometimes this will mean int. Sometimes this will mean int. Sometimes this will mean inte. Sometimes this will mean inte. Sometimes this will mean inter. Sometimes this will mean inter. Sometimes this will mean interr. Sometimes this will mean interr. Sometimes this will mean interro. Sometimes this will mean interro. Sometimes this will mean interroa. Sometimes this will mean interroa. Sometimes this will mean interro[K. Sometimes this will mean interro. Sometimes this will mean interrog. Sometimes this will mean interrog. Sometimes this will mean interroga. Sometimes this will mean interroga. Sometimes this will mean interrogat. Sometimes this will mean interrogat. Sometimes this will mean interrogati. Sometimes this will mean interrogati. Sometimes this will mean interrogatin. Sometimes this will mean interrogatin. Sometimes this will mean interrogating. Sometimes this will mean interrogating. Sometimes this will mean interrogating . Sometimes this will mean interrogating . Sometimes this will mean interrogating t. Sometimes this will mean interrogating t. Sometimes this will mean interrogating th. Sometimes this will mean interrogating th. Sometimes this will mean interrogating the. Sometimes this will mean interrogating the. Sometimes this will mean interrogating the . Sometimes this will mean interrogating the . Sometimes this will mean interrogating the m. Sometimes this will mean interrogating the m. Sometimes this will mean interrogating the me. Sometimes this will mean interrogating the me. Sometimes this will mean interrogating the met. Sometimes this will mean interrogating the met. Sometimes this will mean interrogating the meta. Sometimes this will mean interrogating the meta. Sometimes this will mean interrogating the meta . Sometimes this will mean interrogating the meta . Sometimes this will mean interrogating the meta[K. Sometimes this will mean interrogating the meta. Sometimes this will mean interrogating the metad. Sometimes this will mean interrogating the metad. Sometimes this will mean interrogating the metada. Sometimes this will mean interrogating the metada. Sometimes this will mean interrogating the metadat. Sometimes this will mean interrogating the metadat. Sometimes this will mean interrogating the metadata. Sometimes this will mean interrogating the metadata. Sometimes this will mean interrogating the metadata . Sometimes this will mean interrogating the metadata . Sometimes this will mean interrogating the metadata i. Sometimes this will mean interrogating the metadata i. Sometimes this will mean interrogating the metadata in. Sometimes this will mean interrogating the metadata in. Sometimes this will mean interrogating the metadata in . Sometimes this will mean interrogating the metadata in . Sometimes this will mean interrogating the metadata in t. Sometimes this will mean interrogating the metadata in t. Sometimes this will mean interrogating the metadata in th. Sometimes this will mean interrogating the metadata in th. Sometimes this will mean interrogating the metadata in the. Sometimes this will mean interrogating the metadata in the. Sometimes this will mean interrogating the metadata in the . Sometimes this will mean interrogating the metadata in the . Sometimes this will mean interrogating the metadata in the D. Sometimes this will mean interrogating the metadata in the D. Sometimes this will mean interrogating the metadata in the DB. Sometimes this will mean interrogating the metadata in the DB. Sometimes this will mean interrogating the metadata in the DB.. Sometimes this will mean interrogating the metadata in the DB.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ Lritchie-youngs-computer:~/x/mayhem ritchiey$ Lritchie-youngs-computer:~/x/mayhem ritchiey$ Leritchie-youngs-computer:~/x/mayhem ritchiey$ Leritchie-youngs-computer:~/x/mayhem ritchiey$ Letritchie-youngs-computer:~/x/mayhem ritchiey$ Letritchie-youngs-computer:~/x/mayhem ritchiey$ Letsritchie-youngs-computer:~/x/mayhem ritchiey$ Letsritchie-youngs-computer:~/x/mayhem ritchiey$ Lets ritchie-youngs-computer:~/x/mayhem ritchiey$ Lets ritchie-youngs-computer:~/x/mayhem ritchiey$ Lets hritchie-youngs-computer:~/x/mayhem ritchiey$ Lets hritchie-youngs-computer:~/x/mayhem ritchiey$ Lets haritchie-youngs-computer:~/x/mayhem ritchiey$ Lets haritchie-youngs-computer:~/x/mayhem ritchiey$ Lets havritchie-youngs-computer:~/x/mayhem ritchiey$ Lets havritchie-youngs-computer:~/x/mayhem ritchiey$ Lets haveritchie-youngs-computer:~/x/mayhem ritchiey$ Lets haveritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have ritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have ritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have aritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have aritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a ritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a ritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a lritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a lritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a loritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a loritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a looritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a looritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a lookritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a lookritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look ritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look ritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look oritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look oritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look ouritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look ouritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look outritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look outritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look out ritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look out ritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look out oritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look out oritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look out ouritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look out ouritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look out ourritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look out ourritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look out our ritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look out our ritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look out our[Kritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look out ourritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look out ou[Kritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look out ouritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look out o[Kritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look out oritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look out [Kritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look out ritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look out[Kritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look outritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look ou[Kritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look ouritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look o[Kritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look oritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look [Kritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look ritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a look[Kritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a lookritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a loo[Kritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a looritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a lo[Kritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a loritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a l[Kritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a lritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a [Kritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a ritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have a[Kritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have aritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have [Kritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have ritchie-youngs-computer:~/x/mayhem ritchiey$ Lets have[Kritchie-youngs-computer:~/x/mayhem ritchiey$ Lets haveritchie-youngs-computer:~/x/mayhem ritchiey$ Lets hav[Kritchie-youngs-computer:~/x/mayhem ritchiey$ Lets havritchie-youngs-computer:~/x/mayhem ritchiey$ Lets ha[Kritchie-youngs-computer:~/x/mayhem ritchiey$ Lets haritchie-youngs-computer:~/x/mayhem ritchiey$ Lets h[Kritchie-youngs-computer:~/x/mayhem ritchiey$ Lets hritchie-youngs-computer:~/x/mayhem ritchiey$ Lets [Kritchie-youngs-computer:~/x/mayhem ritchiey$ Lets ritchie-youngs-computer:~/x/mayhem ritchiey$ Lets[Kritchie-youngs-computer:~/x/mayhem ritchiey$ Letsritchie-youngs-computer:~/x/mayhem ritchiey$ Let[Kritchie-youngs-computer:~/x/mayhem ritchiey$ Letritchie-youngs-computer:~/x/mayhem ritchiey$ Le[Kritchie-youngs-computer:~/x/mayhem ritchiey$ Leritchie-youngs-computer:~/x/mayhem ritchiey$ L[Kritchie-youngs-computer:~/x/mayhem ritchiey$ Lritchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Writchie-youngs-computer:~/x/mayhem ritchiey$ # Writchie-youngs-computer:~/x/mayhem ritchiey$ # Whritchie-youngs-computer:~/x/mayhem ritchiey$ # Whritchie-youngs-computer:~/x/mayhem ritchiey$ # Wharitchie-youngs-computer:~/x/mayhem ritchiey$ # Wharitchie-youngs-computer:~/x/mayhem ritchiey$ # Whatritchie-youngs-computer:~/x/mayhem ritchiey$ # Whatritchie-youngs-computer:~/x/mayhem ritchiey$ # What ritchie-youngs-computer:~/x/mayhem ritchiey$ # What ritchie-youngs-computer:~/x/mayhem ritchiey$ # What aritchie-youngs-computer:~/x/mayhem ritchiey$ # What aritchie-youngs-computer:~/x/mayhem ritchiey$ # What abritchie-youngs-computer:~/x/mayhem ritchiey$ # What abritchie-youngs-computer:~/x/mayhem ritchiey$ # What aboritchie-youngs-computer:~/x/mayhem ritchiey$ # What aboritchie-youngs-computer:~/x/mayhem ritchiey$ # What abouritchie-youngs-computer:~/x/mayhem ritchiey$ # What abouritchie-youngs-computer:~/x/mayhem ritchiey$ # What aboutritchie-youngs-computer:~/x/mayhem ritchiey$ # What aboutritchie-youngs-computer:~/x/mayhem ritchiey$ # What about ritchie-youngs-computer:~/x/mayhem ritchiey$ # What about ritchie-youngs-computer:~/x/mayhem ritchiey$ # What about oritchie-youngs-computer:~/x/mayhem ritchiey$ # What about oritchie-youngs-computer:~/x/mayhem ritchiey$ # What about ouritchie-youngs-computer:~/x/mayhem ritchiey$ # What about ouritchie-youngs-computer:~/x/mayhem ritchiey$ # What about outritchie-youngs-computer:~/x/mayhem ritchiey$ # What about outritchie-youngs-computer:~/x/mayhem ritchiey$ # What about out ritchie-youngs-computer:~/x/mayhem ritchiey$ # What about out ritchie-youngs-computer:~/x/mayhem ritchiey$ # What about out[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # What about outritchie-youngs-computer:~/x/mayhem ritchiey$ # What about ou[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # What about ouritchie-youngs-computer:~/x/mayhem ritchiey$ # What about ourritchie-youngs-computer:~/x/mayhem ritchiey$ # What about ourritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our ritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our ritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our Xritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our Xritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our X<ritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our X<ritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our X<Lritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our X<Lritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our X<[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our X<ritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our X[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our Xritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XMritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XMritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XMLritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XMLritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XML ritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XML ritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XML critchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XML critchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XML coritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XML coritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XML conritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XML conritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XML connritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XML connritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XML conneritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XML conneritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XML connecritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XML connecritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XML connectritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XML connectritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XML connectoritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XML connectoritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XML connectorritchie-youngs-computer:~/x/mayhem ritchiey$ # What about our XML connector
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat hritchie-youngs-computer:~/x/mayhem ritchiey$ cat hritchie-youngs-computer:~/x/mayhem ritchiey$ cat hrritchie-youngs-computer:~/x/mayhem ritchiey$ cat hrritchie-youngs-computer:~/x/mayhem ritchiey$ cat h[Kritchie-youngs-computer:~/x/mayhem ritchiey$ cat hritchie-youngs-computer:~/x/mayhem ritchiey$ cat [Kritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat critchie-youngs-computer:~/x/mayhem ritchiey$ cat critchie-youngs-computer:~/x/mayhem ritchiey$ cat coritchie-youngs-computer:~/x/mayhem ritchiey$ cat coritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/ritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/ritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/
databank_connector.rb hr_connector.rb
ritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/ritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/ritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/ritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/dritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/dritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/daritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/daritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/databank_connector.rbb b
class DatabankConnector < RubySync::Connectors::XmlConnector
#
# "filename" should be the full name of the file containing
# the xml representation of the synchronized content.
# You probably want to change this:
#
filename "/tmp/rubysync.xml"
end
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/databank_connector.rbb b
class DatabankConnector < RubySync::Connectors::XmlConnector
#
# "filename" should be the full name of the file containing
# the xml representation of the synchronized content.
# You probably want to change this:
#
filename "/Users/ritchiey/x/databank.xml"
end
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ #[Kritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Jritchie-youngs-computer:~/x/mayhem ritchiey$ # Jritchie-youngs-computer:~/x/mayhem ritchiey$ # Juritchie-youngs-computer:~/x/mayhem ritchiey$ # Juritchie-youngs-computer:~/x/mayhem ritchiey$ # Jusritchie-youngs-computer:~/x/mayhem ritchiey$ # Jusritchie-youngs-computer:~/x/mayhem ritchiey$ # Justritchie-youngs-computer:~/x/mayhem ritchiey$ # Justritchie-youngs-computer:~/x/mayhem ritchiey$ # Just ritchie-youngs-computer:~/x/mayhem ritchiey$ # Just ritchie-youngs-computer:~/x/mayhem ritchiey$ # Just gritchie-youngs-computer:~/x/mayhem ritchiey$ # Just gritchie-youngs-computer:~/x/mayhem ritchiey$ # Just giritchie-youngs-computer:~/x/mayhem ritchiey$ # Just giritchie-youngs-computer:~/x/mayhem ritchiey$ # Just givritchie-youngs-computer:~/x/mayhem ritchiey$ # Just givritchie-youngs-computer:~/x/mayhem ritchiey$ # Just giveritchie-youngs-computer:~/x/mayhem ritchiey$ # Just giveritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give ritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give ritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give iritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give iritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give itritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give itritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it ritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it ritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it aritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it aritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a ritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a ritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a rritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a rritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a reritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a reritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a rearitchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a rearitchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a re[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a reritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a r[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a rritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a ritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a wrritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a wrritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a wriritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a wriritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writearitchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writearitchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeabritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeabritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeablritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeablritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeableritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeableritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable ritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable ritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable fritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable fritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable firitchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable firitchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable filritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable filritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable fileritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable fileritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable file ritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable file ritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable file nritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable file nritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable file naritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable file naritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable file n[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable file nritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable file [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable file ritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable file[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable fileritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable filenritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable filenritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable filenaritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable filenaritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable filenamritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable filenamritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable filename [Aritchie-youngs-computer:~/x/mayhem ritchiey$ # Just give it a writeable filenam[Ke
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync firitchie-youngs-computer:~/x/mayhem ritchiey$ rubysync firitchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fieritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fieritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fielritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fielritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fieldritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fieldritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fieldsritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fieldsritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields dritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields dritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields duritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields duritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields duritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields d[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields dritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields dsritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields dsritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields d[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields dritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields daritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields daritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields datritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields datritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields dataritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields dataritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields databritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields databritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields databaritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields databaritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields databanritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields databanritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields databankritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync fields databank
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Iritchie-youngs-computer:~/x/mayhem ritchiey$ # Iritchie-youngs-computer:~/x/mayhem ritchiey$ # Itritchie-youngs-computer:~/x/mayhem ritchiey$ # Itritchie-youngs-computer:~/x/mayhem ritchiey$ # It ritchie-youngs-computer:~/x/mayhem ritchiey$ # It ritchie-youngs-computer:~/x/mayhem ritchiey$ # It dritchie-youngs-computer:~/x/mayhem ritchiey$ # It dritchie-youngs-computer:~/x/mayhem ritchiey$ # It doritchie-youngs-computer:~/x/mayhem ritchiey$ # It doritchie-youngs-computer:~/x/mayhem ritchiey$ # It doeritchie-youngs-computer:~/x/mayhem ritchiey$ # It doeritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesnritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesnritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn'ritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn'ritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn'tritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn'tritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't ritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't ritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't hritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't hritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't haritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't haritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't havritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't havritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't haveritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't haveritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't have ritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't have ritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't have nritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't have nritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't have [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't have ritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't have aritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't have aritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't have anritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't have anritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't have anyritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't have anyritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't have an[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't have anritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't have a[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't have aritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't have [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't have ritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't have[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't haveritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't hav[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't havritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't ha[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't haritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't h[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't hritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't ritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn't[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn'tritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn'[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn'ritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesn[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesnritchie-youngs-computer:~/x/mayhem ritchiey$ # It does[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # It doesritchie-youngs-computer:~/x/mayhem ritchiey$ # It doe[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # It doeritchie-youngs-computer:~/x/mayhem ritchiey$ # It do[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # It doritchie-youngs-computer:~/x/mayhem ritchiey$ # It d[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # It dritchie-youngs-computer:~/x/mayhem ritchiey$ # It [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # It ritchie-youngs-computer:~/x/mayhem ritchiey$ # It critchie-youngs-computer:~/x/mayhem ritchiey$ # It critchie-youngs-computer:~/x/mayhem ritchiey$ # It caritchie-youngs-computer:~/x/mayhem ritchiey$ # It caritchie-youngs-computer:~/x/mayhem ritchiey$ # It canritchie-youngs-computer:~/x/mayhem ritchiey$ # It canritchie-youngs-computer:~/x/mayhem ritchiey$ # It can'ritchie-youngs-computer:~/x/mayhem ritchiey$ # It can'ritchie-youngs-computer:~/x/mayhem ritchiey$ # It can'tritchie-youngs-computer:~/x/mayhem ritchiey$ # It can'tritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't ritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't ritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't writchie-youngs-computer:~/x/mayhem ritchiey$ # It can't writchie-youngs-computer:~/x/mayhem ritchiey$ # It can't woritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't woritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't worritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't worritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't workritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't workritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work ritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work ritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work oritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work oritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work ouritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work ouritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work outritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work outritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out ritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out ritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out tritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out tritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out thritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out thritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out theritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out theritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the ritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the ritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the firitchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the firitchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the filritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the filritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fileritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fileritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the filedritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the filedritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the filedsritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the filedsritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the filed[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the filedritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the file[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fileritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fil[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the filritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fi[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the firitchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fieritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fieritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fielritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fielritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fieldritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fieldritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fieldsritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fieldsritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fields ritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fields ritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fields fritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fields fritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fields foritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fields foritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fields fo ritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fields fo ritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fields fo t hhhehehe he he[Kheh[Kh[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fields fo [K
[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fields fo ritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fields fo[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fields foritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fields forritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fields forritchie-youngs-computer:~/x/mayhem ritchiey$ # It can't work out the fields for ttthththethethe the the xthe xthe xmthe xmthe xmlthe xmlthe xml the xml the xml fthe xml fthe xml fithe xml fithe xml filthe xml filthe xml filethe xml filethe xml file.the xml file.the xml file[Kthe xml filethe xml file the xml file the xml file bthe xml file bthe xml file bathe xml file bathe xml file b[Kthe xml file bthe xml file bethe xml file bethe xml file becthe xml file becthe xml file becathe xml file becathe xml file becauthe xml file becauthe xml file becausthe xml file becausthe xml file becausethe xml file becausethe xml file because the xml file because the xml file because tthe xml file because tthe xml file because tethe xml file because tethe xml file because t[Kthe xml file because tthe xml file because ththe xml file because ththe xml file because thethe xml file because thethe xml file because therthe xml file because therthe xml file because therethe xml file because therethe xml file because there the xml file because there the xml file because there athe xml file because there athe xml file because there arthe xml file because there arthe xml file because there arethe xml file because there arethe xml file because there arenthe xml file because there arenthe xml file because there aren'the xml file because there aren'the xml file because there aren'tthe xml file because there aren'tthe xml file because there aren't the xml file because there aren't the xml file because there aren't[Kthe xml file because there aren'tthe xml file because there aren'[Kthe xml file because there aren'the xml file because there aren[Kthe xml file because there arenthe xml file because there are[Kthe xml file because there arethe xml file because there ar[Kthe xml file because there arthe xml file because there a[Kthe xml file because there athe xml file because there [Kthe xml file because there the xml file because there[Kthe xml file because therethe xml file because ther[Kthe xml file because therthe xml file because the[Kthe xml file because thethe xml file because th[Kthe xml file because ththe xml file because t[Kthe xml file because tthe xml file because [Kthe xml file because the xml file because[Kthe xml file becausethe xml file becaus[Kthe xml file becausthe xml file becau[Kthe xml file becauthe xml file beca[Kthe xml file becathe xml file bec[Kthe xml file becthe xml file be[Kthe xml file bethe xml file b[Kthe xml file bthe xml file [Kthe xml file the xml file[Kthe xml filethe xml file,the xml file,the xml file[Kthe xml file
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync piritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync piritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync piperitchie-youngs-computer:~/x/mayhem ritchiey$ rubysync piperitchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipelritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipelritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeliritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeliritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipelinritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipelinritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipelineritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipelineritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hrritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hrritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_iritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_iritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_imritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_imritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_impritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_impritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_imporitchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_imporitchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_imporritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_imporritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_importritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_importritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -Critchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -Critchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C critchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C critchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C clritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C clritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C cliritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C cliritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C clie [Aritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C cli[K
[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C cliritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C cl[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C clritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C c[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C critchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C [Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C hritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C hritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C hrritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C hrritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C hr ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C hr ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync pipeline hr_import -C hr - vv[KVVV V V dV dV daV daV datV datV dataV dataV databV databV databaV databaV databasV databasV databaseV databaseV databas[KV databasV databa[KV databaV databanV databanV databankV databank
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat pritchie-youngs-computer:~/x/mayhem ritchiey$ cat pritchie-youngs-computer:~/x/mayhem ritchiey$ cat poritchie-youngs-computer:~/x/mayhem ritchiey$ cat poritchie-youngs-computer:~/x/mayhem ritchiey$ cat p[Kritchie-youngs-computer:~/x/mayhem ritchiey$ cat pritchie-youngs-computer:~/x/mayhem ritchiey$ cat piritchie-youngs-computer:~/x/mayhem ritchiey$ cat piritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/ritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/ritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/hritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/hritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/hrritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/hrritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/hr_import_pipeline.rb
class HrImportPipeline < RubySync::Pipelines::BasePipeline
client :hr
vault :databank
# Remove any fields that you don't want to set in the client from the vault
allow_out 'allow', 'these', 'fields', 'through'
# Remove any fields that you don't want to set in the vault from the client
allow_in 'id', 'first_name', 'last_name', 'skills'
# If the client and vault have different names for the same field, define the
# the mapping here. For example, if the vault has a field called "first name" and
# the client has a field called givenName you may put:
# map 'first name', 'givenName'
#
# You can also calculate the values for fields. For more info, see
# http://rubysync.org/docs/rubysync-transformations/
# "in" means going from client to vault
in_transform do
#map 'sample', 'client_field'
#map 'vault', 'client_field'
#map 'fields', 'client_field'
end
# "out" means going from vault to client
out_transform do
#map 'id', 'vault_field'
#map 'first_name', 'vault_field'
#map 'last_name', 'vault_field'
#map 'skills', 'vault_field'
end
end
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Oritchie-youngs-computer:~/x/mayhem ritchiey$ # Oritchie-youngs-computer:~/x/mayhem ritchiey$ # Okritchie-youngs-computer:~/x/mayhem ritchiey$ # Okritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Okritchie-youngs-computer:~/x/mayhem ritchiey$ # O[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Oritchie-youngs-computer:~/x/mayhem ritchiey$ # [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rritchie-youngs-computer:~/x/mayhem ritchiey$ # Rritchie-youngs-computer:~/x/mayhem ritchiey$ # Ruritchie-youngs-computer:~/x/mayhem ritchiey$ # Ruritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubyritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubyritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync hritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync hritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync haritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync haritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync hasritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync hasritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has tritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has tritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has critchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has critchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has crritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has crritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has creritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has creritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has crearitchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has crearitchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has creatritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has creatritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has createritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has createritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has createdritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has createdritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created aritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created aritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created a ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created a ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created a sritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created a sritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created a soritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created a soritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created a sorritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created a sorritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created a sortritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created a sortritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created a sort ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created a sort ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created a sort oritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created a sort oritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created a sort ofritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created a sort ofritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created a sort of ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created a sort of ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created a sort of tritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created a sort of tritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created a sort of te mmmpmpmplmplmplamplamplacmplacmpla[Kmplamplatmplatmplatemplatemplate mplate mplate fmplate fmplate fomplate fomplate formplate formplate for mplate for mplate for omplate for omplate for oumplate for oumplate for ourmplate for ourmplate for our mplate for our mplate for our pmplate for our pmplate for our pimplate for our pimplate for our pipmplate for our pipmplate for our pipemplate for our pipemplate for our pipelmplate for our pipelmplate for our pipelimplate for our pipelimplate for our pipelinmplate for our pipelinmplate for our pipelinemplate for our pipelinemplate for our pipeline.mplate for our pipeline.mplate for our pipeline. mplate for our pipeline. mplate for our pipeline. Tmplate for our pipeline. Tmplate for our pipeline. Thmplate for our pipeline. Thmplate for our pipeline. Thimplate for our pipeline. Thimplate for our pipeline. Thismplate for our pipeline. Thismplate for our pipeline. This mplate for our pipeline. This mplate for our pipeline. This dmplate for our pipeline. This dmplate for our pipeline. This demplate for our pipeline. This demplate for our pipeline. This desmplate for our pipeline. This desmplate for our pipeline. This descmplate for our pipeline. This descmplate for our pipeline. This descrmplate for our pipeline. This descrmplate for our pipeline. This descrimplate for our pipeline. This descrimplate for our pipeline. This descripmplate for our pipeline. This descripmplate for our pipeline. This descriptmplate for our pipeline. This descriptmplate for our pipeline. This descrip[Kmplate for our pipeline. This descripmplate for our pipeline. This descri[Kmplate for our pipeline. This descrimplate for our pipeline. This describmplate for our pipeline. This describmplate for our pipeline. This describemplate for our pipeline. This describemplate for our pipeline. This describesmplate for our pipeline. This describesmplate for our pipeline. This describes mplate for our pipeline. This describes mplate for our pipeline. This describes smplate for our pipeline. This describes smplate for our pipeline. This describes shmplate for our pipeline. This describes shmplate for our pipeline. This describes shomplate for our pipeline. This describes shomplate for our pipeline. This describes showmplate for our pipeline. This describes showmplate for our pipeline. This describes show mplate for our pipeline. This describes show mplate for our pipeline. This describes show[Kmplate for our pipeline. This describes showmplate for our pipeline. This describes sho[Kmplate for our pipeline. This describes shomplate for our pipeline. This describes sh[Kmplate for our pipeline. This describes shmplate for our pipeline. This describes s[Kmplate for our pipeline. This describes smplate for our pipeline. This describes [Kmplate for our pipeline. This describes mplate for our pipeline. This describes hmplate for our pipeline. This describes hmplate for our pipeline. This describes homplate for our pipeline. This describes homplate for our pipeline. This describes howmplate for our pipeline. This describes howmplate for our pipeline. This describes how mplate for our pipeline. This describes how mplate for our pipeline. This describes how tmplate for our pipeline. This describes how tmplate for our pipeline. This describes how thmplate for our pipeline. This describes how thmplate for our pipeline. This describes how themplate for our pipeline. This describes how themplate for our pipeline. This describes how the mplate for our pipeline. This describes how the mplate for our pipeline. This describes how the dmplate for our pipeline. This describes how the dmplate for our pipeline. This describes how the damplate for our pipeline. This describes how the damplate for our pipeline. This describes how the datmplate for our pipeline. This describes how the datmplate for our pipeline. This describes how the datamplate for our pipeline. This describes how the datamplate for our pipeline. This describes how the data mplate for our pipeline. This describes how the data mplate for our pipeline. This describes how the data wmplate for our pipeline. This describes how the data wmplate for our pipeline. This describes how the data wimplate for our pipeline. This describes how the data wimplate for our pipeline. This describes how the data wilmplate for our pipeline. This describes how the data wilmplate for our pipeline. This describes how the data willmplate for our pipeline. This describes how the data willmplate for our pipeline. This describes how the data will mplate for our pipeline. This describes how the data will mplate for our pipeline. This describes how the data will bmplate for our pipeline. This describes how the data will bmplate for our pipeline. This describes how the data will bemplate for our pipeline. This describes how the data will bemplate for our pipeline. This describes how the data will be mplate for our pipeline. This describes how the data will be mplate for our pipeline. This describes how the data will be tmplate for our pipeline. This describes how the data will be tmplate for our pipeline. This describes how the data will be trmplate for our pipeline. This describes how the data will be trmplate for our pipeline. This describes how the data will be tramplate for our pipeline. This describes how the data will be tramplate for our pipeline. This describes how the data will be tranmplate for our pipeline. This describes how the data will be tranmplate for our pipeline. This describes how the data will be transmplate for our pipeline. This describes how the data will be transmplate for our pipeline. This describes how the data will be transfmplate for our pipeline. This describes how the data will be transfmplate for our pipeline. This describes how the data will be transfomplate for our pipeline. This describes how the data will be transfomplate for our pipeline. This describes how the data will be transformplate for our pipeline. This describes how the data will be transformplate for our pipeline. This describes how the data will be transformmplate for our pipeline. This describes how the data will be transformmplate for our pipeline. This describes how the data will be transformemplate for our pipeline. This describes how the data will be transformemplate for our pipeline. This describes how the data will be transformedmplate for our pipeline. This describes how the data will be transformedmplate for our pipeline. This describes how the data will be transformed mplate for our pipeline. This describes how the data will be transformed mplate for our pipeline. This describes how the data will be transformed amplate for our pipeline. This describes how the data will be transformed amplate for our pipeline. This describes how the data will be transformed asmplate for our pipeline. This describes how the data will be transformed asmplate for our pipeline. This describes how the data will be transformed as mplate for our pipeline. This describes how the data will be transformed as mplate for our pipeline. This describes how the data will be transformed as implate for our pipeline. This describes how the data will be transformed as implate for our pipeline. This describes how the data will be transformed as itmplate for our pipeline. This describes how the data will be transformed as itmplate for our pipeline. This describes how the data will be transformed as it mplate for our pipeline. This describes how the data will be transformed as it mplate for our pipeline. This describes how the data will be transformed as it f lllololowlowlowslowslows lows lows flows flows frlows frlows frolows frolows fromlows fromlows from lows from lows from olows from olows from onlows from onlows from onelows from onelows from one lows from one lows from one[Klows from onelows from on[Klows from onlows from o[Klows from olows from [Klows from lows from[Klows fromlows fro[Klows frolows fr[Klows frlows f[Klows flows [Klows lows blows blows belows belows betlows betlows betwlows betwlows betwelows betwelows betweelows betweelows betweenlows betweenlows between lows between lows between tlows between tlows between thlows between thlows between thelows between thelows between the lows between the lows between the clows between the clows between the colows between the colows between the conlows between the conlows between the connlows between the connlows between the connelows between the connelows between the conneclows between the conneclows between the connectlows between the connectlows between the connectolows between the connectolows between the connectorlows between the connectorlows between the connectorslows between the connectorslows between the connectors.lows between the connectors.lows between the connectors. lows between the connectors. lows between the connectors. Olows between the connectors. Olows between the connectors. Orlows between the connectors. Orlows between the connectors. Or lows between the connectors. Or lows between the connectors. Or alows between the connectors. Or alows between the connectors. Or atlows between the connectors. Or atlows between the connectors. Or at lows between the connectors. Or at lows between the connectors. Or at llows between the connectors. Or at llows between the connectors. Or at lelows between the connectors. Or at lelows between the connectors. Or at lealows between the connectors. Or at lealows between the connectors. Or at leaslows between the connectors. Or at leaslows between the connectors. Or at leastlows between the connectors. Or at leastlows between the connectors. Or at least lows between the connectors. Or at least lows between the connectors. Or at least ilows between the connectors. Or at least ilows between the connectors. Or at least islows between the connectors. Or at least islows between the connectors. Or at least i[Klows between the connectors. Or at least ilows between the connectors. Or at least itlows between the connectors. Or at least itlows between the connectors. Or at least it lows between the connectors. Or at least it lows between the connectors. Or at least it wlows between the connectors. Or at least it wlows between the connectors. Or at least it wilows between the connectors. Or at least it wilows between the connectors. Or at least it willows between the connectors. Or at least it willows between the connectors. Or at least it willlows between the connectors. Or at least it willlows between the connectors. Or at least it will lows between the connectors. Or at least it will lows between the connectors. Or at least it will olows between the connectors. Or at least it will olows between the connectors. Or at least it will onlows between the connectors. Or at least it will onlows between the connectors. Or at least it will onclows between the connectors. Or at least it will onclows between the connectors. Or at least it will oncelows between the connectors. Or at least it will oncelows between the connectors. Or at least it will once lows between the connectors. Or at least it will once lows between the connectors. Or at least it will once wlows between the connectors. Or at least it will once wlows between the connectors. Or at least it will once welows between the connectors. Or at least it will once welows between the connectors. Or at least it will once we lows between the connectors. Or at least it will once we lows between the connectors. Or at least it will once we elows between the connectors. Or at least it will once we elows between the connectors. Or at least it will once we edlows between the connectors. Or at least it will once we edlows between the connectors. Or at least it will once we edilows between the connectors. Or at least it will once we edilows between the connectors. Or at least it will once we editlows between the connectors. Or at least it will once we editlows between the connectors. Or at least it will once we edit lows between the connectors. Or at least it will once we edit lows between the connectors. Or at least it will once we edit ilows between the connectors. Or at least it will once we edit ilows between the connectors. Or at least it will once we edit itlows between the connectors. Or at least it will once we edit itlows between the connectors. Or at least it will once we edit it.lows between the connectors. Or at least it will once we edit it.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has created a sort of temmplate for our pipeline. This describes how the data will be transformed as it fllows between the connectors. Or at least it will once we edit it.lows between the connectors. Or at least it will once we edit it.[A[Aritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/hr_import_pipeline.rb [K
[K[A
class HrImportPipeline < RubySync::Pipelines::BasePipeline
client :hr
vault :databank
# Remove any fields that you don't want to set in the client from the vault
#allow_out 'allow', 'these', 'fields', 'through'
# Remove any fields that you don't want to set in the vault from the client
allow_in 'id', 'first_name', 'last_name'
# If the client and vault have different names for the same field, define the
# the mapping here. For example, if the vault has a field called "first name" and
# the client has a field called givenName you may put:
# map 'first name', 'givenName'
#
# You can also calculate the values for fields. For more info, see
# http://rubysync.org/docs/rubysync-transformations/
# "in" means going from client to vault
in_transform do
map 'cn', 'id'
map 'givenName', 'first_name'
map 'sn', 'last_name'
end
# "out" means going from vault to client
out_transform do
#map 'id', 'vault_field'
#map 'first_name', 'vault_field'
#map 'last_name', 'vault_field'
#map 'skills', 'vault_field'
end
end
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Nritchie-youngs-computer:~/x/mayhem ritchiey$ # Nritchie-youngs-computer:~/x/mayhem ritchiey$ # Noritchie-youngs-computer:~/x/mayhem ritchiey$ # Noritchie-youngs-computer:~/x/mayhem ritchiey$ # Notritchie-youngs-computer:~/x/mayhem ritchiey$ # Notritchie-youngs-computer:~/x/mayhem ritchiey$ # Noteritchie-youngs-computer:~/x/mayhem ritchiey$ # Noteritchie-youngs-computer:~/x/mayhem ritchiey$ # Note ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note tritchie-youngs-computer:~/x/mayhem ritchiey$ # Note tritchie-youngs-computer:~/x/mayhem ritchiey$ # Note thritchie-youngs-computer:~/x/mayhem ritchiey$ # Note thritchie-youngs-computer:~/x/mayhem ritchiey$ # Note tharitchie-youngs-computer:~/x/mayhem ritchiey$ # Note tharitchie-youngs-computer:~/x/mayhem ritchiey$ # Note thatritchie-youngs-computer:~/x/mayhem ritchiey$ # Note thatritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that writchie-youngs-computer:~/x/mayhem ritchiey$ # Note that writchie-youngs-computer:~/x/mayhem ritchiey$ # Note that weritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that weritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we'ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we'ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we'vritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we'vritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we'veritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we'veritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've rritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've rritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've reritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've reritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've remritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've remritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've remoritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've remoritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've removritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've removritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've remo[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've remoritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've rem[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've remritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've re[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've reritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've r[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've rritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've critchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've critchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've coritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've coritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've comritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've comritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commeritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commeritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commenritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commenritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commendritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commendritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commen[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commenritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commentritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commentritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commenteritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commenteritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commentedritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commentedritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commented ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commented ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commented oritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commented oritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commented ouritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commented ouritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commented outritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commented outritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commented out ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commented out ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commented out tritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commented out tritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commented out thritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commented out thritchie-youngs-computer:~/x/mayhem ritchiey$ # Note that we've commented out the a a al al all all allo allo allow allow allow_ allow_ allow_o allow_o allow_ou allow_ou allow_out allow_out allow_out. allow_out. allow_out. allow_out. allow_out. T allow_out. T allow_out. Th allow_out. Th allow_out. Thi allow_out. Thi allow_out. This allow_out. This allow_out. This allow_out. This allow_out. This m allow_out. This m allow_out. This me allow_out. This me allow_out. This mea allow_out. This mea allow_out. This mean allow_out. This mean allow_out. This means allow_out. This means allow_out. This means allow_out. This means allow_out. This means t allow_out. This means t allow_out. This means ta allow_out. This means ta allow_out. This means tah allow_out. This means tah allow_out. This means taht allow_out. This means taht allow_out. This means taht allow_out. This means taht allow_out. This means taht[K allow_out. This means taht allow_out. This means tah[K allow_out. This means tah allow_out. This means ta[K allow_out. This means ta allow_out. This means t[K allow_out. This means t allow_out. This means th allow_out. This means th allow_out. This means tha allow_out. This means tha allow_out. This means that allow_out. This means that allow_out. This means that allow_out. This means that allow_out. This means that n allow_out. This means that n allow_out. This means that no allow_out. This means that no allow_out. This means that not allow_out. This means that not allow_out. This means that noth allow_out. This means that noth allow_out. This means that nothi allow_out. This means that nothi allow_out. This means that nothin allow_out. This means that nothin allow_out. This means that nothing allow_out. This means that nothing allow_out. This means that nothing allow_out. This means that nothing allow_out. This means that nothing t allow_out. This means that nothing t allow_out. This means that nothing [K allow_out. This means that nothing allow_out. This means that nothing w allow_out. This means that nothing w allow_out. This means that nothing wi allow_out. This means that nothing wi allow_out. This means that nothing wil allow_out. This means that nothing wil allow_out. This means that nothing will allow_out. This means that nothing will allow_out. This means that nothing will allow_out. This means that nothing will allow_out. This means that nothing will b allow_out. This means that nothing will b allow_out. This means that nothing will be allow_out. This means that nothing will be allow_out. This means that nothing will be allow_out. This means that nothing will be allow_out. This means that nothing will be e allow_out. This means that nothing will be e allow_out. This means that nothing will be ex allow_out. This means that nothing will be ex allow_out. This means that nothing will be exp allow_out. This means that nothing will be exp allow_out. This means that nothing will be expo allow_out. This means that nothing will be expo allow_out. This means that nothing will be expor allow_out. This means that nothing will be expor allow_out. This means that nothing will be export allow_out. This means that nothing will be export allow_out. This means that nothing will be exporte allow_out. This means that nothing will be exporte allow_out. This means that nothing will be exported allow_out. This means that nothing will be exported allow_out. This means that nothing will be exported allow_out. This means that nothing will be exported allow_out. This means that nothing will be exported f allow_out. This means that nothing will be exported f allow_out. This means that nothing will be exported fr allow_out. This means that nothing will be exported fr allow_out. This means that nothing will be exported fro allow_out. This means that nothing will be exported fro allow_out. This means that nothing will be exported from allow_out. This means that nothing will be exported from allow_out. This means that nothing will be exported from allow_out. This means that nothing will be exported from allow_out. This means that nothing will be exported from t allow_out. This means that nothing will be exported from t allow_out. This means that nothing will be exported from th allow_out. This means that nothing will be exported from th allow_out. This means that nothing will be exported from the allow_out. This means that nothing will be exported from the allow_out. This means that nothing will be exported from the allow_out. This means that nothing will be exported from the allow_out. This means that nothing will be exported from the v allow_out. This means that nothing will be exported from the v allow_out. This means that nothing will be exported from the va allow_out. This means that nothing will be exported from the va allow_out. This means that nothing will be exported from the vau allow_out. This means that nothing will be exported from the vau allow_out. This means that nothing will be exported from the vaul allow_out. This means that nothing will be exported from the vaul allow_out. This means that nothing will be exported from the vault allow_out. This means that nothing will be exported from the vault allow_out. This means that nothing will be exported from the vault allow_out. This means that nothing will be exported from the vault allow_out. This means that nothing will be exported from the vault t allow_out. This means that nothing will be exported from the vault t allow_out. This means that nothing will be exported from the vault to allow_out. This means that nothing will be exported from the vault to allow_out. This means that nothing will be exported from the vault to allow_out. This means that nothing will be exported from the vault to allow_out. This means that nothing will be exported from the vault to t allow_out. This means that nothing will be exported from the vault to t allow_out. This means that nothing will be exported from the vault to th allow_out. This means that nothing will be exported from the vault to th allow_out. This means that nothing will be exported from the vault to the allow_out. This means that nothing will be exported from the vault to the allow_out. This means that nothing will be exported from the vault to the allow_out. This means that nothing will be exported from the vault to the allow_out. This means that nothing will be exported from the vault to the c allow_out. This means that nothing will be exported from the vault to the c allow_out. This means that nothing will be exported from the vault to the cl allow_out. This means that nothing will be exported from the vault to the cl allow_out. This means that nothing will be exported from the vault to the cli allow_out. This means that nothing will be exported from the vault to the cli allow_out. This means that nothing will be exported from the vault to the clie allow_out. This means that nothing will be exported from the vault to the clie allow_out. This means that nothing will be exported from the vault to the clien ttt t t (t (t (tt (tt (tht (tht (thet (thet (the t (the t (the Ct (the Ct (the CSt (the CSt (the CSVt (the CSVt (the CSV t (the CSV t (the CSV ft (the CSV ft (the CSV fit (the CSV fit (the CSV filt (the CSV filt (the CSV filet (the CSV filet (the CSV file)t (the CSV file)t (the CSV file).t (the CSV file).
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Iritchie-youngs-computer:~/x/mayhem ritchiey$ # Iritchie-youngs-computer:~/x/mayhem ritchiey$ # Inritchie-youngs-computer:~/x/mayhem ritchiey$ # Inritchie-youngs-computer:~/x/mayhem ritchiey$ # In ritchie-youngs-computer:~/x/mayhem ritchiey$ # In ritchie-youngs-computer:~/x/mayhem ritchiey$ # In tritchie-youngs-computer:~/x/mayhem ritchiey$ # In tritchie-youngs-computer:~/x/mayhem ritchiey$ # In thritchie-youngs-computer:~/x/mayhem ritchiey$ # In thritchie-youngs-computer:~/x/mayhem ritchiey$ # In theritchie-youngs-computer:~/x/mayhem ritchiey$ # In theritchie-youngs-computer:~/x/mayhem ritchiey$ # In the ritchie-youngs-computer:~/x/mayhem ritchiey$ # In the ritchie-youngs-computer:~/x/mayhem ritchiey$ # In the iritchie-youngs-computer:~/x/mayhem ritchiey$ # In the iritchie-youngs-computer:~/x/mayhem ritchiey$ # In the inritchie-youngs-computer:~/x/mayhem ritchiey$ # In the inritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_ritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_ritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_tritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_tritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_trritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_trritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_traritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_traritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_tranritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_tranritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transfritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transfritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transfrritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transfrritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transfroritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transfroritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transfromritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transfromritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transfro[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transfroritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transfr[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transfrritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transf[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transfritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transforitchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transforitchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transforritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transforritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transformritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transformritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform,ritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform,ritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, ritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, ritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, writchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, writchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, weritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, weritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, we'ritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, we'ritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, we'rritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, we'rritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, we'reritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, we'reritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, we're ritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, we're ritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, we're dritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, we're dritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, we're doritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, we're doritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, we're doiritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, we're doiritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, we're doinritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, we're doinritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, we're doingritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, we're doingritchie-youngs-computer:~/x/mayhem ritchiey$ # In the in_transform, we're doing aaa a a ca ca coa coa coua coua coupa coupa coupla coupla couplea couplea couple a couple a couple oa couple oa couple ofa couple ofa couple of a couple of a couple of sa couple of sa couple of sia couple of sia couple of sima couple of sima couple of simea couple of simea couple of sime a couple of sime a couple of sime[Ka couple of simea couple of sim[Ka couple of sima couple of simpa couple of simpa couple of simpla couple of simpla couple of simplea couple of simplea couple of simple a couple of simple a couple of simple ma couple of simple ma couple of simple maa couple of simple maa couple of simple mapa couple of simple mapa couple of simple mappa couple of simple mappa couple of simple map[Ka couple of simple mapa couple of simple map a couple of simple map a couple of simple map sa couple of simple map sa couple of simple map sta couple of simple map sta couple of simple map staa couple of simple map staa couple of simple map stata couple of simple map stata couple of simple map statea couple of simple map statea couple of simple map statema couple of simple map statema couple of simple map statemea couple of simple map statemea couple of simple map statemena couple of simple map statemena couple of simple map statementa couple of simple map statementa couple of simple map statementsa couple of simple map statementsa couple of simple map statements a couple of simple map statements a couple of simple map statements ta couple of simple map statements ta couple of simple map statements toa couple of simple map statements toa couple of simple map statements to a couple of simple map statements to a couple of simple map statements to fa couple of simple map statements to fa couple of simple map statements to [Ka couple of simple map statements to a couple of simple map statements to ea couple of simple map statements to ea couple of simple map statements to efa couple of simple map statements to efa couple of simple map statements to effa couple of simple map statements to effa couple of simple map statements to effea couple of simple map statements to effea couple of simple map statements to effeca couple of simple map statements to effeca couple of simple map statements to effecta couple of simple map statements to effecta couple of simple map statements to effectia couple of simple map statements to effectia couple of simple map statements to effectiva couple of simple map statements to effectiva couple of simple map statements to effectivea couple of simple map statements to effectivea couple of simple map statements to effectivela couple of simple map statements to effectivela couple of simple map statements to effectivelya couple of simple map statements to effectivelya couple of simple map statements to effectively a couple of simple map statements to effectively a couple of simple map statements to effectively ra couple of simple map statements to effectively ra couple of simple map statements to effectively rea couple of simple map statements to effectively rea couple of simple map statements to effectively rena couple of simple map statements to effectively rena couple of simple map statements to effectively renaa couple of simple map statements to effectively renaa couple of simple map statements to effectively renama couple of simple map statements to effectively renama couple of simple map statements to effectively renamea couple of simple map statements to effectively renamea couple of simple map statements to effectively rename a couple of simple map statements to effectively rename a couple of simple map statements to effectively rename sa couple of simple map statements to effectively rename sa couple of simple map statements to effectively rename soa couple of simple map statements to effectively rename soa couple of simple map statements to effectively rename soma couple of simple map statements to effectively rename soma couple of simple map statements to effectively rename somea couple of simple map statements to effectively rename somea couple of simple map statements to effectively rename some a couple of simple map statements to effectively rename some a couple of simple map statements to effectively rename some oa couple of simple map statements to effectively rename some oa couple of simple map statements to effectively rename some ofa couple of simple map statements to effectively rename some ofa couple of simple map statements to effectively rename some of a couple of simple map statements to effectively rename some of a couple of simple map statements to effectively rename some of ta couple of simple map statements to effectively rename some of ta couple of simple map statements to effectively rename some of tha couple of simple map statements to effectively rename some of tha couple of simple map statements to effectively rename some of thea couple of simple map statements to effectively rename some of thea couple of simple map statements to effectively rename some of the a couple of simple map statements to effectively rename some of the a couple of simple map statements to effectively rename some of the fa couple of simple map statements to effectively rename some of the fa couple of simple map statements to effectively rename some of the fia couple of simple map statements to effectively rename some of the fia couple of simple map statements to effectively rename some of the fiea couple of simple map statements to effectively rename some of the fiea couple of simple map statements to effectively rename some of the fiela couple of simple map statements to effectively rename some of the fiela couple of simple map statements to effectively rename some of the fielda couple of simple map statements to effectively rename some of the fielda couple of simple map statements to effectively rename some of the fieldsa couple of simple map statements to effectively rename some of the fieldsa couple of simple map statements to effectively rename some of the fields.a couple of simple map statements to effectively rename some of the fields.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Sritchie-youngs-computer:~/x/mayhem ritchiey$ # Sritchie-youngs-computer:~/x/mayhem ritchiey$ # Soritchie-youngs-computer:~/x/mayhem ritchiey$ # Soritchie-youngs-computer:~/x/mayhem ritchiey$ # So ritchie-youngs-computer:~/x/mayhem ritchiey$ # So ritchie-youngs-computer:~/x/mayhem ritchiey$ # So lritchie-youngs-computer:~/x/mayhem ritchiey$ # So lritchie-youngs-computer:~/x/mayhem ritchiey$ # So leritchie-youngs-computer:~/x/mayhem ritchiey$ # So leritchie-youngs-computer:~/x/mayhem ritchiey$ # So letritchie-youngs-computer:~/x/mayhem ritchiey$ # So letritchie-youngs-computer:~/x/mayhem ritchiey$ # So letsritchie-youngs-computer:~/x/mayhem ritchiey$ # So letsritchie-youngs-computer:~/x/mayhem ritchiey$ # So lets ritchie-youngs-computer:~/x/mayhem ritchiey$ # So lets ritchie-youngs-computer:~/x/mayhem ritchiey$ # So lets rritchie-youngs-computer:~/x/mayhem ritchiey$ # So lets rritchie-youngs-computer:~/x/mayhem ritchiey$ # So lets ruritchie-youngs-computer:~/x/mayhem ritchiey$ # So lets ruritchie-youngs-computer:~/x/mayhem ritchiey$ # So lets runritchie-youngs-computer:~/x/mayhem ritchiey$ # So lets runritchie-youngs-computer:~/x/mayhem ritchiey$ # So lets run ritchie-youngs-computer:~/x/mayhem ritchiey$ # So lets run ritchie-youngs-computer:~/x/mayhem ritchiey$ # So lets run iritchie-youngs-computer:~/x/mayhem ritchiey$ # So lets run iritchie-youngs-computer:~/x/mayhem ritchiey$ # So lets run itritchie-youngs-computer:~/x/mayhem ritchiey$ # So lets run it
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync onritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync onritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync onceritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync onceritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once iritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once iritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once inritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once inritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once i[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once iritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once [Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hrritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hrritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_iritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_iritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_imritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_imritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_impritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_impritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_imporitchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_imporitchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_imporritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_imporritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_importritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_importritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -vritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -vritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3
Running HrImportPipeline pipeline once
Creating directory '/Users/ritchiey/x/in'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/file_connector.rb:26:in `started': undefined local variable or method `out_path' for #<HrConnector:0x21f77f8> (NameError)
from /Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:246:in `started'
from /Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:239:in `run_once'
from /Users/ritchiey/Projects/rubysync/bin/rubysync:109:in `once'
from /opt/local/lib/ruby/gems/1.8/gems/simpleconsole-0.1.1/lib/controller.rb:84:in `send'
from /opt/local/lib/ruby/gems/1.8/gems/simpleconsole-0.1.1/lib/controller.rb:84:in `execute_action'
from /opt/local/lib/ruby/gems/1.8/gems/simpleconsole-0.1.1/lib/application.rb:42:in `run'
from /Users/ritchiey/Projects/rubysync/bin/rubysync:335
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ writchie-youngs-computer:~/x/mayhem ritchiey$ writchie-youngs-computer:~/x/mayhem ritchiey$ whritchie-youngs-computer:~/x/mayhem ritchiey$ whritchie-youngs-computer:~/x/mayhem ritchiey$ whiritchie-youngs-computer:~/x/mayhem ritchiey$ whiritchie-youngs-computer:~/x/mayhem ritchiey$ whicritchie-youngs-computer:~/x/mayhem ritchiey$ whicritchie-youngs-computer:~/x/mayhem ritchiey$ whichritchie-youngs-computer:~/x/mayhem ritchiey$ whichritchie-youngs-computer:~/x/mayhem ritchiey$ which ritchie-youngs-computer:~/x/mayhem ritchiey$ which ritchie-youngs-computer:~/x/mayhem ritchiey$ which rritchie-youngs-computer:~/x/mayhem ritchiey$ which rritchie-youngs-computer:~/x/mayhem ritchiey$ which ruritchie-youngs-computer:~/x/mayhem ritchiey$ which ruritchie-youngs-computer:~/x/mayhem ritchiey$ which rubritchie-youngs-computer:~/x/mayhem ritchiey$ which rubritchie-youngs-computer:~/x/mayhem ritchiey$ which rubyritchie-youngs-computer:~/x/mayhem ritchiey$ which rubyritchie-youngs-computer:~/x/mayhem ritchiey$ which rubysritchie-youngs-computer:~/x/mayhem ritchiey$ which rubysritchie-youngs-computer:~/x/mayhem ritchiey$ which rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ which rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ which rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ which rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ which rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ which rubysync
/Users/ritchiey/Projects/rubysync/bin/rubysync
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ which rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ which rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3
Running HrImportPipeline pipeline once
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/file_connector.rb:26:in `started': undefined local variable or method `out_path' for #<HrConnector:0x21f7758> (NameError)
from /Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:246:in `started'
from /Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:239:in `run_once'
from /Users/ritchiey/Projects/rubysync/bin/rubysync:109:in `once'
from /opt/local/lib/ruby/gems/1.8/gems/simpleconsole-0.1.1/lib/controller.rb:84:in `send'
from /opt/local/lib/ruby/gems/1.8/gems/simpleconsole-0.1.1/lib/controller.rb:84:in `execute_action'
from /opt/local/lib/ruby/gems/1.8/gems/simpleconsole-0.1.1/lib/application.rb:42:in `run'
from /Users/ritchiey/Projects/rubysync/bin/rubysync:335
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3
Running HrImportPipeline pipeline once
Running HrImportPipeline 'in' pipeline once
HrImportPipeline(client): Started
HrImportPipeline(client): Scanning /Users/ritchiey/x/in for *.csv files...
HrImportPipeline(client): Stopped
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat .ritchie-youngs-computer:~/x/mayhem ritchiey$ cat .ritchie-youngs-computer:~/x/mayhem ritchiey$ cat ..ritchie-youngs-computer:~/x/mayhem ritchiey$ cat ..ritchie-youngs-computer:~/x/mayhem ritchiey$ cat ../ritchie-youngs-computer:~/x/mayhem ritchiey$ cat ../ritchie-youngs-computer:~/x/mayhem ritchiey$ cat ..[Kritchie-youngs-computer:~/x/mayhem ritchiey$ cat ..ritchie-youngs-computer:~/x/mayhem ritchiey$ cat .[Kritchie-youngs-computer:~/x/mayhem ritchiey$ cat .ritchie-youngs-computer:~/x/mayhem ritchiey$ cat [Kritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat[Kritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ ca[Kritchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ c[Kritchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ lritchie-youngs-computer:~/x/mayhem ritchiey$ lritchie-youngs-computer:~/x/mayhem ritchiey$ lsritchie-youngs-computer:~/x/mayhem ritchiey$ lsritchie-youngs-computer:~/x/mayhem ritchiey$ ls ritchie-youngs-computer:~/x/mayhem ritchiey$ ls ritchie-youngs-computer:~/x/mayhem ritchiey$ ls -ritchie-youngs-computer:~/x/mayhem ritchiey$ ls -ritchie-youngs-computer:~/x/mayhem ritchiey$ ls -lritchie-youngs-computer:~/x/mayhem ritchiey$ ls -lritchie-youngs-computer:~/x/mayhem ritchiey$ ls -l ritchie-youngs-computer:~/x/mayhem ritchiey$ ls -l ritchie-youngs-computer:~/x/mayhem ritchiey$ ls -l .ritchie-youngs-computer:~/x/mayhem ritchiey$ ls -l .ritchie-youngs-computer:~/x/mayhem ritchiey$ ls -l ..ritchie-youngs-computer:~/x/mayhem ritchiey$ ls -l ..ritchie-youngs-computer:~/x/mayhem ritchiey$ ls -l .[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ls -l .ritchie-youngs-computer:~/x/mayhem ritchiey$ ls -l [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ls -l ritchie-youngs-computer:~/x/mayhem ritchiey$ ls -l[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ls -lritchie-youngs-computer:~/x/mayhem ritchiey$ ls -[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ls -ritchie-youngs-computer:~/x/mayhem ritchiey$ ls [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ls ritchie-youngs-computer:~/x/mayhem ritchiey$ ls[Kritchie-youngs-computer:~/x/mayhem ritchiey$ lsritchie-youngs-computer:~/x/mayhem ritchiey$ l[Kritchie-youngs-computer:~/x/mayhem ritchiey$ lritchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Nritchie-youngs-computer:~/x/mayhem ritchiey$ # Nritchie-youngs-computer:~/x/mayhem ritchiey$ # Noritchie-youngs-computer:~/x/mayhem ritchiey$ # Noritchie-youngs-computer:~/x/mayhem ritchiey$ # Notritchie-youngs-computer:~/x/mayhem ritchiey$ # Notritchie-youngs-computer:~/x/mayhem ritchiey$ # Not ritchie-youngs-computer:~/x/mayhem ritchiey$ # Not ritchie-youngs-computer:~/x/mayhem ritchiey$ # Not eritchie-youngs-computer:~/x/mayhem ritchiey$ # Not eritchie-youngs-computer:~/x/mayhem ritchiey$ # Not [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Not ritchie-youngs-computer:~/x/mayhem ritchiey$ # Not[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Notritchie-youngs-computer:~/x/mayhem ritchiey$ # Noteritchie-youngs-computer:~/x/mayhem ritchiey$ # Noteritchie-youngs-computer:~/x/mayhem ritchiey$ # Note ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note ritchie-youngs-computer:~/x/mayhem ritchiey$ # Note[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Noteritchie-youngs-computer:~/x/mayhem ritchiey$ # Not[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Notritchie-youngs-computer:~/x/mayhem ritchiey$ # No[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Noritchie-youngs-computer:~/x/mayhem ritchiey$ # N[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Nritchie-youngs-computer:~/x/mayhem ritchiey$ # [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rritchie-youngs-computer:~/x/mayhem ritchiey$ # Rritchie-youngs-computer:~/x/mayhem ritchiey$ # Ruritchie-youngs-computer:~/x/mayhem ritchiey$ # Ruritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubyritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubyritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync critchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync critchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync hritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync hritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync haritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync haritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync hasritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync hasritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kiritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kiritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kinritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kinritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kinderitchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kinderitchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindelritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindelritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kinde[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kinderitchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kind[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindlritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindlritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindleritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindleritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindleyritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindleyritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindle[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindleritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindl[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindlritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindlyritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindlyritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly critchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly critchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly crritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly crritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly creritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly creritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly crearitchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly crearitchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly creatritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly creatritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly createritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly createritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly createdritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly createdritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created aritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created aritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created aritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created aritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created anritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created anritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created an ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created an ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created an iritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created an iritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created an in __[K [K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created an i[K
[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created an iritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created an [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created an ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created an[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created anritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created a[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created aritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created tritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created tritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created thritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created thritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created theritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created theritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created the ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created the ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created the i nnn n n fn fn fon fon foln foln foldn foldn folden folden foldern foldern folder n folder n folder fn folder fn folder fon folder fon folder forn folder forn folder for n folder for n folder for un folder for un folder for usn folder for usn folder for us n folder for us n folder for us sn folder for us sn folder for us son folder for us son folder for us so n folder for us so n folder for us so In folder for us so In folder for us so I'n folder for us so I'n folder for us so I'ln folder for us so I'ln folder for us so I'lln folder for us so I'lln folder for us so I'l[Kn folder for us so I'ln folder for us so I'[Kn folder for us so I'n folder for us so I[Kn folder for us so In folder for us so [Kn folder for us so n folder for us so[Kn folder for us son folder for us s[Kn folder for us sn folder for us [Kn folder for us n folder for us bn folder for us bn folder for us bun folder for us bun folder for us butn folder for us butn folder for us but n folder for us but n folder for us but nn folder for us but nn folder for us but non folder for us but non folder for us but notn folder for us but notn folder for us but nothn folder for us but nothn folder for us but nothin folder for us but nothin folder for us but nothinn folder for us but nothinn folder for us but nothingn folder for us but nothingn folder for us but nothing n folder for us but nothing n folder for us but nothing en folder for us but nothing en folder for us but nothing eln folder for us but nothing eln folder for us but nothing elsn folder for us but nothing elsn folder for us but nothing elsen folder for us but nothing elsen folder for us but nothing else n folder for us but nothing else n folder for us but nothing else hn folder for us but nothing else hn folder for us but nothing else han folder for us but nothing else han folder for us but nothing else hasn folder for us but nothing else hasn folder for us but nothing else has n folder for us but nothing else has n folder for us but nothing else has hn folder for us but nothing else has hn folder for us but nothing else has han folder for us but nothing else has han folder for us but nothing else has hapn folder for us but nothing else has hapn folder for us but nothing else has happn folder for us but nothing else has happn folder for us but nothing else has happen folder for us but nothing else has happen folder for us but nothing else has happenn folder for us but nothing else has happenn folder for us but nothing else has happenen folder for us but nothing else has happenen folder for us but nothing else has happenedn folder for us but nothing else has happenedn folder for us but nothing else has happened n folder for us but nothing else has happened n folder for us but nothing else has happened bn folder for us but nothing else has happened bn folder for us but nothing else has happened ben folder for us but nothing else has happened ben folder for us but nothing else has happened becn folder for us but nothing else has happened becn folder for us but nothing else has happened becan folder for us but nothing else has happened becan folder for us but nothing else has happened becaun folder for us but nothing else has happened becaun folder for us but nothing else has happened becausn folder for us but nothing else has happened becausn folder for us but nothing else has happened becausen folder for us but nothing else has happened becausen folder for us but nothing else has happened because n folder for us but nothing else has happened because n folder for us but nothing else has happened because wn folder for us but nothing else has happened because wn folder for us but nothing else has happened because wen folder for us but nothing else has happened because wen folder for us but nothing else has happened because we n folder for us but nothing else has happened because we n folder for us but nothing else has happened because we dn folder for us but nothing else has happened because we dn folder for us but nothing else has happened because we din folder for us but nothing else has happened because we din folder for us but nothing else has happened because we didn folder for us but nothing else has happened because we didn folder for us but nothing else has happened because we didnn folder for us but nothing else has happened because we didnn folder for us but nothing else has happened because we didn'n folder for us but nothing else has happened because we didn'n folder for us but nothing else has happened because we didn'tn folder for us but nothing else has happened because we didn'tn folder for us but nothing else has happened because we didn't n folder for us but nothing else has happened because we didn't n folder for us but nothing else has happened because we didn't fn folder for us but nothing else has happened because we didn't fn folder for us but nothing else has happened because we didn't [Kn folder for us but nothing else has happened because we didn't n folder for us but nothing else has happened because we didn't gn folder for us but nothing else has happened because we didn't gn folder for us but nothing else has happened because we didn't gin folder for us but nothing else has happened because we didn't gin folder for us but nothing else has happened because we didn't givn folder for us but nothing else has happened because we didn't givn folder for us but nothing else has happened because we didn't given folder for us but nothing else has happened because we didn't given folder for us but nothing else has happened because we didn't give n folder for us but nothing else has happened because we didn't give n folder for us but nothing else has happened because we didn't give in folder for us but nothing else has happened because we didn't give in folder for us but nothing else has happened because we didn't give itn folder for us but nothing else has happened because we didn't give itn folder for us but nothing else has happened because we didn't give it n folder for us but nothing else has happened because we didn't give it n folder for us but nothing else has happened because we didn't give it an folder for us but nothing else has happened because we didn't give it an folder for us but nothing else has happened because we didn't give it ann folder for us but nothing else has happened because we didn't give it ann folder for us but nothing else has happened because we didn't give it anyn folder for us but nothing else has happened because we didn't give it anyn folder for us but nothing else has happened because we didn't give it any n folder for us but nothing else has happened because we didn't give it any n folder for us but nothing else has happened because we didn't give it any fn folder for us but nothing else has happened because we didn't give it any fn folder for us but nothing else has happened because we didn't give it any fin folder for us but nothing else has happened because we didn't give it any fin folder for us but nothing else has happened because we didn't give it any finn folder for us but nothing else has happened because we didn't give it any finn folder for us but nothing else has happened because we didn't give it any fi[Kn folder for us but nothing else has happened because we didn't give it any fin folder for us but nothing else has happened because we didn't give it any f[Kn folder for us but nothing else has happened because we didn't give it any fn folder for us but nothing else has happened because we didn't give it any [Kn folder for us but nothing else has happened because we didn't give it any n folder for us but nothing else has happened because we didn't give it any in folder for us but nothing else has happened because we didn't give it any in folder for us but nothing else has happened because we didn't give it any inn folder for us but nothing else has happened because we didn't give it any inn folder for us but nothing else has happened because we didn't give it any inpn folder for us but nothing else has happened because we didn't give it any inpn folder for us but nothing else has happened because we didn't give it any inpu ttt t t ft ft fit fit fiet fiet fielt fielt fielst fielst fiels t fiels t fiels[Kt fielst fiel[Kt fielt fie[Kt fiet fi[Kt fit filt filt filet filet filest filest files t files t files tt files tt files tot files tot files to t files to t files to wt files to wt files to wot files to wot files to wort files to wort files to workt files to workt files to work t files to work t files to work wt files to work wt files to work wit files to work wit files to work witt files to work witt files to work witht files to work witht files to work with.t files to work with.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ #[Kritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ Sritchie-youngs-computer:~/x/mayhem ritchiey$ Sritchie-youngs-computer:~/x/mayhem ritchiey$ Soritchie-youngs-computer:~/x/mayhem ritchiey$ Soritchie-youngs-computer:~/x/mayhem ritchiey$ So ritchie-youngs-computer:~/x/mayhem ritchiey$ So ritchie-youngs-computer:~/x/mayhem ritchiey$ So lritchie-youngs-computer:~/x/mayhem ritchiey$ So lritchie-youngs-computer:~/x/mayhem ritchiey$ So leritchie-youngs-computer:~/x/mayhem ritchiey$ So leritchie-youngs-computer:~/x/mayhem ritchiey$ So letritchie-youngs-computer:~/x/mayhem ritchiey$ So letritchie-youngs-computer:~/x/mayhem ritchiey$ So leteritchie-youngs-computer:~/x/mayhem ritchiey$ So leteritchie-youngs-computer:~/x/mayhem ritchiey$ So let[Kritchie-youngs-computer:~/x/mayhem ritchiey$ So letritchie-youngs-computer:~/x/mayhem ritchiey$ So letsritchie-youngs-computer:~/x/mayhem ritchiey$ So letsritchie-youngs-computer:~/x/mayhem ritchiey$ So let[Kritchie-youngs-computer:~/x/mayhem ritchiey$ So letritchie-youngs-computer:~/x/mayhem ritchiey$ So le[Kritchie-youngs-computer:~/x/mayhem ritchiey$ So leritchie-youngs-computer:~/x/mayhem ritchiey$ So l[Kritchie-youngs-computer:~/x/mayhem ritchiey$ So lritchie-youngs-computer:~/x/mayhem ritchiey$ So [Kritchie-youngs-computer:~/x/mayhem ritchiey$ So ritchie-youngs-computer:~/x/mayhem ritchiey$ So[Kritchie-youngs-computer:~/x/mayhem ritchiey$ Soritchie-youngs-computer:~/x/mayhem ritchiey$ S[Kritchie-youngs-computer:~/x/mayhem ritchiey$ Sritchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ mritchie-youngs-computer:~/x/mayhem ritchiey$ mritchie-youngs-computer:~/x/mayhem ritchiey$ mvritchie-youngs-computer:~/x/mayhem ritchiey$ mvritchie-youngs-computer:~/x/mayhem ritchiey$ mv ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ritchie-youngs-computer:~/x/mayhem ritchiey$ mv .ritchie-youngs-computer:~/x/mayhem ritchiey$ mv .ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ..ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ..ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../hritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../hritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../heritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../heritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../henchmen.csv ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../henchmen.csv ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../henchmen.csv .ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../henchmen.csv .ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../henchmen.csv ..ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../henchmen.csv ..ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../henchmen.csv ../ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../henchmen.csv ../ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../henchmen.csv ../iritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../henchmen.csv ../iritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../henchmen.csv ../in/ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../henchmen.csv ../in/
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync onritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync onritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oncritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../henchmen.csv ../in/ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../henchmen.csv ../in/ritchie-youngs-computer:~/x/mayhem ritchiey$ # Rubysync has kindly created the inn folder for us but nothing else has happened because we didn't give it any inputt files to work with.t files to work with.[A[Aritchie-youngs-computer:~/x/mayhem ritchiey$ [7Prubysync once hr_import -v 3
[K
[K[A[Aritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3
Running HrImportPipeline pipeline once
Running HrImportPipeline 'in' pipeline once
HrImportPipeline(client): Started
HrImportPipeline(client): Scanning /Users/ritchiey/x/in for *.csv files...
HrImportPipeline(client): Processing 'henchmen.csv'
No source_transform(event) method, continuing
Processing incoming modify event (HrImportPipeline(client) => HrImportPipeline(vault)) bobby
Performing in_filter
Performing in_transform
No associated entry in vault for modify event. Converting to add
Converting 'modify' event to add
Default match rule - source path exists in vault
Create allowed through default rule
Performing in_place
Setting target_path to source_path
Create on vault allowed. Placing at bobby
Adding 'bobby' to 'HrImportPipeline(vault)'
No target_transform(event) method, continuing
Add succeeded
---
No source_transform(event) method, continuing
Processing incoming modify event (HrImportPipeline(client) => HrImportPipeline(vault)) tt
Performing in_filter
Performing in_transform
No associated entry in vault for modify event. Converting to add
Converting 'modify' event to add
Default match rule - source path exists in vault
Create allowed through default rule
Performing in_place
Setting target_path to source_path
Create on vault allowed. Placing at tt
Adding 'tt' to 'HrImportPipeline(vault)'
No target_transform(event) method, continuing
Add succeeded
---
HrImportPipeline(client): Stopped
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyn[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysy[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubys[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ ruby[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rub[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ ru[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ r[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat[Kritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ ca[Kritchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ c[Kritchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ tritchie-youngs-computer:~/x/mayhem ritchiey$ tritchie-youngs-computer:~/x/mayhem ritchiey$ tiritchie-youngs-computer:~/x/mayhem ritchiey$ tiritchie-youngs-computer:~/x/mayhem ritchiey$ tidritchie-youngs-computer:~/x/mayhem ritchiey$ tidritchie-youngs-computer:~/x/mayhem ritchiey$ tidyritchie-youngs-computer:~/x/mayhem ritchiey$ tidyritchie-youngs-computer:~/x/mayhem ritchiey$ tidy ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -iritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -iritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xmritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xmritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xmlritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xmlritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml dritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml dritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml daritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml daritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml daritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml d[Kritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml dritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml [Kritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml .ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml .ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ..ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ..ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ../ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ../ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ../dritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ../dritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ../daritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ../daritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ../databank.xml ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ../databank.xml
No warnings or errors were found.
<entries>
<entry id='bobby'>
<attr name='cn'>
<value>bobby</value>
</attr>
<attr name='givenName'>
<value>BareKnuckle</value>
</attr>
<attr name='sn'>
<value>Bobby</value>
</attr>
</entry>
<entry id='tt'>
<attr name='cn'>
<value>tt</value>
</attr>
<attr name='givenName'>
<value>Testy</value>
</attr>
<attr name='sn'>
<value>Terry</value>
</attr>
</entry>
</entries>
To learn more about HTML Tidy see http://tidy.sourceforge.net
Please send bug reports to [email protected]
HTML and CSS specifications are available from http://www.w3.org/
Lobby your company to join W3C, see http://www.w3.org/Consortium
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # aritchie-youngs-computer:~/x/mayhem ritchiey$ # aritchie-youngs-computer:~/x/mayhem ritchiey$ # anritchie-youngs-computer:~/x/mayhem ritchiey$ # anritchie-youngs-computer:~/x/mayhem ritchiey$ # andritchie-youngs-computer:~/x/mayhem ritchiey$ # andritchie-youngs-computer:~/x/mayhem ritchiey$ # and ritchie-youngs-computer:~/x/mayhem ritchiey$ # and ritchie-youngs-computer:~/x/mayhem ritchiey$ # and writchie-youngs-computer:~/x/mayhem ritchiey$ # and writchie-youngs-computer:~/x/mayhem ritchiey$ # and weritchie-youngs-computer:~/x/mayhem ritchiey$ # and weritchie-youngs-computer:~/x/mayhem ritchiey$ # and we ritchie-youngs-computer:~/x/mayhem ritchiey$ # and we ritchie-youngs-computer:~/x/mayhem ritchiey$ # and we critchie-youngs-computer:~/x/mayhem ritchiey$ # and we critchie-youngs-computer:~/x/mayhem ritchiey$ # and we cnritchie-youngs-computer:~/x/mayhem ritchiey$ # and we cnritchie-youngs-computer:~/x/mayhem ritchiey$ # and we c[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # and we critchie-youngs-computer:~/x/mayhem ritchiey$ # and we caritchie-youngs-computer:~/x/mayhem ritchiey$ # and we caritchie-youngs-computer:~/x/mayhem ritchiey$ # and we canritchie-youngs-computer:~/x/mayhem ritchiey$ # and we canritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can ritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can ritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can sritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can sritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can seritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can seritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can seeritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can seeritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see ritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see ritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see tritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see tritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see thritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see thritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see tharitchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see tharitchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see thatritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see thatritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that ritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that ritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that tritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that tritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that thritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that thritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that theritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that theritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the ritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the ritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the eritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the eritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the enritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the enritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entrritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entrritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entryritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entryritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entry ritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entry ritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entry hritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entry hritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entry haritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entry haritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entry has [K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entry ha[K
[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entry haritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entry h[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entry hritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entry [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entry ritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entry[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entryritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entr[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entrritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entriritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entriritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entrieritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entrieritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entriesritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entriesritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entries ritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entries ritchie-youngs-computer:~/x/mayhem ritchiey$ # and we can see that the entries f rrrororomromrom rom rom trom trom throm throm therom therom the rom the rom the crom the crom the csrom the csrom the csvrom the csvrom the csv rom the csv rom the csv from the csv from the csv firom the csv firom the csv fierom the csv fierom the csv fielrom the csv fielrom the csv fiel rom the csv fiel rom the csv fiel hrom the csv fiel hrom the csv fiel harom the csv fiel harom the csv fiel h[Krom the csv fiel hrom the csv fiel [Krom the csv fiel rom the csv fiel[Krom the csv fielrom the csv fie[Krom the csv fierom the csv fi[Krom the csv firom the csv filrom the csv filrom the csv filerom the csv filerom the csv file rom the csv file rom the csv file hrom the csv file hrom the csv file harom the csv file harom the csv file havrom the csv file havrom the csv file haverom the csv file haverom the csv file have rom the csv file have rom the csv file have brom the csv file have brom the csv file have berom the csv file have berom the csv file have beerom the csv file have beerom the csv file have beenrom the csv file have beenrom the csv file have been rom the csv file have been rom the csv file have been irom the csv file have been irom the csv file have been imrom the csv file have been imrom the csv file have been improm the csv file have been improm the csv file have been imporom the csv file have been imporom the csv file have been imporrom the csv file have been imporrom the csv file have been importrom the csv file have been importrom the csv file have been importerom the csv file have been importerom the csv file have been importedrom the csv file have been importedrom the csv file have been imported.rom the csv file have been imported.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Britchie-youngs-computer:~/x/mayhem ritchiey$ # Britchie-youngs-computer:~/x/mayhem ritchiey$ # Biritchie-youngs-computer:~/x/mayhem ritchiey$ # Biritchie-youngs-computer:~/x/mayhem ritchiey$ # Bigritchie-youngs-computer:~/x/mayhem ritchiey$ # Bigritchie-youngs-computer:~/x/mayhem ritchiey$ # Big ritchie-youngs-computer:~/x/mayhem ritchiey$ # Big ritchie-youngs-computer:~/x/mayhem ritchiey$ # Big dritchie-youngs-computer:~/x/mayhem ritchiey$ # Big dritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deritchie-youngs-computer:~/x/mayhem ritchiey$ # Big dearitchie-youngs-computer:~/x/mayhem ritchiey$ # Big dearitchie-youngs-computer:~/x/mayhem ritchiey$ # Big dealritchie-youngs-computer:~/x/mayhem ritchiey$ # Big dealritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal ritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal ritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Big dealritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal,ritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal,ritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, ritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, ritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, hritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, hritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huhritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huhritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh?ritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh?ritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? ritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? ritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Iritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Iritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Imritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Imritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Impritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Impritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Imporitchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Imporitchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Imporritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Imporritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importiritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importiritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importinritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importinritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importingritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importingritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importing ritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importing ritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importing sritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importing sritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importing soritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importing soritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importing somritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importing somritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importing someritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importing someritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importing some ritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importing some ritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importing some critchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importing some critchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importing some [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importing some ritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importing some Critchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importing some Critchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importing some CSritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importing some CSritchie-youngs-computer:~/x/mayhem ritchiey$ # Big deal, huh? Importing some CSV f f fi fi fil fil file file files files files files files i files i files in files in files int files int files into files into files into files into files into a files into a files into a files into a files into a[K files into a files into an files into an files into an files into an files into an X files into an X files into an XM files into an XM files into an XML files into an XML files into an XML files into an XML files into an XML f files into an XML f files into an XML fi files into an XML fi files into an XML fil files into an XML fil files into an XML file files into an XML file files into an XML file. files into an XML file. files into an XML file[K files into an XML file files into an XML file? files into an XML file? files into an XML file? files into an XML file? files into an XML file? W files into an XML file? W files into an XML file? Wh files into an XML file? Wh files into an XML file? Whe files into an XML file? Whe files into an XML file? When files into an XML file? When files into an XML file? When files into an XML file? When files into an XML file? When y files into an XML file? When y files into an XML file? When yo files into an XML file? When yo files into an XML file? When you files into an XML file? When you files into an XML file? When yo[K files into an XML file? When yo files into an XML file? When y[K files into an XML file? When y files into an XML file? When [K files into an XML file? When files into an XML file? When d files into an XML file? When d files into an XML file? When do files into an XML file? When do files into an XML file? When do files into an XML file? When do files into an XML file? When do y files into an XML file? When do y files into an XML file? When do yo files into an XML file? When do yo files into an XML file? When do you files into an XML file? When do you files into an XML file? When do you files into an XML file? When do you files into an XML file? When do you g files into an XML file? When do you g files into an XML file? When do you gr files into an XML file? When do you gr files into an XML file? When do you gra files into an XML file? When do you gra files into an XML file? When do you grad files into an XML file? When do you grad files into an XML file? When do you gradu files into an XML file? When do you gradu files into an XML file? When do you gradua files into an XML file? When do you gradua files into an XML file? When do you graduat files into an XML file? When do you graduat files into an XML file? When do you graduate files into an XML file? When do you graduate files into an XML file? When do you graduate, files into an XML file? When do you graduate, files into an XML file? When do you graduate, files into an XML file? When do you graduate, files into an XML file? When do you graduate, R files into an XML file? When do you graduate, R files into an XML file? When do you graduate, Ri files into an XML file? When do you graduate, Ri files into an XML file? When do you graduate, Rit files into an XML file? When do you graduate, Rit files into an XML file? When do you graduate, Rith files into an XML file? When do you graduate, Rith files into an XML file? When do you graduate, Rithc files into an XML file? When do you graduate, Rithc files into an XML file? When do you graduate, Rithch files into an XML file? When do you graduate, Rithch files into an XML file? When do you graduate, Rithche files into an XML file? When do you graduate, Rithche files into an XML file? When do you graduate, Rithch[K files into an XML file? When do you graduate, Rithch files into an XML file? When do you graduate, Rithc[K files into an XML file? When do you graduate, Rithc files into an XML file? When do you graduate, Rith[K files into an XML file? When do you graduate, Rith files into an XML file? When do you graduate, Rit[K files into an XML file? When do you graduate, Rit files into an XML file? When do you graduate, Ritc files into an XML file? When do you graduate, Ritc files into an XML file? When do you graduate, Ritch files into an XML file? When do you graduate, Ritch files into an XML file? When do you graduate, Ritchi files into an XML file? When do you graduate, Ritchi files into an XML file? When do you graduate, Ritchie files into an XML file? When do you graduate, Ritchie files into an XML file? When do you graduate, Ritchi[K files into an XML file? When do you graduate, Ritchi files into an XML file? When do you graduate, Ritchi files into an XML file? When do you graduate, Ritchi files into an XML file? When do you graduate, Ritchi[K files into an XML file? When do you graduate, Ritchi files into an XML file? When do you graduate, Ritchie files into an XML file? When do you graduate, Ritchie files into an XML file? When do you graduate, Ritchi[K files into an XML file? When do you graduate, Ritchi files into an XML file? When do you graduate, Ritch[K files into an XML file? When do you graduate, Ritch files into an XML file? When do you graduate, Ritc[K files into an XML file? When do you graduate, Ritc files into an XML file? When do you graduate, Rit[K files into an XML file? When do you graduate, Rit files into an XML file? When do you graduate, Ri[K files into an XML file? When do you graduate, Ri files into an XML file? When do you graduate, R[K files into an XML file? When do you graduate, R files into an XML file? When do you graduate, [K files into an XML file? When do you graduate, files into an XML file? When do you graduate,[K files into an XML file? When do you graduate, files into an XML file? When do you graduate[K files into an XML file? When do you graduate files into an XML file? When do you graduat[K files into an XML file? When do you graduat files into an XML file? When do you gradua[K files into an XML file? When do you gradua files into an XML file? When do you gradu[K files into an XML file? When do you gradu files into an XML file? When do you grad[K files into an XML file? When do you grad files into an XML file? When do you gra[K files into an XML file? When do you gra files into an XML file? When do you gr[K files into an XML file? When do you gr files into an XML file? When do you g[K files into an XML file? When do you g files into an XML file? When do you [K files into an XML file? When do you files into an XML file? When do you[K files into an XML file? When do you files into an XML file? When do yo[K files into an XML file? When do yo files into an XML file? When do y[K files into an XML file? When do y files into an XML file? When do [K files into an XML file? When do files into an XML file? When do[K files into an XML file? When do files into an XML file? When d[K files into an XML file? When d files into an XML file? When [K files into an XML file? When files into an XML file? When[K files into an XML file? When files into an XML file? Whe[K files into an XML file? Whe files into an XML file? Wh[K files into an XML file? Wh files into an XML file? W[K files into an XML file? W files into an XML file? [K files into an XML file? files into an XML file?[K files into an XML file? files into an XML file[K files into an XML file files into an XML file? files into an XML file? files into an XML file? files into an XML file? files into an XML file? W files into an XML file? W files into an XML file? Wo files into an XML file? Wo files into an XML file? Wop files into an XML file? Wop files into an XML file? Wo[K files into an XML file? Wo files into an XML file? Woo files into an XML file? Woo files into an XML file? Woop files into an XML file? Woop files into an XML file? Woopt files into an XML file? Woopt files into an XML file? Woopty files into an XML file? Woopty files into an XML file? Woopty- files into an XML file? Woopty- files into an XML file? Woopty-d files into an XML file? Woopty-d files into an XML file? Woopty-do files into an XML file? Woopty-do files into an XML file? Woopty-doo files into an XML file? Woopty-doo files into an XML file? Woopty-doo. files into an XML file? Woopty-doo.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # writchie-youngs-computer:~/x/mayhem ritchiey$ # writchie-youngs-computer:~/x/mayhem ritchiey$ # [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Writchie-youngs-computer:~/x/mayhem ritchiey$ # Writchie-youngs-computer:~/x/mayhem ritchiey$ # Whritchie-youngs-computer:~/x/mayhem ritchiey$ # Whritchie-youngs-computer:~/x/mayhem ritchiey$ # Wharitchie-youngs-computer:~/x/mayhem ritchiey$ # Wharitchie-youngs-computer:~/x/mayhem ritchiey$ # Whatritchie-youngs-computer:~/x/mayhem ritchiey$ # Whatritchie-youngs-computer:~/x/mayhem ritchiey$ # What'ritchie-youngs-computer:~/x/mayhem ritchiey$ # What'ritchie-youngs-computer:~/x/mayhem ritchiey$ # What'sritchie-youngs-computer:~/x/mayhem ritchiey$ # What'sritchie-youngs-computer:~/x/mayhem ritchiey$ # What's ritchie-youngs-computer:~/x/mayhem ritchiey$ # What's ritchie-youngs-computer:~/x/mayhem ritchiey$ # What's[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # What'sritchie-youngs-computer:~/x/mayhem ritchiey$ # What'[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # What'ritchie-youngs-computer:~/x/mayhem ritchiey$ # What[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Whatritchie-youngs-computer:~/x/mayhem ritchiey$ # Wha[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Wharitchie-youngs-computer:~/x/mayhem ritchiey$ # Wh[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Whritchie-youngs-computer:~/x/mayhem ritchiey$ # W[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Writchie-youngs-computer:~/x/mayhem ritchiey$ # [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Oritchie-youngs-computer:~/x/mayhem ritchiey$ # Oritchie-youngs-computer:~/x/mayhem ritchiey$ # Okritchie-youngs-computer:~/x/mayhem ritchiey$ # Okritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Okritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok,ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok,ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, lritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, lritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, leritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, leritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, letritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, letritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let'ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let'ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let'sritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let'sritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's eritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's eritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's exritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's exritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's exparitchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's exparitchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expanritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expanritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expandritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expandritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand tritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand tritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand thritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand thritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand theritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand theritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the eritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the eritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the exritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the exritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the exaritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the exaritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the examritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the examritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the exampritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the exampritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the examplritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the examplritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the exampleritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the exampleritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the example ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the example ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the example aritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the example aritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the example a ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the example a ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the example a lritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the example a lritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the example a li tttltlt[Ktttttttlttlttlettlettle ttle ttle attle attle anttle anttle andttle andttle and ttle and ttle and mttle and mttle and mattle and mattle and mayttle and mayttle and maybttle and maybttle and maybettle and maybettle and maybe ttle and maybe ttle and maybe[Kttle and maybettle and mayb[Kttle and maybttle and may[Kttle and mayttle and ma[Kttle and mattle and m[Kttle and mttle and [Kttle and ttle and[Kttle andttle an[Kttle anttle a[Kttle attle [Kttle ttle[Kttlettl[Kttltt[Kttt[Kt[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the example a l[K
[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the example a lritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the example a [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the example a ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the example a[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the example aritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the example [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the example ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the example[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the exampleritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the exampl[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the examplritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the examp[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the exampritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the exam[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the examritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the exa[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the exaritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the ex[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the exritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the e[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the eritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand the[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand theritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand th[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand thritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand t[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand tritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expand[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expandritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expan[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expanritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expa[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's exparitchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's exp[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's expritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's ex[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's exritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's e[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's eritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let's[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let'sritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let'[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let'ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, let[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, letritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, le[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, leritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, l[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, lritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok,[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok,ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, mritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, mritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, mayritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, mayritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, mayberitchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, mayberitchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe aritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe aritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe anritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe anritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an Lritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an Lritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an LDritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an LDritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an LDAritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an LDAritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an LDAPritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an LDAPritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an LDAP ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an LDAP ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an LDAP[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an LDAPritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an LDA[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an LDAritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an LD[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an LDritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an L[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an Lritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an Xritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an Xritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XMritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XMritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XMLritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XMLritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML fritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML fritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML firitchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML firitchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML fieritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML fieritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML fielritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML fielritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML fiel ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML fiel ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML fiel[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML fielritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML fie[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML fieritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML fi[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML firitchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML filritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML filritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML fileritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML fileritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file iritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file iritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isnritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isnritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn'ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn'ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn'tritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn'tritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn't ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn't ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn't gritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn't gritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn't goritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn't goritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn't goiritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn't goiritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn't goinritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn't goinritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn't going t t to to to to to c to c to cu to cu to cut to cut to cut to cut to cut i to cut i to cut it to cut it to cut it to cut it to cut it[K to cut it to cut it. to cut it. to cut it. to cut it. to cut it. M to cut it. M to cut it. Ma to cut it. Ma to cut it. Mat to cut it. Mat to cut it. Ma[K to cut it. Ma to cut it. Mab to cut it. Mab to cut it. Ma[K to cut it. Ma to cut it. Mat to cut it. Mat to cut it. Matb to cut it. Matb to cut it. Mat[K to cut it. Mat to cut it. Ma[K to cut it. Ma to cut it. May to cut it. May to cut it. Mayb to cut it. Mayb to cut it. Maybe to cut it. Maybe to cut it. Maybe to cut it. Maybe to cut it. Maybe I to cut it. Maybe I to cut it. Maybe I to cut it. Maybe I to cut it. Maybe I n to cut it. Maybe I n to cut it. Maybe I ne to cut it. Maybe I ne to cut it. Maybe I nee to cut it. Maybe I nee to cut it. Maybe I need to cut it. Maybe I need to cut it. Maybe I need to cut it. Maybe I need to cut it. Maybe I need o to cut it. Maybe I need o to cut it. Maybe I need on to cut it. Maybe I need on to cut it. Maybe I need one to cut it. Maybe I need one to cut it. Maybe I need one to cut it. Maybe I need one to cut it. Maybe I need one o to cut it. Maybe I need one o to cut it. Maybe I need one of to cut it. Maybe I need one of to cut it. Maybe I need one of to cut it. Maybe I need one of to cut it. Maybe I need one of t to cut it. Maybe I need one of t to cut it. Maybe I need one of th to cut it. Maybe I need one of th to cut it. Maybe I need one of the to cut it. Maybe I need one of the to cut it. Maybe I need one of them to cut it. Maybe I need one of them to cut it. Maybe I need one of them to cut it. Maybe I need one of them to cut it. Maybe I need one of them n to cut it. Maybe I need one of them n to cut it. Maybe I need one of them ne to cut it. Maybe I need one of them ne to cut it. Maybe I need one of them new to cut it. Maybe I need one of them new to cut it. Maybe I need one of them new- to cut it. Maybe I need one of them new- to cut it. Maybe I need one of them new-f to cut it. Maybe I need one of them new-f to cut it. Maybe I need one of them new-fa to cut it. Maybe I need one of them new-fa to cut it. Maybe I need one of them new-fan to cut it. Maybe I need one of them new-fan to cut it. Maybe I need one of them new-fand to cut it. Maybe I need one of them new-fand to cut it. Maybe I need one of them new-fandl to cut it. Maybe I need one of them new-fandl to cut it. Maybe I need one of them new-fandle to cut it. Maybe I need one of them new-fandle to cut it. Maybe I need one of them new-fandl[K to cut it. Maybe I need one of them new-fandl to cut it. Maybe I need one of them new-fand[K to cut it. Maybe I need one of them new-fand to cut it. Maybe I need one of them new-fan[K to cut it. Maybe I need one of them new-fan to cut it. Maybe I need one of them new-fang to cut it. Maybe I need one of them new-fang to cut it. Maybe I need one of them new-fange to cut it. Maybe I need one of them new-fange to cut it. Maybe I need one of them new-fanged to cut it. Maybe I need one of them new-fanged to cut it. Maybe I need one of them new-fange[K to cut it. Maybe I need one of them new-fange to cut it. Maybe I need one of them new-fang[K to cut it. Maybe I need one of them new-fang to cut it. Maybe I need one of them new-fangl to cut it. Maybe I need one of them new-fangl to cut it. Maybe I need one of them new-fangle to cut it. Maybe I need one of them new-fangle to cut it. Maybe I need one of them new-fangled to cut it. Maybe I need one of them new-fangled to cut it. Maybe I need one of them new-fangled to cut it. Maybe I need one of them new-fangled to cut it. Maybe I need one of them new-fangled L to cut it. Maybe I need one of them new-fangled L to cut it. Maybe I need one of them new-fangled LD to cut it. Maybe I need one of them new-fangled LD to cut it. Maybe I need one of them new-fangled LDA to cut it. Maybe I need one of them new-fangled LDA to cut it. Maybe I need one of them new-fangled LDAP to cut it. Maybe I need one of them new-fangled LDAP to cut it. Maybe I need one of them new-fangled LDAP to cut it. Maybe I need one of them new-fangled LDAP to cut it. Maybe I need one of them new-fangled LDAP s to cut it. Maybe I need one of them new-fangled LDAP s to cut it. Maybe I need one of them new-fangled LDAP se to cut it. Maybe I need one of them new-fangled LDAP se to cut it. Maybe I need one of them new-fangled LDAP ser to cut it. Maybe I need one of them new-fangled LDAP ser to cut it. Maybe I need one of them new-fangled LDAP serv to cut it. Maybe I need one of them new-fangled LDAP serv to cut it. Maybe I need one of them new-fangled LDAP serve to cut it. Maybe I need one of them new-fangled LDAP serve to cut it. Maybe I need one of them new-fangled LDAP server to cut it. Maybe I need one of them new-fangled LDAP server to cut it. Maybe I need one of them new-fangled LDAP servers to cut it. Maybe I need one of them new-fangled LDAP servers to cut it. Maybe I need one of them new-fangled LDAP servers. to cut it. Maybe I need one of them new-fangled LDAP servers. to cut it. Maybe I need one of them new-fangled LDAP servers[K to cut it. Maybe I need one of them new-fangled LDAP servers to cut it. Maybe I need one of them new-fangled LDAP server[K to cut it. Maybe I need one of them new-fangled LDAP server to cut it. Maybe I need one of them new-fangled LDAP serve[K to cut it. Maybe I need one of them new-fangled LDAP serve to cut it. Maybe I need one of them new-fangled LDAP serv[K to cut it. Maybe I need one of them new-fangled LDAP serv to cut it. Maybe I need one of them new-fangled LDAP ser[K to cut it. Maybe I need one of them new-fangled LDAP ser to cut it. Maybe I need one of them new-fangled LDAP se[K to cut it. Maybe I need one of them new-fangled LDAP se to cut it. Maybe I need one of them new-fangled LDAP s[K to cut it. Maybe I need one of them new-fangled LDAP s to cut it. Maybe I need one of them new-fangled LDAP [K to cut it. Maybe I need one of them new-fangled LDAP to cut it. Maybe I need one of them new-fangled LDAP[K to cut it. Maybe I need one of them new-fangled LDAP to cut it. Maybe I need one of them new-fangled LDA[K to cut it. Maybe I need one of them new-fangled LDA to cut it. Maybe I need one of them new-fangled LD[K to cut it. Maybe I need one of them new-fangled LD to cut it. Maybe I need one of them new-fangled L[K to cut it. Maybe I need one of them new-fangled L to cut it. Maybe I need one of them new-fangled [K to cut it. Maybe I need one of them new-fangled to cut it. Maybe I need one of them new-fangled[K to cut it. Maybe I need one of them new-fangled to cut it. Maybe I need one of them new-fangle[K to cut it. Maybe I need one of them new-fangle to cut it. Maybe I need one of them new-fangl[K to cut it. Maybe I need one of them new-fangl to cut it. Maybe I need one of them new-fang[K to cut it. Maybe I need one of them new-fang to cut it. Maybe I need one of them new-fan[K to cut it. Maybe I need one of them new-fan to cut it. Maybe I need one of them new-fa[K to cut it. Maybe I need one of them new-fa to cut it. Maybe I need one of them new-f[K to cut it. Maybe I need one of them new-f to cut it. Maybe I need one of them new-[K to cut it. Maybe I need one of them new- to cut it. Maybe I need one of them new[K to cut it. Maybe I need one of them new to cut it. Maybe I need one of them ne[K to cut it. Maybe I need one of them ne to cut it. Maybe I need one of them n[K to cut it. Maybe I need one of them n to cut it. Maybe I need one of them [K to cut it. Maybe I need one of them to cut it. Maybe I need one of them[K to cut it. Maybe I need one of them to cut it. Maybe I need one of the[K to cut it. Maybe I need one of the to cut it. Maybe I need one of th[K to cut it. Maybe I need one of th to cut it. Maybe I need one of t[K to cut it. Maybe I need one of t to cut it. Maybe I need one of [K to cut it. Maybe I need one of to cut it. Maybe I need one of[K to cut it. Maybe I need one of to cut it. Maybe I need one o[K to cut it. Maybe I need one o to cut it. Maybe I need one [K to cut it. Maybe I need one to cut it. Maybe I need one[K to cut it. Maybe I need one to cut it. Maybe I need on[K to cut it. Maybe I need on to cut it. Maybe I need o[K to cut it. Maybe I need o to cut it. Maybe I need [K to cut it. Maybe I need to cut it. Maybe I need[K to cut it. Maybe I need to cut it. Maybe I nee[K to cut it. Maybe I nee to cut it. Maybe I ne[K to cut it. Maybe I ne to cut it. Maybe I n[K to cut it. Maybe I n to cut it. Maybe I [K to cut it. Maybe I to cut it. Maybe I[K to cut it. Maybe I to cut it. Maybe [K to cut it. Maybe to cut it. Maybe[K to cut it. Maybe to cut it. Mayb[K to cut it. Mayb to cut it. May[K to cut it. May to cut it. Ma[K to cut it. Ma to cut it. M[K to cut it. M to cut it. [K to cut it. to cut it.[K to cut it. to cut it[K to cut it to cut i[K to cut i to cut [K to cut to cut[K to cut to cu[K to cu to c[K to c to [K to to[K to t[K t [K [K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn't goin[K
[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn't goinritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn't goi[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn't goiritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn't go[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn't goritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn't g[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn't gritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn't [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn't ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn't[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn'tritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn'[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn'ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isn[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isnritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file is[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file isritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file i[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file iritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML file[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML fileritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML fil[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML filritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML fi[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML firitchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML f[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML fritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XML[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XMLritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XM[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an XMritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an X[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an Xritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe an[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe anritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe a[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe aritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybe[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, mayberitchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, mayb[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maybritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, may[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, mayritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, ma[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, maritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, m[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, mritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok,[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok,ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Okritchie-youngs-computer:~/x/mayhem ritchiey$ # O[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Oritchie-youngs-computer:~/x/mayhem ritchiey$ # [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Oritchie-youngs-computer:~/x/mayhem ritchiey$ # Oritchie-youngs-computer:~/x/mayhem ritchiey$ # Okritchie-youngs-computer:~/x/mayhem ritchiey$ # Okritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok,ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok,ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, writchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, writchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, weritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, weritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we'ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we'ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we'vritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we'vritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we'veritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we'veritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've gritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've gritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've goritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've goritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've go ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've go ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've go tritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've go tritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've go ttritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've go ttritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've go t[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've go tritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've go [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've go ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've go[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've goritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've gotritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've gotritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got tritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got tritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got thritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got thritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got theritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got theritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the aritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the aritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the atritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the atritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the attritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the attritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the attrritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the attrritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the att[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the attritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the at[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the atritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the a[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the aritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the britchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the britchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the baritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the baritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basiritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basiritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basicritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basicritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basic ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basic ritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basic aritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basic aritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basic atritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basic atritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basic attritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basic attritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basic attrritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basic attrritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basic attriritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basic attriritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basic attribritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basic attribritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basic attriburitchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basic attriburitchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basic attributritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basic attributritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basic attribute sss s s as as acs acs acts acts ac[Ks acs acrs acrs acros acros across across acrosss acrosss across s across s across as across as across ans across ans across an s across an s across an[Ks across ans across ands across ands across and s across and s across and ys across and ys across and yos across and yos across and yous across and yous across and you s across and you s across and you cs across and you cs across and you cas across and you cas across and you cans across and you cans across and you can s across and you can s across and you can ss across and you can ss across and you can ses across and you can ses across and you can sees across and you can sees across and you can see s across and you can see s across and you can see ts across and you can see ts across and you can see ths across and you can see ths across and you can see thas across and you can see thas across and you can see thats across and you can see thats across and you can see that s across and you can see that s across and you can see that is across and you can see that is across and you can see that its across and you can see that its across and you can see that it's across and you can see that it's across and you can see that it'ss across and you can see that it'ss across and you can see that it's s across and you can see that it's s across and you can see that it's rs across and you can see that it's rs across and you can see that it's res across and you can see that it's res across and you can see that it's rens across and you can see that it's rens across and you can see that it's renas across and you can see that it's renas across and you can see that it's renams across and you can see that it's renams across and you can see that it's renames across and you can see that it's renames across and you can see that it's renameds across and you can see that it's renameds across and you can see that it's renamed s across and you can see that it's renamed s across and you can see that it's renamed ts across and you can see that it's renamed ts across and you can see that it's renamed ths across and you can see that it's renamed ths across and you can see that it's renamed thes across and you can see that it's renamed thes across and you can see that it's renamed thems across and you can see that it's renamed thems across and you can see that it's renamed them s across and you can see that it's renamed them s across and you can see that it's renamed them as across and you can see that it's renamed them as across and you can see that it's renamed them ass across and you can see that it's renamed them ass across and you can see that it's renamed them as s across and you can see that it's renamed them as s across and you can see that it's renamed them as ps across and you can see that it's renamed them as ps across and you can see that it's renamed them as pes across and you can see that it's renamed them as pes across and you can see that it's renamed them as pers across and you can see that it's renamed them as pers across and you can see that it's renamed them as pe[Ks across and you can see that it's renamed them as pes across and you can see that it's renamed them as p[Ks across and you can see that it's renamed them as ps across and you can see that it's renamed them as [Ks across and you can see that it's renamed them as s across and you can see that it's renamed them as[Ks across and you can see that it's renamed them ass across and you can see that it's renamed them a[Ks across and you can see that it's renamed them as across and you can see that it's renamed them [Ks across and you can see that it's renamed them s across and you can see that it's renamed them as across and you can see that it's renamed them as across and you can see that it's renamed them ass across and you can see that it's renamed them ass across and you can see that it's renamed them as s across and you can see that it's renamed them as s across and you can see that it's renamed them as ss across and you can see that it's renamed them as ss across and you can see that it's renamed them as sps across and you can see that it's renamed them as sps across and you can see that it's renamed them as spes across and you can see that it's renamed them as spes across and you can see that it's renamed them as specs across and you can see that it's renamed them as specs across and you can see that it's renamed them as specfs across and you can see that it's renamed them as specfs across and you can see that it's renamed them as spec[Ks across and you can see that it's renamed them as specs across and you can see that it's renamed them as specis across and you can see that it's renamed them as specis across and you can see that it's renamed them as specifs across and you can see that it's renamed them as specifs across and you can see that it's renamed them as specifis across and you can see that it's renamed them as specifis across and you can see that it's renamed them as specifies across and you can see that it's renamed them as specifies across and you can see that it's renamed them as specifieds across and you can see that it's renamed them as specifieds across and you can see that it's renamed them as specified s across and you can see that it's renamed them as specified s across and you can see that it's renamed them as specified bs across and you can see that it's renamed them as specified bs across and you can see that it's renamed them as specified bys across and you can see that it's renamed them as specified bys across and you can see that it's renamed them as specified by s across and you can see that it's renamed them as specified by s across and you can see that it's renamed them as specified by ts across and you can see that it's renamed them as specified by ts across and you can see that it's renamed them as specified by ths across and you can see that it's renamed them as specified by ths across and you can see that it's renamed them as specified by thes across and you can see that it's renamed them as specified by thes across and you can see that it's renamed them as specified by the s across and you can see that it's renamed them as specified by the s across and you can see that it's renamed them as specified by the ms across and you can see that it's renamed them as specified by the ms across and you can see that it's renamed them as specified by the mas across and you can see that it's renamed them as specified by the mas across and you can see that it's renamed them as specified by the maps across and you can see that it's renamed them as specified by the maps across and you can see that it's renamed them as specified by the map s across and you can see that it's renamed them as specified by the map s across and you can see that it's renamed them as specified by the map ss across and you can see that it's renamed them as specified by the map ss across and you can see that it's renamed them as specified by the map sts across and you can see that it's renamed them as specified by the map sts across and you can see that it's renamed them as specified by the map stas across and you can see that it's renamed them as specified by the map stas across and you can see that it's renamed them as specified by the map stats across and you can see that it's renamed them as specified by the map stats across and you can see that it's renamed them as specified by the map states across and you can see that it's renamed them as specified by the map states across and you can see that it's renamed them as specified by the map statems across and you can see that it's renamed them as specified by the map statems across and you can see that it's renamed them as specified by the map statemes across and you can see that it's renamed them as specified by the map statemes across and you can see that it's renamed them as specified by the map statemen tttststs.ts.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Britchie-youngs-computer:~/x/mayhem ritchiey$ # Britchie-youngs-computer:~/x/mayhem ritchiey$ # Buritchie-youngs-computer:~/x/mayhem ritchiey$ # Buritchie-youngs-computer:~/x/mayhem ritchiey$ # Butritchie-youngs-computer:~/x/mayhem ritchiey$ # Butritchie-youngs-computer:~/x/mayhem ritchiey$ # But ritchie-youngs-computer:~/x/mayhem ritchiey$ # But ritchie-youngs-computer:~/x/mayhem ritchiey$ # But writchie-youngs-computer:~/x/mayhem ritchiey$ # But writchie-youngs-computer:~/x/mayhem ritchiey$ # But whritchie-youngs-computer:~/x/mayhem ritchiey$ # But whritchie-youngs-computer:~/x/mayhem ritchiey$ # But wharitchie-youngs-computer:~/x/mayhem ritchiey$ # But wharitchie-youngs-computer:~/x/mayhem ritchiey$ # But whatritchie-youngs-computer:~/x/mayhem ritchiey$ # But whatritchie-youngs-computer:~/x/mayhem ritchiey$ # But what ritchie-youngs-computer:~/x/mayhem ritchiey$ # But what ritchie-youngs-computer:~/x/mayhem ritchiey$ # But what aritchie-youngs-computer:~/x/mayhem ritchiey$ # But what aritchie-youngs-computer:~/x/mayhem ritchiey$ # But what abritchie-youngs-computer:~/x/mayhem ritchiey$ # But what abritchie-youngs-computer:~/x/mayhem ritchiey$ # But what aboritchie-youngs-computer:~/x/mayhem ritchiey$ # But what aboritchie-youngs-computer:~/x/mayhem ritchiey$ # But what abouritchie-youngs-computer:~/x/mayhem ritchiey$ # But what abouritchie-youngs-computer:~/x/mayhem ritchiey$ # But what aboutritchie-youngs-computer:~/x/mayhem ritchiey$ # But what aboutritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about ritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about ritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about tritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about tritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about thritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about thritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about theritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about theritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the ritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the ritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the sritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the sritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skiritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skiritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skilritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skilritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skillritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skillritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skillsritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skillsritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skills ritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skills ritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skills aritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skills aritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skills atritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skills atritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skills attritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skills attritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skills attrritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skills attrritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skills attriritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skills attriritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skills attribritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skills attribritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skills attribu tttetete.te.te. te. te. Tte. Tte. Thte. Thte. Thate. Thate. Thatte. Thatte. That te. That te. That wte. That wte. That wete. That wete. That w[Kte. That wte. That wate. That wate. That waste. That waste. That was te. That was te. That was cte. That was cte. That was cote. That was cote. That was colte. That was colte. That was colote. That was colote. That was colonte. That was colonte. That was colon te. That was colon te. That was colon ste. That was colon ste. That was colon sete. That was colon sete. That was colon septe. That was colon septe. That was colon sepate. That was colon sepate. That was colon separte. That was colon separte. That was colon separate. That was colon separate. That was colon separatte. That was colon separatte. That was colon separatete. That was colon separatete. That was colon separatedte. That was colon separatedte. That was colon separated.te. That was colon separated.te. That was colon separated. te. That was colon separated. te. That was colon separated. Lte. That was colon separated. Lte. That was colon separated. Lete. That was colon separated. Lete. That was colon separated. Lette. That was colon separated. Lette. That was colon separated. Let'te. That was colon separated. Let'te. That was colon separated. Let'ste. That was colon separated. Let'ste. That was colon separated. Let's te. That was colon separated. Let's te. That was colon separated. Let's ate. That was colon separated. Let's ate. That was colon separated. Let's aste. That was colon separated. Let's aste. That was colon separated. Let's asate. That was colon separated. Let's asate. That was colon separated. Let's as[Kte. That was colon separated. Let's aste. That was colon separated. Let's a[Kte. That was colon separated. Let's ate. That was colon separated. Let's [Kte. That was colon separated. Let's te. That was colon separated. Let's ste. That was colon separated. Let's ste. That was colon separated. Let's syte. That was colon separated. Let's syte. That was colon separated. Let's s[Kte. That was colon separated. Let's ste. That was colon separated. Let's sate. That was colon separated. Let's sate. That was colon separated. Let's sayte. That was colon separated. Let's sayte. That was colon separated. Let's say te. That was colon separated. Let's say te. That was colon separated. Let's say wte. That was colon separated. Let's say wte. That was colon separated. Let's say wete. That was colon separated. Let's say wete. That was colon separated. Let's say we te. That was colon separated. Let's say we te. That was colon separated. Let's say we wte. That was colon separated. Let's say we wte. That was colon separated. Let's say we wate. That was colon separated. Let's say we wate. That was colon separated. Let's say we wante. That was colon separated. Let's say we wante. That was colon separated. Let's say we wantte. That was colon separated. Let's say we wantte. That was colon separated. Let's say we want te. That was colon separated. Let's say we want te. That was colon separated. Let's say we want tte. That was colon separated. Let's say we want tte. That was colon separated. Let's say we want tote. That was colon separated. Let's say we want tote. That was colon separated. Let's say we want to te. That was colon separated. Let's say we want to te. That was colon separated. Let's say we want to bte. That was colon separated. Let's say we want to bte. That was colon separated. Let's say we want to [Kte. That was colon separated. Let's say we want to te. That was colon separated. Let's say we want to ite. That was colon separated. Let's say we want to ite. That was colon separated. Let's say we want to imte. That was colon separated. Let's say we want to imte. That was colon separated. Let's say we want to impte. That was colon separated. Let's say we want to impte. That was colon separated. Let's say we want to impote. That was colon separated. Let's say we want to impote. That was colon separated. Let's say we want to importe. That was colon separated. Let's say we want to importe. That was colon separated. Let's say we want to importte. That was colon separated. Let's say we want to importte. That was colon separated. Let's say we want to import te. That was colon separated. Let's say we want to import te. That was colon separated. Let's say we want to import tte. That was colon separated. Let's say we want to import tte. That was colon separated. Let's say we want to import thte. That was colon separated. Let's say we want to import thte. That was colon separated. Let's say we want to import thate. That was colon separated. Let's say we want to import thate. That was colon separated. Let's say we want to import thatte. That was colon separated. Let's say we want to import thatte. That was colon separated. Let's say we want to import that te. That was colon separated. Let's say we want to import that te. That was colon separated. Let's say we want to import that bte. That was colon separated. Let's say we want to import that bte. That was colon separated. Let's say we want to import that bute. That was colon separated. Let's say we want to import that bute. That was colon separated. Let's say we want to import that butte. That was colon separated. Let's say we want to import that butte. That was colon separated. Let's say we want to import that but te. That was colon separated. Let's say we want to import that but te. That was colon separated. Let's say we want to import that but wte. That was colon separated. Let's say we want to import that but wte. That was colon separated. Let's say we want to import that but wete. That was colon separated. Let's say we want to import that but wete. That was colon separated. Let's say we want to import that but we te. That was colon separated. Let's say we want to import that but we te. That was colon separated. Let's say we want to import that but we wte. That was colon separated. Let's say we want to import that but we wte. That was colon separated. Let's say we want to import that but we wate. That was colon separated. Let's say we want to import that but we wate. That was colon separated. Let's say we want to import that but we wante. That was colon separated. Let's say we want to import that but we wante. That was colon separated. Let's say we want to import that but we wantte. That was colon separated. Let's say we want to import that but we wantte. That was colon separated. Let's say we want to import that but we want te. That was colon separated. Let's say we want to import that but we want te. That was colon separated. Let's say we want to import that but we want tte. That was colon separated. Let's say we want to import that but we want tte. That was colon separated. Let's say we want to import that but we want tote. That was colon separated. Let's say we want to import that but we want tote. That was colon separated. Let's say we want to import that but we want to te. That was colon separated. Let's say we want to import that but we want to te. That was colon separated. Let's say we want to import that but we want to bte. That was colon separated. Let's say we want to import that but we want to bte. That was colon separated. Let's say we want to import that but we want to br eeeaeaeakeakeak eak eak ieak ieak iteak iteak it eak it eak it ieak it ieak it ineak it ineak it inteak it inteak it intoeak it intoeak it into eak it into eak it into aeak it into aeak it into a eak it into a eak it into a meak it into a meak it into a mueak it into a mueak it into a muleak it into a muleak it into a multeak it into a multeak it into a multieak it into a multieak it into a multiveak it into a multiveak it into a multi[Keak it into a multieak it into a multi-eak it into a multi-eak it into a multi-veak it into a multi-veak it into a multi-vaeak it into a multi-vaeak it into a multi-valeak it into a multi-valeak it into a multi-valueak it into a multi-valueak it into a multi-valueeak it into a multi-valueeak it into a multi-valueseak it into a multi-valueseak it into a multi-values eak it into a multi-values eak it into a multi-values[Keak it into a multi-valueseak it into a multi-value[Keak it into a multi-valueeak it into a multi-valuedeak it into a multi-valuedeak it into a multi-valued eak it into a multi-valued eak it into a multi-valued feak it into a multi-valued feak it into a multi-valued fieak it into a multi-valued fieak it into a multi-valued fieeak it into a multi-valued fieeak it into a multi-valued fieleak it into a multi-valued fieleak it into a multi-valued fieldeak it into a multi-valued fieldeak it into a multi-valued field eak it into a multi-valued field eak it into a multi-valued field ieak it into a multi-valued field ieak it into a multi-valued field ineak it into a multi-valued field ineak it into a multi-valued field inteak it into a multi-valued field inteak it into a multi-valued field inteeak it into a multi-valued field inteeak it into a multi-valued field int[Keak it into a multi-valued field inteak it into a multi-valued field in[Keak it into a multi-valued field ineak it into a multi-valued field inseak it into a multi-valued field inseak it into a multi-valued field insteak it into a multi-valued field insteak it into a multi-valued field insteeak it into a multi-valued field insteeak it into a multi-valued field insteaeak it into a multi-valued field insteaeak it into a multi-valued field insteadeak it into a multi-valued field insteadeak it into a multi-valued field instead.eak it into a multi-valued field instead.eak it into a multi-valued field instead. eak it into a multi-valued field instead. eak it into a multi-valued field instead. Leak it into a multi-valued field instead. Leak it into a multi-valued field instead. Leeak it into a multi-valued field instead. Leeak it into a multi-valued field instead. Leteak it into a multi-valued field instead. Leteak it into a multi-valued field instead. Letseak it into a multi-valued field instead. Letseak it into a multi-valued field instead. Lets eak it into a multi-valued field instead. Lets eak it into a multi-valued field instead. Lets leak it into a multi-valued field instead. Lets leak it into a multi-valued field instead. Lets loeak it into a multi-valued field instead. Lets loeak it into a multi-valued field instead. Lets looeak it into a multi-valued field instead. Lets looeak it into a multi-valued field instead. Lets lookeak it into a multi-valued field instead. Lets lookeak it into a multi-valued field instead. Lets look eak it into a multi-valued field instead. Lets look eak it into a multi-valued field instead. Lets look oeak it into a multi-valued field instead. Lets look oeak it into a multi-valued field instead. Lets look oueak it into a multi-valued field instead. Lets look oueak it into a multi-valued field instead. Lets look outeak it into a multi-valued field instead. Lets look outeak it into a multi-valued field instead. Lets look ou[Keak it into a multi-valued field instead. Lets look oueak it into a multi-valued field instead. Lets look o[Keak it into a multi-valued field instead. Lets look oeak it into a multi-valued field instead. Lets look [Keak it into a multi-valued field instead. Lets look eak it into a multi-valued field instead. Lets look[Keak it into a multi-valued field instead. Lets lookeak it into a multi-valued field instead. Lets loo[Keak it into a multi-valued field instead. Lets looeak it into a multi-valued field instead. Lets lo[Keak it into a multi-valued field instead. Lets loeak it into a multi-valued field instead. Lets l[Keak it into a multi-valued field instead. Lets leak it into a multi-valued field instead. Lets [Keak it into a multi-valued field instead. Lets eak it into a multi-valued field instead. Lets ceak it into a multi-valued field instead. Lets ceak it into a multi-valued field instead. Lets caeak it into a multi-valued field instead. Lets caeak it into a multi-valued field instead. Lets caneak it into a multi-valued field instead. Lets caneak it into a multi-valued field instead. Lets ca[Keak it into a multi-valued field instead. Lets caeak it into a multi-valued field instead. Lets c[Keak it into a multi-valued field instead. Lets ceak it into a multi-valued field instead. Lets cheak it into a multi-valued field instead. Lets cheak it into a multi-valued field instead. Lets chaeak it into a multi-valued field instead. Lets chaeak it into a multi-valued field instead. Lets chaneak it into a multi-valued field instead. Lets chaneak it into a multi-valued field instead. Lets chanceak it into a multi-valued field instead. Lets chanceak it into a multi-valued field instead. Lets chanceeak it into a multi-valued field instead. Lets chanceeak it into a multi-valued field instead. Lets chance eak it into a multi-valued field instead. Lets chance eak it into a multi-valued field instead. Lets chance[Keak it into a multi-valued field instead. Lets chanceeak it into a multi-valued field instead. Lets chanc[Keak it into a multi-valued field instead. Lets chanceak it into a multi-valued field instead. Lets chan[Keak it into a multi-valued field instead. Lets chaneak it into a multi-valued field instead. Lets changeak it into a multi-valued field instead. Lets changeak it into a multi-valued field instead. Lets changreak it into a multi-valued field instead. Lets changreak it into a multi-valued field instead. Lets chang[Keak it into a multi-valued field instead. Lets changeak it into a multi-valued field instead. Lets changeeak it into a multi-valued field instead. Lets changeeak it into a multi-valued field instead. Lets change eak it into a multi-valued field instead. Lets change eak it into a multi-valued field instead. Lets change oeak it into a multi-valued field instead. Lets change oeak it into a multi-valued field instead. Lets change oueak it into a multi-valued field instead. Lets change oueak it into a multi-valued field instead. Lets change oureak it into a multi-valued field instead. Lets change oureak it into a multi-valued field instead. Lets change our eak it into a multi-valued field instead. Lets change our eak it into a multi-valued field instead. Lets change our peak it into a multi-valued field instead. Lets change our peak it into a multi-valued field instead. Lets change our pieak it into a multi-valued field instead. Lets change our pieak it into a multi-valued field instead. Lets change our pipeak it into a multi-valued field instead. Lets change our pipeak it into a multi-valued field instead. Lets change our pipeeak it into a multi-valued field instead. Lets change our pipeeak it into a multi-valued field instead. Lets change our pipeleak it into a multi-valued field instead. Lets change our pipeleak it into a multi-valued field instead. Lets change our pipelieak it into a multi-valued field instead. Lets change our pipelieak it into a multi-valued field instead. Lets change our pipelineak it into a multi-valued field instead. Lets change our pipelineak it into a multi-valued field instead. Lets change our pipelineeak it into a multi-valued field instead. Lets change our pipelineeak it into a multi-valued field instead. Lets change our pipeline eak it into a multi-valued field instead. Lets change our pipeline eak it into a multi-valued field instead. Lets change our pipeline teak it into a multi-valued field instead. Lets change our pipeline teak it into a multi-valued field instead. Lets change our pipeline toeak it into a multi-valued field instead. Lets change our pipeline toeak it into a multi-valued field instead. Lets change our pipeline to eak it into a multi-valued field instead. Lets change our pipeline to eak it into a multi-valued field instead. Lets change our pipeline to deak it into a multi-valued field instead. Lets change our pipeline to deak it into a multi-valued field instead. Lets change our pipeline to doeak it into a multi-valued field instead. Lets change our pipeline to doeak it into a multi-valued field instead. Lets change our pipeline to do eak it into a multi-valued field instead. Lets change our pipeline to do eak it into a multi-valued field instead. Lets change our pipeline to do teak it into a multi-valued field instead. Lets change our pipeline to do teak it into a multi-valued field instead. Lets change our pipeline to do theak it into a multi-valued field instead. Lets change our pipeline to do theak it into a multi-valued field instead. Lets change our pipeline to do thaeak it into a multi-valued field instead. Lets change our pipeline to do thaeak it into a multi-valued field instead. Lets change our pipeline to do thateak it into a multi-valued field instead. Lets change our pipeline to do thateak it into a multi-valued field instead. Lets change our pipeline to do that.eak it into a multi-valued field instead. Lets change our pipeline to do that.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat pritchie-youngs-computer:~/x/mayhem ritchiey$ cat pritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/ritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/ritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/hritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/hritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/hr_import_pipeline.rb
class HrImportPipeline < RubySync::Pipelines::BasePipeline
client :hr
vault :databank
# Remove any fields that you don't want to set in the client from the vault
#allow_out 'allow', 'these', 'fields', 'through'
# Remove any fields that you don't want to set in the vault from the client
allow_in 'id', 'first_name', 'last_name', 'skills'
# If the client and vault have different names for the same field, define the
# the mapping here. For example, if the vault has a field called "first name" and
# the client has a field called givenName you may put:
# map 'first name', 'givenName'
#
# You can also calculate the values for fields. For more info, see
# http://rubysync.org/docs/rubysync-transformations/
# "in" means going from client to vault
in_transform do
map 'cn', 'id'
map 'givenName', 'first_name'
map 'sn', 'last_name'
map('agent_skills') { value_of('skills').split(':') }
end
# "out" means going from vault to client
out_transform do
#map 'id', 'vault_field'
#map 'first_name', 'vault_field'
#map 'last_name', 'vault_field'
#map 'skills', 'vault_field'
end
end
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # nritchie-youngs-computer:~/x/mayhem ritchiey$ # nritchie-youngs-computer:~/x/mayhem ritchiey$ # noritchie-youngs-computer:~/x/mayhem ritchiey$ # noritchie-youngs-computer:~/x/mayhem ritchiey$ # notritchie-youngs-computer:~/x/mayhem ritchiey$ # notritchie-youngs-computer:~/x/mayhem ritchiey$ # noteritchie-youngs-computer:~/x/mayhem ritchiey$ # noteritchie-youngs-computer:~/x/mayhem ritchiey$ # note ritchie-youngs-computer:~/x/mayhem ritchiey$ # note ritchie-youngs-computer:~/x/mayhem ritchiey$ # note tritchie-youngs-computer:~/x/mayhem ritchiey$ # note tritchie-youngs-computer:~/x/mayhem ritchiey$ # note thritchie-youngs-computer:~/x/mayhem ritchiey$ # note thritchie-youngs-computer:~/x/mayhem ritchiey$ # note theritchie-youngs-computer:~/x/mayhem ritchiey$ # note theritchie-youngs-computer:~/x/mayhem ritchiey$ # note the ritchie-youngs-computer:~/x/mayhem ritchiey$ # note the ritchie-youngs-computer:~/x/mayhem ritchiey$ # note the lritchie-youngs-computer:~/x/mayhem ritchiey$ # note the lritchie-youngs-computer:~/x/mayhem ritchiey$ # note the liritchie-youngs-computer:~/x/mayhem ritchiey$ # note the liritchie-youngs-computer:~/x/mayhem ritchiey$ # note the linritchie-youngs-computer:~/x/mayhem ritchiey$ # note the linritchie-youngs-computer:~/x/mayhem ritchiey$ # note the lineritchie-youngs-computer:~/x/mayhem ritchiey$ # note the lineritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line ritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line ritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line tritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line tritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line thritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line thritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line tharitchie-youngs-computer:~/x/mayhem ritchiey$ # note the line tharitchie-youngs-computer:~/x/mayhem ritchiey$ # note the line thatritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line thatritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that ritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that ritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that sritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that sritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that saritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that saritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that sayritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that sayritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that saysritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that saysritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that says:ritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that says:ritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that says: ritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that says: ritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that says: ritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that says: ritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that says: ritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that says: ritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that says: ritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that says: ritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that says: ritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that says: ritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that says: mritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that says: mritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that says: maritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that says: maritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that says: mapritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that says: mapritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that says: map( '''a'a'ag'ag'age'age'agen'agen'agent'agent'agent_'agent_'agent_s'agent_s'agent_sk'agent_sk'agent_ski'agent_ski'agent_skil'agent_skil'agent_skill'agent_skill'agent_skills'agent_skills'agent_skills''agent_skills''agent_skills')'agent_skills')'agent_skills') 'agent_skills') 'agent_skills') {'agent_skills') {'agent_skills') { 'agent_skills') { 'agent_skills') { v'agent_skills') { v'agent_skills') { va'agent_skills') { va'agent_skills') { val'agent_skills') { val'agent_skills') { valu'agent_skills') { valu'agent_skills') { value'agent_skills') { value'agent_skills') { value_'agent_skills') { value_'agent_skills') { value_o'agent_skills') { value_o'agent_skills') { value_of'agent_skills') { value_of'agent_skills') { value_of('agent_skills') { value_of('agent_skills') { value_of(''agent_skills') { value_of(''agent_skills') { value_of('s'agent_skills') { value_of('s'agent_skills') { value_of('sk'agent_skills') { value_of('sk'agent_skills') { value_of('ski'agent_skills') { value_of('ski'agent_skills') { value_of('skil'agent_skills') { value_of('skil'agent_skills') { value_of('skill'agent_skills') { value_of('skill'agent_skills') { value_of('skills'agent_skills') { value_of('skills'agent_skills') { value_of('skills''agent_skills') { value_of('skills''agent_skills') { value_of('skills')'agent_skills') { value_of('skills')'agent_skills') { value_of('skills').'agent_skills') { value_of('skills').'agent_skills') { value_of('skills').s'agent_skills') { value_of('skills').s'agent_skills') { value_of('skills').sp'agent_skills') { value_of('skills').sp'agent_skills') { value_of('skills').spl'agent_skills') { value_of('skills').spl'agent_skills') { value_of('skills').spli'agent_skills') { value_of('skills').spli'agent_skills') { value_of('skills').split'agent_skills') { value_of('skills').split'agent_skills') { value_of('skills').split('agent_skills') { value_of('skills').split('agent_skills') { value_of('skills').split(''agent_skills') { value_of('skills').split(''agent_skills') { value_of('skills').split(':'agent_skills') { value_of('skills').split(':'agent_skills') { value_of('skills').split(':''agent_skills') { value_of('skills').split(':''agent_skills') { value_of('skills').split(':')'agent_skills') { value_of('skills').split(':')'agent_skills') { value_of('skills').split(':') 'agent_skills') { value_of('skills').split(':') 'agent_skills') { value_of('skills').split(':') }'agent_skills') { value_of('skills').split(':') }
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ Tritchie-youngs-computer:~/x/mayhem ritchiey$ Tritchie-youngs-computer:~/x/mayhem ritchiey$ Thritchie-youngs-computer:~/x/mayhem ritchiey$ Thritchie-youngs-computer:~/x/mayhem ritchiey$ Tharitchie-youngs-computer:~/x/mayhem ritchiey$ Tharitchie-youngs-computer:~/x/mayhem ritchiey$ Thatritchie-youngs-computer:~/x/mayhem ritchiey$ Thatritchie-youngs-computer:~/x/mayhem ritchiey$ That ritchie-youngs-computer:~/x/mayhem ritchiey$ That ritchie-youngs-computer:~/x/mayhem ritchiey$ That sritchie-youngs-computer:~/x/mayhem ritchiey$ That sritchie-youngs-computer:~/x/mayhem ritchiey$ That spritchie-youngs-computer:~/x/mayhem ritchiey$ That spritchie-youngs-computer:~/x/mayhem ritchiey$ That speritchie-youngs-computer:~/x/mayhem ritchiey$ That speritchie-youngs-computer:~/x/mayhem ritchiey$ That specritchie-youngs-computer:~/x/mayhem ritchiey$ That specritchie-youngs-computer:~/x/mayhem ritchiey$ That speciritchie-youngs-computer:~/x/mayhem ritchiey$ That speciritchie-youngs-computer:~/x/mayhem ritchiey$ That specifritchie-youngs-computer:~/x/mayhem ritchiey$ That specifritchie-youngs-computer:~/x/mayhem ritchiey$ That specifiritchie-youngs-computer:~/x/mayhem ritchiey$ That specifiritchie-youngs-computer:~/x/mayhem ritchiey$ That specifieritchie-youngs-computer:~/x/mayhem ritchiey$ That specifieritchie-youngs-computer:~/x/mayhem ritchiey$ That specifiedritchie-youngs-computer:~/x/mayhem ritchiey$ That specifiedritchie-youngs-computer:~/x/mayhem ritchiey$ That specifie[Kritchie-youngs-computer:~/x/mayhem ritchiey$ That specifieritchie-youngs-computer:~/x/mayhem ritchiey$ That specifiesritchie-youngs-computer:~/x/mayhem ritchiey$ That specifiesritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies ritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies ritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies sritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies sritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies soritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies soritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies somritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies somritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies someritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies someritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some ritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some ritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Rritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Rritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Rubritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Rubritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Rubyritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Rubyritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby ritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby ritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby dritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby dritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby [Kritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby ritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby critchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby critchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby coritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby coritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby codritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby codritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby coderitchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby coderitchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby code ritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby code ritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby code tritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby code tritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby code thritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby code thritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby code tharitchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby code tharitchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby code thatritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby code thatritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby code that wwwiwiwilwilwillwillwill will will ewill ewill exwill exwill exewill exewill execwill execwill execuwill execuwill executwill executwill executewill executewill execute will execute will execute twill execute twill execute towill execute towill execute to will execute to will execute to[Kwill execute towill execute t[Kwill execute twill execute [Kwill execute will execute fwill execute fwill execute fowill execute fowill execute forwill execute forwill execute for will execute for will execute for ewill execute for ewill execute for eawill execute for eawill execute for eacwill execute for eacwill execute for eachwill execute for eachwill execute for each will execute for each will execute for each rwill execute for each rwill execute for each rewill execute for each rewill execute for each redwill execute for each redwill execute for each re[Kwill execute for each rewill execute for each recwill execute for each recwill execute for each recowill execute for each recowill execute for each recorwill execute for each recorwill execute for each recordwill execute for each recordwill execute for each record will execute for each record will execute for each record wwill execute for each record wwill execute for each record whwill execute for each record whwill execute for each record whewill execute for each record whewill execute for each record whenwill execute for each record whenwill execute for each record when will execute for each record when will execute for each record when awill execute for each record when awill execute for each record when a will execute for each record when a will execute for each record when a vwill execute for each record when a vwill execute for each record when a vawill execute for each record when a vawill execute for each record when a valwill execute for each record when a valwill execute for each record when a valuwill execute for each record when a valuwill execute for each record when a valuewill execute for each record when a valuewill execute for each record when a value will execute for each record when a value will execute for each record when a value iwill execute for each record when a value iwill execute for each record when a value iswill execute for each record when a value iswill execute for each record when a value is will execute for each record when a value is will execute for each record when a value is[Kwill execute for each record when a value iswill execute for each record when a value i[Kwill execute for each record when a value iwill execute for each record when a value [Kwill execute for each record when a value will execute for each record when a value[Kwill execute for each record when a valuewill execute for each record when a valu[Kwill execute for each record when a valuwill execute for each record when a val[Kwill execute for each record when a valwill execute for each record when a va[Kwill execute for each record when a vawill execute for each record when a v[Kwill execute for each record when a vwill execute for each record when a [Kwill execute for each record when a will execute for each record when a[Kwill execute for each record when awill execute for each record when [Kwill execute for each record when will execute for each record when[Kwill execute for each record whenwill execute for each record whe[Kwill execute for each record whewill execute for each record wh[Kwill execute for each record whwill execute for each record w[Kwill execute for each record wwill execute for each record [Kwill execute for each record will execute for each record[Kwill execute for each recordwill execute for each recor[Kwill execute for each recorwill execute for each reco[Kwill execute for each recowill execute for each rec[Kwill execute for each recwill execute for each re[Kwill execute for each rewill execute for each r[Kwill execute for each rwill execute for each [Kwill execute for each will execute for each ewill execute for each ewill execute for each evwill execute for each evwill execute for each evewill execute for each evewill execute for each evenwill execute for each evenwill execute for each eventwill execute for each eventwill execute for each event will execute for each event will execute for each event wwill execute for each event wwill execute for each event whwill execute for each event whwill execute for each event whewill execute for each event whewill execute for each event whenwill execute for each event whenwill execute for each event when will execute for each event when will execute for each event when awill execute for each event when awill execute for each event when a will execute for each event when a will execute for each event when a vwill execute for each event when a vwill execute for each event when a vlwill execute for each event when a vlwill execute for each event when a vluwill execute for each event when a vluwill execute for each event when a vluewill execute for each event when a vluewill execute for each event when a vlu[Kwill execute for each event when a vluwill execute for each event when a vl[Kwill execute for each event when a vlwill execute for each event when a v[Kwill execute for each event when a vwill execute for each event when a vawill execute for each event when a vawill execute for each event when a valwill execute for each event when a valwill execute for each event when a valuwill execute for each event when a valuwill execute for each event when a valuewill execute for each event when a valuewill execute for each event when a value will execute for each event when a value will execute for each event when a value iwill execute for each event when a value iwill execute for each event when a value iswill execute for each event when a value iswill execute for each event when a value is will execute for each event when a value is will execute for each event when a value is[Kwill execute for each event when a value iswill execute for each event when a value i[Kwill execute for each event when a value iwill execute for each event when a value [Kwill execute for each event when a value will execute for each event when a value[Kwill execute for each event when a valuewill execute for each event when a valu[Kwill execute for each event when a valuwill execute for each event when a val[Kwill execute for each event when a valwill execute for each event when a va[Kwill execute for each event when a vawill execute for each event when a v[Kwill execute for each event when a vwill execute for each event when a [Kwill execute for each event when a will execute for each event when a[Kwill execute for each event when awill execute for each event when [Kwill execute for each event when will execute for each event when[Kwill execute for each event whenwill execute for each event whe[Kwill execute for each event whewill execute for each event wh[Kwill execute for each event whwill execute for each event w[Kwill execute for each event wwill execute for each event [Kwill execute for each event will execute for each event twill execute for each event twill execute for each event towill execute for each event towill execute for each event to will execute for each event to will execute for each event to dwill execute for each event to dwill execute for each event to dewill execute for each event to dewill execute for each event to detwill execute for each event to detwill execute for each event to detewill execute for each event to detewill execute for each event to deterwill execute for each event to deterwill execute for each event to determwill execute for each event to determwill execute for each event to determiwill execute for each event to determiwill execute for each event to determinwill execute for each event to determinwill execute for each event to determinewill execute for each event to determinewill execute for each event to determine will execute for each event to determine will execute for each event to determine awill execute for each event to determine awill execute for each event to determine a will execute for each event to determine a will execute for each event to determine a vwill execute for each event to determine a vwill execute for each event to determine a vawill execute for each event to determine a vawill execute for each event to determine a valwill execute for each event to determine a valwill execute for each event to determine a valuwill execute for each event to determine a valuwill execute for each event to determine a valuewill execute for each event to determine a valuewill execute for each event to determine a value will execute for each event to determine a value will execute for each event to determine a value fwill execute for each event to determine a value fwill execute for each event to determine a value fowill execute for each event to determine a value fowill execute for each event to determine a value forwill execute for each event to determine a value forwill execute for each event to determine a value for will execute for each event to determine a value for will execute for each event to determine a value for awill execute for each event to determine a value for awill execute for each event to determine a value for agwill execute for each event to determine a value for agwill execute for each event to determine a value for agewill execute for each event to determine a value for agewill execute for each event to determine a value for agenwill execute for each event to determine a value for agenwill execute for each event to determine a value for agentwill execute for each event to determine a value for agentwill execute for each event to determine a value for agent_will execute for each event to determine a value for agent_will execute for each event to determine a value for agent_swill execute for each event to determine a value for agent_swill execute for each event to determine a value for agent_skwill execute for each event to determine a value for agent_skwill execute for each event to determine a value for agent_skiwill execute for each event to determine a value for agent_skiwill execute for each event to determine a value for agent_skilwill execute for each event to determine a value for agent_skilwill execute for each event to determine a value for agent_skillwill execute for each event to determine a value for agent_skillwill execute for each event to determine a value for agent_skillswill execute for each event to determine a value for agent_skillswill execute for each event to determine a value for agent_skills.will execute for each event to determine a value for agent_skills.
bash: That: command not found
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync onritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync onritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oncritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby code that wwill execute for each event to determine a value for agent_skills.will execute for each event to determine a value for agent_skills.[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that says: map(''[17Pagent_skills') { value_of('skills').split(':') }'agent_skills') { value_of('skills').split(':') }[Aritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/hr_import_pipeline.rb [K [Aritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skills attributte. That was colon separated. Let's say we want to import that but we want to breeak it into a multi-valued field instead. Lets change our pipeline to do that.eak it into a multi-valued field instead. Lets change our pipeline to do that.[A[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # Ok, we've got the basic attributess across and you can see that it's renamed them as specified by the map statementts.[Kts.[A[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # But what about the skills attributte. That was colon separated. Let's say we want to import that but we want to breeak it into a multi-valued field instead. Lets change our pipeline to do that.eak it into a multi-valued field instead. Lets change our pipeline to do that.[A[Aritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/hr_import_pipeline.rb [K
[K[A [Aritchie-youngs-computer:~/x/mayhem ritchiey$ # note the line that says: map(''agent_skills') { value_of('skills').split(':') }'agent_skills') { value_of('skills').split(':') }[Aritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby code that wwill execute for each event to determine a value for agent_skills.will execute for each event to determine a value for agent_skills.[Aritchie-youngs-computer:~/x/mayhem ritchiey$ [23Prubysync onc
[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync on[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync onritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync o[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync [Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyn[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysy[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubys[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ ruby[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rub[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ ru[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ r[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ mritchie-youngs-computer:~/x/mayhem ritchiey$ mritchie-youngs-computer:~/x/mayhem ritchiey$ mvritchie-youngs-computer:~/x/mayhem ritchiey$ mvritchie-youngs-computer:~/x/mayhem ritchiey$ mv ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ritchie-youngs-computer:~/x/mayhem ritchiey$ mv .ritchie-youngs-computer:~/x/mayhem ritchiey$ mv .ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ..ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ..ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../iritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../iritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../inritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../inritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak .ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak .ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ..ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ..ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ../ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ../ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ../iritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ../iritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ../inritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ../inritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ../in/ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ../in/ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ../in/hencchmen.csv.bak chmen.csv.bak chmen.csv.bak[Kchmen.csv.bakchmen.csv.ba[Kchmen.csv.bachmen.csv.b[Kchmen.csv.bchmen.csv.[Kchmen.csv.chmen.csv[Kchmen.csv
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # lritchie-youngs-computer:~/x/mayhem ritchiey$ # lritchie-youngs-computer:~/x/mayhem ritchiey$ # leritchie-youngs-computer:~/x/mayhem ritchiey$ # leritchie-youngs-computer:~/x/mayhem ritchiey$ # letritchie-youngs-computer:~/x/mayhem ritchiey$ # letritchie-youngs-computer:~/x/mayhem ritchiey$ # letsritchie-youngs-computer:~/x/mayhem ritchiey$ # letsritchie-youngs-computer:~/x/mayhem ritchiey$ # lets ritchie-youngs-computer:~/x/mayhem ritchiey$ # lets ritchie-youngs-computer:~/x/mayhem ritchiey$ # lets rritchie-youngs-computer:~/x/mayhem ritchiey$ # lets rritchie-youngs-computer:~/x/mayhem ritchiey$ # lets ruritchie-youngs-computer:~/x/mayhem ritchiey$ # lets ruritchie-youngs-computer:~/x/mayhem ritchiey$ # lets runritchie-youngs-computer:~/x/mayhem ritchiey$ # lets runritchie-youngs-computer:~/x/mayhem ritchiey$ # lets run ritchie-youngs-computer:~/x/mayhem ritchiey$ # lets run ritchie-youngs-computer:~/x/mayhem ritchiey$ # lets run iritchie-youngs-computer:~/x/mayhem ritchiey$ # lets run iritchie-youngs-computer:~/x/mayhem ritchiey$ # lets run itritchie-youngs-computer:~/x/mayhem ritchiey$ # lets run itritchie-youngs-computer:~/x/mayhem ritchiey$ # lets run it ritchie-youngs-computer:~/x/mayhem ritchiey$ # lets run it ritchie-youngs-computer:~/x/mayhem ritchiey$ # lets run it aritchie-youngs-computer:~/x/mayhem ritchiey$ # lets run it aritchie-youngs-computer:~/x/mayhem ritchiey$ # lets run it agritchie-youngs-computer:~/x/mayhem ritchiey$ # lets run it agritchie-youngs-computer:~/x/mayhem ritchiey$ # lets run it agaritchie-youngs-computer:~/x/mayhem ritchiey$ # lets run it agaritchie-youngs-computer:~/x/mayhem ritchiey$ # lets run it agairitchie-youngs-computer:~/x/mayhem ritchiey$ # lets run it agairitchie-youngs-computer:~/x/mayhem ritchiey$ # lets run it againritchie-youngs-computer:~/x/mayhem ritchiey$ # lets run it again
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ r[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ [23P(reverse-i-search)`':(reverse-i-search)`': (reverse-i-search)`': (reverse-i-search)`r': # lets run it again(reverse-i-search)`r': # lets (reverse-i-search)`r': # lets (reverse-i-search)`r[4hu[4l(reverse-i-search)`ru': # lets (reverse-i-search)`ru': # lets (reverse-i-search)`rub': rubysync once hr_import -v 3(reverse-i-search)`rub': (reverse-i-search)`rub': [4hritchie-youngs-compu[4lter:~/x/mayhem ritchiey$ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$
Running HrImportPipeline pipeline once
Running HrImportPipeline 'in' pipeline once
HrImportPipeline(client): Started
HrImportPipeline(client): Scanning /Users/ritchiey/x/in for *.csv files...
HrImportPipeline(client): Processing 'henchmen.csv'
No source_transform(event) method, continuing
Processing incoming modify event (HrImportPipeline(client) => HrImportPipeline(vault)) bobby
Performing in_filter
Performing in_transform
in_transform (HrImportPipeline(client) => HrImportPipeline(vault)) bobby: undefined method `value_of' for #<RubySync::Event:0x21d33bc>
/Users/ritchiey/x/mayhem/pipelines/hr_import_pipeline.rb:26:in `transform'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/event.rb:223:in `call'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/event.rb:223:in `map'
/Users/ritchiey/x/mayhem/pipelines/hr_import_pipeline.rb:26:in `transform'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:118:in `in_transform'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/util/utilities.rb:67:in `send'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/util/utilities.rb:67:in `call_if_exists'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/util/utilities.rb:57:in `with_rescue'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/util/utilities.rb:67:in `call_if_exists'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:227:in `perform_transform'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:303:in `in_handler'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:260:in `run_in_once'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/base_connector.rb:151:in `start'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/csv_file_connector.rb:49:in `each_file_change'
/opt/local/lib/ruby/1.8/csv.rb:312:in `open_reader'
/opt/local/lib/ruby/1.8/csv.rb:532:in `parse'
/opt/local/lib/ruby/1.8/csv.rb:560:in `each'
/opt/local/lib/ruby/1.8/csv.rb:531:in `parse'
/opt/local/lib/ruby/1.8/csv.rb:311:in `open_reader'
/opt/local/lib/ruby/1.8/csv.rb:85:in `open'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/csv_file_connector.rb:33:in `each_file_change'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/file_connector.rb:39:in `each_change'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/file_connector.rb:37:in `glob'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/file_connector.rb:37:in `each_change'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/file_connector.rb:36:in `chdir'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/file_connector.rb:36:in `each_change'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/base_connector.rb:142:in `start'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:260:in `run_in_once'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:240:in `run_once'
/Users/ritchiey/Projects/rubysync/bin/rubysync:109:in `once'
/opt/local/lib/ruby/gems/1.8/gems/simpleconsole-0.1.1/lib/controller.rb:84:in `send'
/opt/local/lib/ruby/gems/1.8/gems/simpleconsole-0.1.1/lib/controller.rb:84:in `execute_action'
/opt/local/lib/ruby/gems/1.8/gems/simpleconsole-0.1.1/lib/application.rb:42:in `run'
/Users/ritchiey/Projects/rubysync/bin/rubysync:335
No target_transform(event) method, continuing
---
No source_transform(event) method, continuing
Processing incoming modify event (HrImportPipeline(client) => HrImportPipeline(vault)) tt
Performing in_filter
Performing in_transform
in_transform (HrImportPipeline(client) => HrImportPipeline(vault)) tt: undefined method `value_of' for #<RubySync::Event:0x2149b08>
/Users/ritchiey/x/mayhem/pipelines/hr_import_pipeline.rb:26:in `transform'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/event.rb:223:in `call'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/event.rb:223:in `map'
/Users/ritchiey/x/mayhem/pipelines/hr_import_pipeline.rb:26:in `transform'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:118:in `in_transform'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/util/utilities.rb:67:in `send'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/util/utilities.rb:67:in `call_if_exists'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/util/utilities.rb:57:in `with_rescue'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/util/utilities.rb:67:in `call_if_exists'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:227:in `perform_transform'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:303:in `in_handler'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:260:in `run_in_once'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/base_connector.rb:151:in `start'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/csv_file_connector.rb:49:in `each_file_change'
/opt/local/lib/ruby/1.8/csv.rb:312:in `open_reader'
/opt/local/lib/ruby/1.8/csv.rb:532:in `parse'
/opt/local/lib/ruby/1.8/csv.rb:560:in `each'
/opt/local/lib/ruby/1.8/csv.rb:531:in `parse'
/opt/local/lib/ruby/1.8/csv.rb:311:in `open_reader'
/opt/local/lib/ruby/1.8/csv.rb:85:in `open'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/csv_file_connector.rb:33:in `each_file_change'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/file_connector.rb:39:in `each_change'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/file_connector.rb:37:in `glob'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/file_connector.rb:37:in `each_change'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/file_connector.rb:36:in `chdir'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/file_connector.rb:36:in `each_change'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/base_connector.rb:142:in `start'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:260:in `run_in_once'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:240:in `run_once'
/Users/ritchiey/Projects/rubysync/bin/rubysync:109:in `once'
/opt/local/lib/ruby/gems/1.8/gems/simpleconsole-0.1.1/lib/controller.rb:84:in `send'
/opt/local/lib/ruby/gems/1.8/gems/simpleconsole-0.1.1/lib/controller.rb:84:in `execute_action'
/opt/local/lib/ruby/gems/1.8/gems/simpleconsole-0.1.1/lib/application.rb:42:in `run'
/Users/ritchiey/Projects/rubysync/bin/rubysync:335
No target_transform(event) method, continuing
---
HrImportPipeline(client): Stopped
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3
Running HrImportPipeline pipeline once
Running HrImportPipeline 'in' pipeline once
HrImportPipeline(client): Started
HrImportPipeline(client): Scanning /Users/ritchiey/x/in for *.csv files...
HrImportPipeline(client): Stopped
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ [23P(reverse-i-search)`':(reverse-i-search)`': (reverse-i-search)`': (reverse-i-search)`m': rubysync once hr_import -v 3(reverse-i-search)`m': rubysync once hr_i(reverse-i-search)`m': rubysync once hr_i(reverse-i-search)`mv': mv ../in/henchmen.csv.bak ../in/henchmen.csv(reverse-i-search)`mv': (reverse-i-search)`mv': ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ../in/hencchmen.csv[Aritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ../in/hencchmen.csvchmen.csv[Aritchie-youngs-computer:~/x/mayhem ritchiey$ [7Prubysync once hr_import -v 3
[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3
Running HrImportPipeline pipeline once
Running HrImportPipeline 'in' pipeline once
HrImportPipeline(client): Started
HrImportPipeline(client): Scanning /Users/ritchiey/x/in for *.csv files...
HrImportPipeline(client): Processing 'henchmen.csv'
No source_transform(event) method, continuing
Processing incoming modify event (HrImportPipeline(client) => HrImportPipeline(vault)) bobby
Performing in_filter
Performing in_transform
No target_transform(event) method, continuing
---
No source_transform(event) method, continuing
Processing incoming modify event (HrImportPipeline(client) => HrImportPipeline(vault)) tt
Performing in_filter
Performing in_transform
No target_transform(event) method, continuing
---
HrImportPipeline(client): Stopped
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ [23P(reverse-i-search)`':(reverse-i-search)`': (reverse-i-search)`': (reverse-i-search)`t': rubysync once hr_import -v 3(reverse-i-search)`t': rubysync once hr_impor(reverse-i-search)`t': rubysync once hr_impor(reverse-i-search)`ti': # But what about the skills attribute. That was colon sepparated. Let's say we want to import that but we want to break it into a multi-vaalued field instead. Lets change our pipeline to do that.[Aparated. Let's say we want to import that but we want to break it into a mulparated. Let's say we want to import that but we want to break it into a mul[A(reverse-i-search)`ti[26Pd': tidy -i -xml ../databank.xml
[K
[K[A[A(reverse-i-search)`tid': (reverse-i-search)`tid': (reverse-i-search)`tid[4hy[4l(reverse-i-search)`tidy': (reverse-i-search)`tidy': [4hritchie-youngs-comp[4luter:~/x/mayhem ritchiey$ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$
No warnings or errors were found.
<entries>
<entry id='bobby'>
<attr name='cn'>
<value>bobby</value>
</attr>
<attr name='givenName'>
<value>BareKnuckle</value>
</attr>
<attr name='sn'>
<value>Bobby</value>
</attr>
<attr name='skills'>
<value>pugilism:yoga</value>
</attr>
<attr name='agent_skills'>
<value>pugilism</value>
<value>yoga</value>
</attr>
</entry>
<entry id='tt'>
<attr name='cn'>
<value>tt</value>
</attr>
<attr name='givenName'>
<value>Testy</value>
</attr>
<attr name='sn'>
<value>Terry</value>
</attr>
<attr name='skills'>
<value>kidnapping:interrogation:juggling</value>
</attr>
<attr name='agent_skills'>
<value>kidnapping</value>
<value>interrogation</value>
<value>juggling</value>
</attr>
</entry>
</entries>
To learn more about HTML Tidy see http://tidy.sourceforge.net
Please send bug reports to [email protected]
HTML and CSS specifications are available from http://www.w3.org/
Lobby your company to join W3C, see http://www.w3.org/Consortium
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ../databank.xml ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ../databank.xml ritchie-youngs-computer:~/x/mayhem ritchiey$ [1Prubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ../in/hencchmen.csvchmen.csv[Aritchie-youngs-computer:~/x/mayhem ritchiey$ [7Prubysync once hr_import -v 3
[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ [9P# lets run it againritchie-youngs-computer:~/x/mayhem ritchiey$ # lets run it againritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ../in/hencchmen.csvchmen.csv[Aritchie-youngs-computer:~/x/mayhem ritchiey$ That specifies some Ruby code that wwill execute for each event to determine a value for agent_skills.will execute for each event to determine a value for agent_skills.[Aritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ../in/hencchmen.csv[Kchmen.csv[Aritchie-youngs-computer:~/x/mayhem ritchiey$ [16P# lets run it again
[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # lets run it againritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ../in/hencchmen.csvchmen.csv[Aritchie-youngs-computer:~/x/mayhem ritchiey$ [7Prubysync once hr_import -v 3
[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ../databank.xml ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ../databank.xml ritchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ pritchie-youngs-computer:~/x/mayhem ritchiey$ pritchie-youngs-computer:~/x/mayhem ritchiey$ pwritchie-youngs-computer:~/x/mayhem ritchiey$ pwritchie-youngs-computer:~/x/mayhem ritchiey$ pwdritchie-youngs-computer:~/x/mayhem ritchiey$ pwdritchie-youngs-computer:~/x/mayhem ritchiey$ pw[Kritchie-youngs-computer:~/x/mayhem ritchiey$ pwritchie-youngs-computer:~/x/mayhem ritchiey$ p[Kritchie-youngs-computer:~/x/mayhem ritchiey$ pritchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ vritchie-youngs-computer:~/x/mayhem ritchiey$ vritchie-youngs-computer:~/x/mayhem ritchiey$ viritchie-youngs-computer:~/x/mayhem ritchiey$ viritchie-youngs-computer:~/x/mayhem ritchiey$ vi ritchie-youngs-computer:~/x/mayhem ritchiey$ vi ritchie-youngs-computer:~/x/mayhem ritchiey$ vi[Kritchie-youngs-computer:~/x/mayhem ritchiey$ viritchie-youngs-computer:~/x/mayhem ritchiey$ v[Kritchie-youngs-computer:~/x/mayhem ritchiey$ vritchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ../databank.xml ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ../databank.xml ritchie-youngs-computer:~/x/mayhem ritchiey$ [1Prubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v [Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -vritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import [Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_importritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ../databank.xml ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ../databank.xml ritchie-youngs-computer:~/x/mayhem ritchiey$ [6Prubysync once hr_importritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_importritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -vritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -vritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3
Running HrImportPipeline pipeline once
Running HrImportPipeline 'in' pipeline once
HrImportPipeline(client): Started
HrImportPipeline(client): Scanning /Users/ritchiey/x/in for *.csv files...
HrImportPipeline(client): Stopped
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ../databank.xml ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ../databank.xml ritchie-youngs-computer:~/x/mayhem ritchiey$ [1Prubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ../in/hencchmen.csvchmen.csv
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ../in/hencchmen.csvchmen.csv[Aritchie-youngs-computer:~/x/mayhem ritchiey$ [7Prubysync once hr_import -v 3
[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ../in/hencchmen.csvchmen.csv[Aritchie-youngs-computer:~/x/mayhem ritchiey$ [K
[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat pritchie-youngs-computer:~/x/mayhem ritchiey$ cat pritchie-youngs-computer:~/x/mayhem ritchiey$ cat piritchie-youngs-computer:~/x/mayhem ritchiey$ cat piritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/ritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/ritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/hr_import_pipeline.rb
class HrImportPipeline < RubySync::Pipelines::BasePipeline
client :hr
vault :databank
# Remove any fields that you don't want to set in the client from the vault
#allow_out 'allow', 'these', 'fields', 'through'
# Remove any fields that you don't want to set in the vault from the client
allow_in 'id', 'first_name', 'last_name', 'skills'
# If the client and vault have different names for the same field, define the
# the mapping here. For example, if the vault has a field called "first name" and
# the client has a field called givenName you may put:
# map 'first name', 'givenName'
#
# You can also calculate the values for fields. For more info, see
# http://rubysync.org/docs/rubysync-transformations/
# "in" means going from client to vault
in_transform do
map 'cn', 'id'
map 'givenName', 'first_name'
map 'sn', 'last_name'
map('agent_skills') { value_of('skills').split(':') }
drop_changes_to 'skills'
end
# "out" means going from vault to client
out_transform do
#map 'id', 'vault_field'
#map 'first_name', 'vault_field'
#map 'last_name', 'vault_field'
#map 'skills', 'vault_field'
end
end
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # nritchie-youngs-computer:~/x/mayhem ritchiey$ # nritchie-youngs-computer:~/x/mayhem ritchiey$ # noritchie-youngs-computer:~/x/mayhem ritchiey$ # noritchie-youngs-computer:~/x/mayhem ritchiey$ # notritchie-youngs-computer:~/x/mayhem ritchiey$ # notritchie-youngs-computer:~/x/mayhem ritchiey$ # notiritchie-youngs-computer:~/x/mayhem ritchiey$ # notiritchie-youngs-computer:~/x/mayhem ritchiey$ # noticritchie-youngs-computer:~/x/mayhem ritchiey$ # noticritchie-youngs-computer:~/x/mayhem ritchiey$ # noticeritchie-youngs-computer:~/x/mayhem ritchiey$ # noticeritchie-youngs-computer:~/x/mayhem ritchiey$ # notice ritchie-youngs-computer:~/x/mayhem ritchiey$ # notice ritchie-youngs-computer:~/x/mayhem ritchiey$ # notice tritchie-youngs-computer:~/x/mayhem ritchiey$ # notice tritchie-youngs-computer:~/x/mayhem ritchiey$ # notice thritchie-youngs-computer:~/x/mayhem ritchiey$ # notice thritchie-youngs-computer:~/x/mayhem ritchiey$ # notice tharitchie-youngs-computer:~/x/mayhem ritchiey$ # notice tharitchie-youngs-computer:~/x/mayhem ritchiey$ # notice thatritchie-youngs-computer:~/x/mayhem ritchiey$ # notice thatritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that ritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that ritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that writchie-youngs-computer:~/x/mayhem ritchiey$ # notice that writchie-youngs-computer:~/x/mayhem ritchiey$ # notice that weritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that weritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we'ritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we'ritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we'vritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we'vritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we'veritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we'veritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've ritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've ritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've aritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've aritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've adritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've adritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've addritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've addritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've adderitchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've adderitchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've addedritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've addedritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added ritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added ritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added dritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added dritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added drritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added drritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added droritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added droritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added dropritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added dropritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added drop_ritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added drop_ritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added drop_critchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added drop_critchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added drop_chritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added drop_chritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added drop_charitchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added drop_charitchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added drop_chag ee[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added drop_cha[K
[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added drop_charitchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added drop_chan gggegegesgesges_ges_ges_tges_tges_toges_toges_to ges_to ges_to 'ges_to 'ges_to 'sges_to 'sges_to 'skges_to 'skges_to 'skiges_to 'skiges_to 'skilges_to 'skilges_to 'skillges_to 'skillges_to 'skillsges_to 'skillsges_to 'skills'ges_to 'skills'
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ # notice that we've added drop_changges_to 'skills'ges_to 'skills'[Aritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/hr_import_pipeline.rb [K [Aritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ../in/hencchmen.csvchmen.csv[Aritchie-youngs-computer:~/x/mayhem ritchiey$ [7Prubysync once hr_import -v 3
[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3
Running HrImportPipeline pipeline once
Running HrImportPipeline 'in' pipeline once
HrImportPipeline(client): Started
HrImportPipeline(client): Scanning /Users/ritchiey/x/in for *.csv files...
HrImportPipeline(client): Processing 'henchmen.csv'
No source_transform(event) method, continuing
Processing incoming modify event (HrImportPipeline(client) => HrImportPipeline(vault)) bobby
Performing in_filter
Performing in_transform
No target_transform(event) method, continuing
---
No source_transform(event) method, continuing
Processing incoming modify event (HrImportPipeline(client) => HrImportPipeline(vault)) tt
Performing in_filter
Performing in_transform
No target_transform(event) method, continuing
---
HrImportPipeline(client): Stopped
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat[Kritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ ca[Kritchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ c[Kritchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ [23P(reverse-i-search)`':(reverse-i-search)`': (reverse-i-search)`': (reverse-i-search)`t': rubysync once hr_import -v 3(reverse-i-search)`t': rubysync once hr_impor(reverse-i-search)`t': rubysync once hr_impor(reverse-i-search)`ti': # notice that we've added drop_changes_to 'skills'(reverse-i-search)`ti': # no(reverse-i-search)`ti': # no(reverse-i-search)`ti[20Pd': tidy -i -xml ../databank.xml (reverse-i-search)`tid': (reverse-i-search)`tid': [4hritchie-youngs-compu[4lter:~/x/mayhem ritchiey$ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ../databank.xml ritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ../databank.xml
No warnings or errors were found.
<entries>
<entry id='bobby'>
<attr name='cn'>
<value>bobby</value>
</attr>
<attr name='givenName'>
<value>BareKnuckle</value>
</attr>
<attr name='sn'>
<value>Bobby</value>
</attr>
<attr name='skills'>
<value>pugilism:yoga</value>
</attr>
<attr name='agent_skills'>
<value>pugilism</value>
<value>yoga</value>
</attr>
</entry>
<entry id='tt'>
<attr name='cn'>
<value>tt</value>
</attr>
<attr name='givenName'>
<value>Testy</value>
</attr>
<attr name='sn'>
<value>Terry</value>
</attr>
<attr name='skills'>
<value>kidnapping:interrogation:juggling</value>
</attr>
<attr name='agent_skills'>
<value>kidnapping</value>
<value>interrogation</value>
<value>juggling</value>
</attr>
</entry>
</entries>
To learn more about HTML Tidy see http://tidy.sourceforge.net
Please send bug reports to [email protected]
HTML and CSS specifications are available from http://www.w3.org/
Lobby your company to join W3C, see http://www.w3.org/Consortium
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Hritchie-youngs-computer:~/x/mayhem ritchiey$ # Hritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmmritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmmritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm ritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm ritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm writchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm writchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm wiritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm wiritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm wieritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm wieritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm wi[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm wiritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm w[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm writchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm weritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm weritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we ritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we ritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we sritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we sritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we stritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we stritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we stiritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we stiritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we stilritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we stilritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we stillritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we stillritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still ritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still ritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still hritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still hritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still haritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still haritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still havritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still havritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still haveritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still haveritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have ritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have ritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have tritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have tritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have thritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have thritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have theritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have theritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the ritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the ritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the sritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the sritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the skritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the skritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the skiritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the skiritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the skilritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the skilritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the skillritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the skillritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the skillsritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the skillsritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the skills ritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the skills ritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the skills lritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the skills lritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the skills liritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the skills liritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the skills lin eee e e ie ie ine ine in e in e in te in te in the in the in thee in thee in there in there in theree in theree in there.e in there.e in there. e in there. e in there. Le in there. Le in there. Lee in there. Lee in there. Lete in there. Lete in there. Let'e in there. Let'e in there. Let'se in there. Let'se in there. Let's e in there. Let's e in there. Let's te in there. Let's te in there. Let's tre in there. Let's tre in there. Let's trye in there. Let's trye in there. Let's try e in there. Let's try e in there. Let's try ae in there. Let's try ae in there. Let's try ade in there. Let's try ade in there. Let's try adde in there. Let's try adde in there. Let's try addie in there. Let's try addie in there. Let's try addine in there. Let's try addine in there. Let's try addinge in there. Let's try addinge in there. Let's try adding e in there. Let's try adding e in there. Let's try adding ae in there. Let's try adding ae in there. Let's try adding a e in there. Let's try adding a e in there. Let's try adding a ne in there. Let's try adding a ne in there. Let's try adding a nee in there. Let's try adding a nee in there. Let's try adding a newe in there. Let's try adding a newe in there. Let's try adding a new e in there. Let's try adding a new e in there. Let's try adding a new re in there. Let's try adding a new re in there. Let's try adding a new rde in there. Let's try adding a new rde in there. Let's try adding a new r[Ke in there. Let's try adding a new re in there. Let's try adding a new ree in there. Let's try adding a new ree in there. Let's try adding a new rece in there. Let's try adding a new rece in there. Let's try adding a new recoe in there. Let's try adding a new recoe in there. Let's try adding a new recore in there. Let's try adding a new recore in there. Let's try adding a new recorde in there. Let's try adding a new recorde in there. Let's try adding a new record.e in there. Let's try adding a new record.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ cdritchie-youngs-computer:~/x/mayhem ritchiey$ cdritchie-youngs-computer:~/x/mayhem ritchiey$ c[Kritchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ cpritchie-youngs-computer:~/x/mayhem ritchiey$ cpritchie-youngs-computer:~/x/mayhem ritchiey$ cp ritchie-youngs-computer:~/x/mayhem ritchiey$ cp ritchie-youngs-computer:~/x/mayhem ritchiey$ cp .ritchie-youngs-computer:~/x/mayhem ritchiey$ cp .ritchie-youngs-computer:~/x/mayhem ritchiey$ cp ..ritchie-youngs-computer:~/x/mayhem ritchiey$ cp ..ritchie-youngs-computer:~/x/mayhem ritchiey$ cp ../ritchie-youngs-computer:~/x/mayhem ritchiey$ cp ../ritchie-youngs-computer:~/x/mayhem ritchiey$ cp ..[Kritchie-youngs-computer:~/x/mayhem ritchiey$ cp ..ritchie-youngs-computer:~/x/mayhem ritchiey$ cp .[Kritchie-youngs-computer:~/x/mayhem ritchiey$ cp .ritchie-youngs-computer:~/x/mayhem ritchiey$ cp [Kritchie-youngs-computer:~/x/mayhem ritchiey$ cp ritchie-youngs-computer:~/x/mayhem ritchiey$ cp[Kritchie-youngs-computer:~/x/mayhem ritchiey$ cpritchie-youngs-computer:~/x/mayhem ritchiey$ c[Kritchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ mritchie-youngs-computer:~/x/mayhem ritchiey$ mritchie-youngs-computer:~/x/mayhem ritchiey$ mvritchie-youngs-computer:~/x/mayhem ritchiey$ mvritchie-youngs-computer:~/x/mayhem ritchiey$ mv ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ritchie-youngs-computer:~/x/mayhem ritchiey$ mv .ritchie-youngs-computer:~/x/mayhem ritchiey$ mv .ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ./ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ./ritchie-youngs-computer:~/x/mayhem ritchiey$ mv .[Kritchie-youngs-computer:~/x/mayhem ritchiey$ mv .ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ..ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ..ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../mritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../mritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../moritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../moritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../morritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../morritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../moreritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../moreritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../more.ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../more.ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../more.critchie-youngs-computer:~/x/mayhem ritchiey$ mv ../more.critchie-youngs-computer:~/x/mayhem ritchiey$ mv ../more.csritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../more.csritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../more.csv ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../more.csv ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../more.csv .ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../more.csv .ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../more.csv ..ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../more.csv ..ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../more.csv ../ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../more.csv ../ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../more.csv ../iritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../more.csv ../iritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../more.csv ../in/ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../more.csv ../in/
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../more.csv ../in/ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../more.csv ../in/ritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the skills linee in there. Let's try adding a new record.e in there. Let's try adding a new record.[Aritchie-youngs-computer:~/x/mayhem ritchiey$ [6Ptidy -i -xml ../databank.xml
[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ../databank.xml ritchie-youngs-computer:~/x/mayhem ritchiey$ [1Prubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3
Running HrImportPipeline pipeline once
Running HrImportPipeline 'in' pipeline once
HrImportPipeline(client): Started
HrImportPipeline(client): Scanning /Users/ritchiey/x/in for *.csv files...
HrImportPipeline(client): Processing 'more.csv'
No source_transform(event) method, continuing
Processing incoming modify event (HrImportPipeline(client) => HrImportPipeline(vault)) frenchy
Performing in_filter
Performing in_transform
No associated entry in vault for modify event. Converting to add
Converting 'modify' event to add
Default match rule - source path exists in vault
Create allowed through default rule
Performing in_place
Setting target_path to source_path
Create on vault allowed. Placing at frenchy
Adding 'frenchy' to 'HrImportPipeline(vault)'
No target_transform(event) method, continuing
Add succeeded
---
HrImportPipeline(client): Stopped
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ [7Pmv ../more.csv ../in/ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../more.csv ../in/ritchie-youngs-computer:~/x/mayhem ritchiey$ # Hmmm we still have the skills linee in there. Let's try adding a new record.e in there. Let's try adding a new record.[Aritchie-youngs-computer:~/x/mayhem ritchiey$ [6Ptidy -i -xml ../databank.xml
[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ tidy -i -xml ../databank.xml
No warnings or errors were found.
<entries>
<entry id='bobby'>
<attr name='cn'>
<value>bobby</value>
</attr>
<attr name='givenName'>
<value>BareKnuckle</value>
</attr>
<attr name='sn'>
<value>Bobby</value>
</attr>
<attr name='skills'>
<value>pugilism:yoga</value>
</attr>
<attr name='agent_skills'>
<value>pugilism</value>
<value>yoga</value>
</attr>
</entry>
<entry id='tt'>
<attr name='cn'>
<value>tt</value>
</attr>
<attr name='givenName'>
<value>Testy</value>
</attr>
<attr name='sn'>
<value>Terry</value>
</attr>
<attr name='skills'>
<value>kidnapping:interrogation:juggling</value>
</attr>
<attr name='agent_skills'>
<value>kidnapping</value>
<value>interrogation</value>
<value>juggling</value>
</attr>
</entry>
<entry id='frenchy'>
<attr name='cn'>
<value>frenchy</value>
</attr>
<attr name='givenName'>
<value>Freddy</value>
</attr>
<attr name='sn'>
<value>French</value>
</attr>
<attr name='agent_skills'>
<value>kung fu</value>
<value>assassinations</value>
<value>flower arranging</value>
</attr>
</entry>
</entries>
To learn more about HTML Tidy see http://tidy.sourceforge.net
Please send bug reports to [email protected]
HTML and CSS specifications are available from http://www.w3.org/
Lobby your company to join W3C, see http://www.w3.org/Consortium
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Lritchie-youngs-computer:~/x/mayhem ritchiey$ # Lritchie-youngs-computer:~/x/mayhem ritchiey$ # Loritchie-youngs-computer:~/x/mayhem ritchiey$ # Loritchie-youngs-computer:~/x/mayhem ritchiey$ # Looritchie-youngs-computer:~/x/mayhem ritchiey$ # Looritchie-youngs-computer:~/x/mayhem ritchiey$ # Lookritchie-youngs-computer:~/x/mayhem ritchiey$ # Lookritchie-youngs-computer:~/x/mayhem ritchiey$ # Looksritchie-youngs-computer:~/x/mayhem ritchiey$ # Looksritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks ritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks ritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks lritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks lritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks liritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks liritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks likritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks likritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks likeritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks likeritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like ritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like ritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like tritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like tritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like thritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like thritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like theritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like theritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the ritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the ritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the nritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the nritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the neritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the neritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the newritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the newritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new ritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new ritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new gritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new gritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guyritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guyritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy ritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy ritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guyritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy,ritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy,ritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, ritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, ritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, hritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, hritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, haritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, haritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, hasritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, hasritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has ritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has ritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has sritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has sritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has skritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has skritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has skiritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has skiritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has skilritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has skilritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has skill sss s s ms ms mys mys m[Ks ms [Ks s[Ks[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has skil[K
[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has skilritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has ski[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has skiritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has sk[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has skritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has s[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has sritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has ritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has tritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has tritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has thritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has thritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has theritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has theritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has the ritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has the ritchie-youngs-computer:~/x/mayhem ritchiey$ # Looks like the new guy, has the a gggegegengengentgentgent_gent_gent_sgent_sgent_skgent_skgent_skigent_skigent_skilgent_skilgent_skillgent_skillgent_skillsgent_skillsgent_skills gent_skills gent_skills bgent_skills bgent_skills bugent_skills bugent_skills butgent_skills butgent_skills but gent_skills but gent_skills but tgent_skills but tgent_skills but tngent_skills but tngent_skills but tnogent_skills but tnogent_skills but tn[Kgent_skills but tngent_skills but t[Kgent_skills but tgent_skills but [Kgent_skills but gent_skills but ngent_skills but ngent_skills but nogent_skills but nogent_skills but notgent_skills but notgent_skills but not gent_skills but not gent_skills but not tgent_skills but not tgent_skills but not thgent_skills but not thgent_skills but not thegent_skills but not thegent_skills but not the gent_skills but not the gent_skills but not the sgent_skills but not the sgent_skills but not the skgent_skills but not the skgent_skills but not the skigent_skills but not the skigent_skills but not the skilgent_skills but not the skilgent_skills but not the skillgent_skills but not the skillgent_skills but not the skillsgent_skills but not the skillsgent_skills but not the skills gent_skills but not the skills gent_skills but not the skills agent_skills but not the skills agent_skills but not the skills atgent_skills but not the skills atgent_skills but not the skills attgent_skills but not the skills attgent_skills but not the skills attrgent_skills but not the skills attrgent_skills but not the skills attrigent_skills but not the skills attrigent_skills but not the skills attribgent_skills but not the skills attribgent_skills but not the skills attribugent_skills but not the skills attribugent_skills but not the skills attributgent_skills but not the skills attributgent_skills but not the skills attributegent_skills but not the skills attributegent_skills but not the skills attribute.gent_skills but not the skills attribute.gent_skills but not the skills attribute. gent_skills but not the skills attribute. gent_skills but not the skills attribute.[Kgent_skills but not the skills attribute.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Tritchie-youngs-computer:~/x/mayhem ritchiey$ # Tritchie-youngs-computer:~/x/mayhem ritchiey$ # Teritchie-youngs-computer:~/x/mayhem ritchiey$ # Teritchie-youngs-computer:~/x/mayhem ritchiey$ # T[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Tritchie-youngs-computer:~/x/mayhem ritchiey$ # Thritchie-youngs-computer:~/x/mayhem ritchiey$ # Thritchie-youngs-computer:~/x/mayhem ritchiey$ # Theritchie-youngs-computer:~/x/mayhem ritchiey$ # Theritchie-youngs-computer:~/x/mayhem ritchiey$ # The ritchie-youngs-computer:~/x/mayhem ritchiey$ # The ritchie-youngs-computer:~/x/mayhem ritchiey$ # The rritchie-youngs-computer:~/x/mayhem ritchiey$ # The rritchie-youngs-computer:~/x/mayhem ritchiey$ # The reritchie-youngs-computer:~/x/mayhem ritchiey$ # The reritchie-youngs-computer:~/x/mayhem ritchiey$ # The rearitchie-youngs-computer:~/x/mayhem ritchiey$ # The rearitchie-youngs-computer:~/x/mayhem ritchiey$ # The reasritchie-youngs-computer:~/x/mayhem ritchiey$ # The reasritchie-youngs-computer:~/x/mayhem ritchiey$ # The reasoritchie-youngs-computer:~/x/mayhem ritchiey$ # The reasoritchie-youngs-computer:~/x/mayhem ritchiey$ # The reasonritchie-youngs-computer:~/x/mayhem ritchiey$ # The reasonritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason fritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason fritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason foritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason foritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason forritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason forritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for tritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for tritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for thritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for thritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for thiritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for thiritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for thisritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for thisritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this iritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this iritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this isritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this isritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is tritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is tritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is thritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is thritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is tharitchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is tharitchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is thatritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is thatritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is thatnritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is thatnritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is that[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is thatritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is that ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is that ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is that[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is thatritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is that ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is that ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is that tritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is that tritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is that thritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is that thritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is that theritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is that theritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is that the ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is that the ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason for this is that the t rrrararanranransransransfransfransforansforansforransforransformransformransformaransformaransformatransformatransformatiransformatiransformatioransformatioransformationransformationransformation ransformation ransformation iransformation iransformation isransformation isransformation is ransformation is ransformation is oransformation is oransformation is onransformation is onransformation is on ransformation is on ransformation is on transformation is on transformation is on thransformation is on thransformation is on theransformation is on theransformation is on the ransformation is on the ransformation is on the oransformation is on the oransformation is on the opransformation is on the opransformation is on the operansformation is on the operansformation is on the operransformation is on the operransformation is on the operaransformation is on the operaransformation is on the operatransformation is on the operatransformation is on the operatiransformation is on the operatiransformation is on the operatioransformation is on the operatioransformation is on the operationransformation is on the operationransformation is on the operationsransformation is on the operationsransformation is on the operations ransformation is on the operations ransformation is on the operations transformation is on the operations transformation is on the operations toransformation is on the operations toransformation is on the operations to ransformation is on the operations to ransformation is on the operations to transformation is on the operations to transformation is on the operations to thransformation is on the operations to thransformation is on the operations to theransformation is on the operations to theransformation is on the operations to the ransformation is on the operations to the ransformation is on the operations to the rransformation is on the operations to the rransformation is on the operations to the reransformation is on the operations to the reransformation is on the operations to the recransformation is on the operations to the recransformation is on the operations to the recoransformation is on the operations to the recoransformation is on the operations to the recorransformation is on the operations to the recorransformation is on the operations to the recordransformation is on the operations to the recordransformation is on the operations to the record ransformation is on the operations to the record ransformation is on the operations to the record rransformation is on the operations to the record rransformation is on the operations to the record raransformation is on the operations to the record raransformation is on the operations to the record ratransformation is on the operations to the record ratransformation is on the operations to the record rathransformation is on the operations to the record rathransformation is on the operations to the record ratheransformation is on the operations to the record ratheransformation is on the operations to the record ratherransformation is on the operations to the record ratherransformation is on the operations to the record rather ransformation is on the operations to the record rather ransformation is on the operations to the record rather transformation is on the operations to the record rather transformation is on the operations to the record rather thransformation is on the operations to the record rather thransformation is on the operations to the record rather tharansformation is on the operations to the record rather tharansformation is on the operations to the record rather thatransformation is on the operations to the record rather thatransformation is on the operations to the record rather tha[Kransformation is on the operations to the record rather tharansformation is on the operations to the record rather th[Kransformation is on the operations to the record rather thransformation is on the operations to the record rather t[Kransformation is on the operations to the record rather transformation is on the operations to the record rather [Kransformation is on the operations to the record rather ransformation is on the operations to the record rather[Kransformation is on the operations to the record ratherransformation is on the operations to the record rathe[Kransformation is on the operations to the record ratheransformation is on the operations to the record rath[Kransformation is on the operations to the record rathransformation is on the operations to the record rat[Kransformation is on the operations to the record ratransformation is on the operations to the record ra[Kransformation is on the operations to the record raransformation is on the operations to the record r[Kransformation is on the operations to the record rransformation is on the operations to the record [Kransformation is on the operations to the record ransformation is on the operations to the record[Kransformation is on the operations to the recordransformation is on the operations to the recor[Kransformation is on the operations to the recorransformation is on the operations to the reco[Kransformation is on the operations to the recoransformation is on the operations to the rec[Kransformation is on the operations to the recransformation is on the operations to the re[Kransformation is on the operations to the reransformation is on the operations to the r[Kransformation is on the operations to the rransformation is on the operations to the [Kransformation is on the operations to the ransformation is on the operations to the[Kransformation is on the operations to theransformation is on the operations to th[Kransformation is on the operations to thransformation is on the operations to t[Kransformation is on the operations to transformation is on the operations to [Kransformation is on the operations to ransformation is on the operations to[Kransformation is on the operations toransformation is on the operations t[Kransformation is on the operations transformation is on the operations [Kransformation is on the operations ransformation is on the operations[Kransformation is on the operationsransformation is on the operation[Kransformation is on the operationransformation is on the operatio[Kransformation is on the operatioransformation is on the operati[Kransformation is on the operatiransformation is on the operat[Kransformation is on the operatransformation is on the opera[Kransformation is on the operaransformation is on the oper[Kransformation is on the operransformation is on the ope[Kransformation is on the operansformation is on the op[Kransformation is on the opransformation is on the o[Kransformation is on the oransformation is on the [Kransformation is on the ransformation is on the lransformation is on the lransformation is on the liransformation is on the liransformation is on the lisransformation is on the lisransformation is on the listransformation is on the listransformation is on the list ransformation is on the list ransformation is on the list oransformation is on the list oransformation is on the list ofransformation is on the list ofransformation is on the list of ransformation is on the list of ransformation is on the list of cransformation is on the list of cransformation is on the list of chransformation is on the list of chransformation is on the list of charansformation is on the list of charansformation is on the list of chanransformation is on the list of chanransformation is on the list of changransformation is on the list of changransformation is on the list of changeransformation is on the list of changeransformation is on the list of changesransformation is on the list of changesransformation is on the list of changes ransformation is on the list of changes ransformation is on the list of changes transformation is on the list of changes transformation is on the list of changes toransformation is on the list of changes toransformation is on the list of changes to ransformation is on the list of changes to ransformation is on the list of changes to transformation is on the list of changes to transformation is on the list of changes to teransformation is on the list of changes to teransformation is on the list of changes to te ransformation is on the list of changes to te ransformation is on the list of changes to te[Kransformation is on the list of changes to teransformation is on the list of changes to t[Kransformation is on the list of changes to transformation is on the list of changes to thransformation is on the list of changes to thransformation is on the list of changes to theransformation is on the list of changes to theransformation is on the list of changes to the ransformation is on the list of changes to the ransformation is on the list of changes to the rransformation is on the list of changes to the rransformation is on the list of changes to the reransformation is on the list of changes to the reransformation is on the list of changes to the recransformation is on the list of changes to the recransformation is on the list of changes to the recoransformation is on the list of changes to the recoransformation is on the list of changes to the recorransformation is on the list of changes to the recorransformation is on the list of changes to the recordransformation is on the list of changes to the recordransformation is on the list of changes to the record ransformation is on the list of changes to the record ransformation is on the list of changes to the record rransformation is on the list of changes to the record rransformation is on the list of changes to the record raransformation is on the list of changes to the record raransformation is on the list of changes to the record ratransformation is on the list of changes to the record ratransformation is on the list of changes to the record rathransformation is on the list of changes to the record rathransformation is on the list of changes to the record ratheransformation is on the list of changes to the record ratheransformation is on the list of changes to the record ratherransformation is on the list of changes to the record ratherransformation is on the list of changes to the record rather ransformation is on the list of changes to the record rather ransformation is on the list of changes to the record rather transformation is on the list of changes to the record rather transformation is on the list of changes to the record rather taransformation is on the list of changes to the record rather taransformation is on the list of changes to the record rather t[Kransformation is on the list of changes to the record rather transformation is on the list of changes to the record rather thransformation is on the list of changes to the record rather thransformation is on the list of changes to the record rather tharansformation is on the list of changes to the record rather tharansformation is on the list of changes to the record rather thanransformation is on the list of changes to the record rather thanransformation is on the list of changes to the record rather than ransformation is on the list of changes to the record rather than ransformation is on the list of changes to the record rather than transformation is on the list of changes to the record rather than transformation is on the list of changes to the record rather than thransformation is on the list of changes to the record rather than thransformation is on the list of changes to the record rather than theransformation is on the list of changes to the record rather than theransformation is on the list of changes to the record rather than the ransformation is on the list of changes to the record rather than the ransformation is on the list of changes to the record rather than the rransformation is on the list of changes to the record rather than the rransformation is on the list of changes to the record rather than the reransformation is on the list of changes to the record rather than the reransformation is on the list of changes to the record rather than the recransformation is on the list of changes to the record rather than the recransformation is on the list of changes to the record rather than the recoransformation is on the list of changes to the record rather than the recoransformation is on the list of changes to the record rather than the recorransformation is on the list of changes to the record rather than the recorransformation is on the list of changes to the record rather than the recordransformation is on the list of changes to the record rather than the recordransformation is on the list of changes to the record rather than the record ransformation is on the list of changes to the record rather than the record ransformation is on the list of changes to the record rather than the record iransformation is on the list of changes to the record rather than the record iransformation is on the list of changes to the record rather than the record itransformation is on the list of changes to the record rather than the record itransformation is on the list of changes to the record rather than the record its eeelelelfelfelf.elf.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Tritchie-youngs-computer:~/x/mayhem ritchiey$ # Tritchie-youngs-computer:~/x/mayhem ritchiey$ # Thritchie-youngs-computer:~/x/mayhem ritchiey$ # Thritchie-youngs-computer:~/x/mayhem ritchiey$ # Thiritchie-youngs-computer:~/x/mayhem ritchiey$ # Thiritchie-youngs-computer:~/x/mayhem ritchiey$ # Thisritchie-youngs-computer:~/x/mayhem ritchiey$ # Thisritchie-youngs-computer:~/x/mayhem ritchiey$ # This ritchie-youngs-computer:~/x/mayhem ritchiey$ # This ritchie-youngs-computer:~/x/mayhem ritchiey$ # This iritchie-youngs-computer:~/x/mayhem ritchiey$ # This iritchie-youngs-computer:~/x/mayhem ritchiey$ # This isritchie-youngs-computer:~/x/mayhem ritchiey$ # This isritchie-youngs-computer:~/x/mayhem ritchiey$ # This is ritchie-youngs-computer:~/x/mayhem ritchiey$ # This is ritchie-youngs-computer:~/x/mayhem ritchiey$ # This is britchie-youngs-computer:~/x/mayhem ritchiey$ # This is britchie-youngs-computer:~/x/mayhem ritchiey$ # This is beritchie-youngs-computer:~/x/mayhem ritchiey$ # This is beritchie-youngs-computer:~/x/mayhem ritchiey$ # This is becritchie-youngs-computer:~/x/mayhem ritchiey$ # This is becritchie-youngs-computer:~/x/mayhem ritchiey$ # This is becaritchie-youngs-computer:~/x/mayhem ritchiey$ # This is becaritchie-youngs-computer:~/x/mayhem ritchiey$ # This is becauritchie-youngs-computer:~/x/mayhem ritchiey$ # This is becauritchie-youngs-computer:~/x/mayhem ritchiey$ # This is becausritchie-youngs-computer:~/x/mayhem ritchiey$ # This is becausritchie-youngs-computer:~/x/mayhem ritchiey$ # This is becauseritchie-youngs-computer:~/x/mayhem ritchiey$ # This is becauseritchie-youngs-computer:~/x/mayhem ritchiey$ # This is becaus[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # This is becausritchie-youngs-computer:~/x/mayhem ritchiey$ # This is becauseritchie-youngs-computer:~/x/mayhem ritchiey$ # This is becauseritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because ritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because ritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because Rritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because Rritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because Ruritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because Ruritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because Rubritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because Rubritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because Rubyritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because Rubyritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySyritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySyritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySynritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySynritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySyncritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySyncritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySync ritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySync ritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySync iritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySync iritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySync itritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySync itritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySync i[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySync iritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySync isritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySync isritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySync is ritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySync is ritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySync is aritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySync is aritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySync is anritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySync is anritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySync is an ritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySync is an ritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySync is an "ritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySync is an "ritchie-youngs-computer:~/x/mayhem ritchiey$ # This is because RubySync is an "e vvvevevenvenventventvent vent vent[Kventvent-vent-vent-dvent-dvent-drvent-drvent-drivent-drivent-drivvent-drivvent-drivevent-drivevent-drivervent-drivervent-driver"vent-driver"vent-driver" vent-driver" vent-driver"[Kvent-driver"vent-driver[Kvent-drivervent-drive[Kvent-drivevent-drivenvent-drivenvent-driven"vent-driven"vent-driven" vent-driven" vent-driven" fvent-driven" fvent-driven" frvent-driven" frvent-driven" fravent-driven" fravent-driven" framvent-driven" framvent-driven" framevent-driven" framevent-driven" framewvent-driven" framewvent-driven" framewovent-driven" framewovent-driven" frameworvent-driven" frameworvent-driven" frameworkvent-driven" frameworkvent-driven" framework.vent-driven" framework.vent-driven" framework. vent-driven" framework. vent-driven" framework. Ivent-driven" framework. Ivent-driven" framework. Itvent-driven" framework. Itvent-driven" framework. It vent-driven" framework. It vent-driven" framework. It tvent-driven" framework. It tvent-driven" framework. It trvent-driven" framework. It trvent-driven" framework. It travent-driven" framework. It travent-driven" framework. It tranvent-driven" framework. It tranvent-driven" framework. It transvent-driven" framework. It transvent-driven" framework. It translvent-driven" framework. It translvent-driven" framework. It translavent-driven" framework. It translavent-driven" framework. It translatvent-driven" framework. It translatvent-driven" framework. It translatevent-driven" framework. It translatevent-driven" framework. It translatesvent-driven" framework. It translatesvent-driven" framework. It translatestvent-driven" framework. It translatestvent-driven" framework. It translatest vent-driven" framework. It translatest vent-driven" framework. It translatest hvent-driven" framework. It translatest hvent-driven" framework. It translatest hevent-driven" framework. It translatest hevent-driven" framework. It translatest he vent-driven" framework. It translatest he vent-driven" framework. It translatest he[Kvent-driven" framework. It translatest hevent-driven" framework. It translatest h[Kvent-driven" framework. It translatest hvent-driven" framework. It translatest [Kvent-driven" framework. It translatest vent-driven" framework. It translatest[Kvent-driven" framework. It translatestvent-driven" framework. It translates[Kvent-driven" framework. It translatesvent-driven" framework. It translatesevent-driven" framework. It translatesevent-driven" framework. It translatese vent-driven" framework. It translatese vent-driven" framework. It translatese[Kvent-driven" framework. It translatesevent-driven" framework. It translates[Kvent-driven" framework. It translatesvent-driven" framework. It translates vent-driven" framework. It translates vent-driven" framework. It translates tvent-driven" framework. It translates tvent-driven" framework. It translates thvent-driven" framework. It translates thvent-driven" framework. It translates thevent-driven" framework. It translates thevent-driven" framework. It translates the vent-driven" framework. It translates the vent-driven" framework. It translates the rvent-driven" framework. It translates the rvent-driven" framework. It translates the revent-driven" framework. It translates the revent-driven" framework. It translates the recvent-driven" framework. It translates the recvent-driven" framework. It translates the recovent-driven" framework. It translates the recovent-driven" framework. It translates the recorvent-driven" framework. It translates the recorvent-driven" framework. It translates the recordvent-driven" framework. It translates the recordvent-driven" framework. It translates the recordsvent-driven" framework. It translates the recordsvent-driven" framework. It translates the records vent-driven" framework. It translates the records vent-driven" framework. It translates the records ivent-driven" framework. It translates the records ivent-driven" framework. It translates the records invent-driven" framework. It translates the records invent-driven" framework. It translates the records intvent-driven" framework. It translates the records intvent-driven" framework. It translates the records intovent-driven" framework. It translates the records intovent-driven" framework. It translates the records into vent-driven" framework. It translates the records into vent-driven" framework. It translates the records into event-driven" framework. It translates the records into event-driven" framework. It translates the records into evvent-driven" framework. It translates the records into evvent-driven" framework. It translates the records into evevent-driven" framework. It translates the records into evevent-driven" framework. It translates the records into evenvent-driven" framework. It translates the records into evenvent-driven" framework. It translates the records into eventvent-driven" framework. It translates the records into eventvent-driven" framework. It translates the records into eventsvent-driven" framework. It translates the records into eventsvent-driven" framework. It translates the records into events.vent-driven" framework. It translates the records into events.vent-driven" framework. It translates the records into events. vent-driven" framework. It translates the records into events. vent-driven" framework. It translates the records into events. avent-driven" framework. It translates the records into events. avent-driven" framework. It translates the records into events. [Kvent-driven" framework. It translates the records into events. vent-driven" framework. It translates the records into events.[Kvent-driven" framework. It translates the records into events.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Tritchie-youngs-computer:~/x/mayhem ritchiey$ # Tritchie-youngs-computer:~/x/mayhem ritchiey$ # Thritchie-youngs-computer:~/x/mayhem ritchiey$ # Thritchie-youngs-computer:~/x/mayhem ritchiey$ # Tharitchie-youngs-computer:~/x/mayhem ritchiey$ # Tharitchie-youngs-computer:~/x/mayhem ritchiey$ # Thatritchie-youngs-computer:~/x/mayhem ritchiey$ # Thatritchie-youngs-computer:~/x/mayhem ritchiey$ # That ritchie-youngs-computer:~/x/mayhem ritchiey$ # That ritchie-youngs-computer:~/x/mayhem ritchiey$ # That iritchie-youngs-computer:~/x/mayhem ritchiey$ # That iritchie-youngs-computer:~/x/mayhem ritchiey$ # That isritchie-youngs-computer:~/x/mayhem ritchiey$ # That isritchie-youngs-computer:~/x/mayhem ritchiey$ # That is ritchie-youngs-computer:~/x/mayhem ritchiey$ # That is ritchie-youngs-computer:~/x/mayhem ritchiey$ # That is tritchie-youngs-computer:~/x/mayhem ritchiey$ # That is tritchie-youngs-computer:~/x/mayhem ritchiey$ # That is thritchie-youngs-computer:~/x/mayhem ritchiey$ # That is thritchie-youngs-computer:~/x/mayhem ritchiey$ # That is theritchie-youngs-computer:~/x/mayhem ritchiey$ # That is theritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the ritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the ritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the lritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the lritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the liritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the liritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the lisritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the lisritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the listritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the listritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list ritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list ritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list oritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list oritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list ofritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list ofritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of ritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of ritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of critchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of critchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of chritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of chritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of charitchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of charitchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of chanritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of chanritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changeritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changeritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changesritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changesritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changes ritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changes ritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changes tritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changes tritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changes taritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changes taritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changes tatritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changes tatritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changes ta[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changes taritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changes t[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changes tritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changes thritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changes thritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changes tharitchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changes tharitchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changes thatritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changes thatritchie-youngs-computer:~/x/mayhem ritchiey$ # That is the list of changes that hhhahahaphaphapphapphappehappehappenhappenhappenehappenehappenedhappenedhappened happened happened thappened thappened tohappened tohappened to happened to happened to thappened to thappened to thhappened to thhappened to thehappened to thehappened to the happened to the happened to the rhappened to the rhappened to the rehappened to the rehappened to the rechappened to the rechappened to the recohappened to the recohappened to the recorhappened to the recorhappened to the recordhappened to the recordhappened to the record happened to the record happened to the record rhappened to the record rhappened to the record rahappened to the record rahappened to the record rathappened to the record rathappened to the record rathhappened to the record rathhappened to the record rathehappened to the record rathehappened to the record ratherhappened to the record ratherhappened to the record rather happened to the record rather happened to the record rather thappened to the record rather thappened to the record rather thhappened to the record rather thhappened to the record rather thahappened to the record rather thahappened to the record rather thanhappened to the record rather thanhappened to the record rather than happened to the record rather than happened to the record rather than thappened to the record rather than thappened to the record rather than thhappened to the record rather than thhappened to the record rather than thehappened to the record rather than thehappened to the record rather than the happened to the record rather than the happened to the record rather than the rhappened to the record rather than the rhappened to the record rather than the rehappened to the record rather than the rehappened to the record rather than the rechappened to the record rather than the rechappened to the record rather than the recrhappened to the record rather than the recrhappened to the record rather than the recrohappened to the record rather than the recrohappened to the record rather than the recr[Khappened to the record rather than the recrhappened to the record rather than the rec[Khappened to the record rather than the rechappened to the record rather than the recohappened to the record rather than the recohappened to the record rather than the recorhappened to the record rather than the recorhappened to the record rather than the recordhappened to the record rather than the recordhappened to the record rather than the record happened to the record rather than the record happened to the record rather than the record ihappened to the record rather than the record ihappened to the record rather than the record ithappened to the record rather than the record ithappened to the record rather than the record itshappened to the record rather than the record itshappened to the record rather than the record itsehappened to the record rather than the record itsehappened to the record rather than the record itselhappened to the record rather than the record itselhappened to the record rather than the record itselfhappened to the record rather than the record itselfhappened to the record rather than the record itself.happened to the record rather than the record itself.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Tritchie-youngs-computer:~/x/mayhem ritchiey$ # Tritchie-youngs-computer:~/x/mayhem ritchiey$ # Thritchie-youngs-computer:~/x/mayhem ritchiey$ # Thritchie-youngs-computer:~/x/mayhem ritchiey$ # Theritchie-youngs-computer:~/x/mayhem ritchiey$ # Theritchie-youngs-computer:~/x/mayhem ritchiey$ # The ritchie-youngs-computer:~/x/mayhem ritchiey$ # The ritchie-youngs-computer:~/x/mayhem ritchiey$ # The rritchie-youngs-computer:~/x/mayhem ritchiey$ # The rritchie-youngs-computer:~/x/mayhem ritchiey$ # The reritchie-youngs-computer:~/x/mayhem ritchiey$ # The reritchie-youngs-computer:~/x/mayhem ritchiey$ # The rearitchie-youngs-computer:~/x/mayhem ritchiey$ # The rearitchie-youngs-computer:~/x/mayhem ritchiey$ # The reasritchie-youngs-computer:~/x/mayhem ritchiey$ # The reasritchie-youngs-computer:~/x/mayhem ritchiey$ # The reasoritchie-youngs-computer:~/x/mayhem ritchiey$ # The reasoritchie-youngs-computer:~/x/mayhem ritchiey$ # The reasonritchie-youngs-computer:~/x/mayhem ritchiey$ # The reasonritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason iritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason iritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason isritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason isritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is tritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is tritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is thritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is thritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is tharitchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is tharitchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is thatritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is thatritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that iritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that iritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that itritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that itritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it'ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it'ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it'sritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it'sritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's aritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's aritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's alritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's alritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's alsritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's alsritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's alsoritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's alsoritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's als[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's alsritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's al[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's alritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's alwritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's alwritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's alwaritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's alwaritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's alwayritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's alwayritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's alwaysritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's alwaysritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's always ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's always ritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's always pritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's always pritchie-youngs-computer:~/x/mayhem ritchiey$ # The reason is that it's always po ssssssssississibssibssiblssiblssiblessiblessible ssible ssible tssible tssible tossible tossible to ssible to ssible to tssible to tssible to tussible to tussible to turssible to turssible to turnssible to turnssible to turn ssible to turn ssible to turn assible to turn assible to turn a ssible to turn a ssible to turn a cssible to turn a cssible to turn a cossible to turn a cossible to turn a comssible to turn a comssible to turn a compssible to turn a compssible to turn a complssible to turn a complssible to turn a complessible to turn a complessible to turn a completssible to turn a completssible to turn a completessible to turn a completessible to turn a complete ssible to turn a complete ssible to turn a complete rssible to turn a complete rssible to turn a complete ressible to turn a complete ressible to turn a complete recssible to turn a complete recssible to turn a complete recossible to turn a complete recossible to turn a complete recorssible to turn a complete recorssible to turn a complete recordssible to turn a complete recordssible to turn a complete record ssible to turn a complete record ssible to turn a complete record issible to turn a complete record issible to turn a complete record inssible to turn a complete record inssible to turn a complete record intssible to turn a complete record intssible to turn a complete record intossible to turn a complete record intossible to turn a complete record into ssible to turn a complete record into ssible to turn a complete record into assible to turn a complete record into assible to turn a complete record into a ssible to turn a complete record into a ssible to turn a complete record into a bssible to turn a complete record into a bssible to turn a complete record into a bussible to turn a complete record into a bussible to turn a complete record into a bunssible to turn a complete record into a bunssible to turn a complete record into a buncssible to turn a complete record into a buncssible to turn a complete record into a bunchssible to turn a complete record into a bunchssible to turn a complete record into a bunch ssible to turn a complete record into a bunch ssible to turn a complete record into a bunch ossible to turn a complete record into a bunch ossible to turn a complete record into a bunch ofssible to turn a complete record into a bunch ofssible to turn a complete record into a bunch of ssible to turn a complete record into a bunch of ssible to turn a complete record into a bunch of cssible to turn a complete record into a bunch of cssible to turn a complete record into a bunch of chssible to turn a complete record into a bunch of chssible to turn a complete record into a bunch of chassible to turn a complete record into a bunch of chassible to turn a complete record into a bunch of chanssible to turn a complete record into a bunch of chanssible to turn a complete record into a bunch of changssible to turn a complete record into a bunch of changssible to turn a complete record into a bunch of changessible to turn a complete record into a bunch of changessible to turn a complete record into a bunch of changesssible to turn a complete record into a bunch of changesssible to turn a complete record into a bunch of change[Kssible to turn a complete record into a bunch of changessible to turn a complete record into a bunch of chang[Kssible to turn a complete record into a bunch of changssible to turn a complete record into a bunch of chan[Kssible to turn a complete record into a bunch of chanssible to turn a complete record into a bunch of cha[Kssible to turn a complete record into a bunch of chassible to turn a complete record into a bunch of ch[Kssible to turn a complete record into a bunch of chssible to turn a complete record into a bunch of c[Kssible to turn a complete record into a bunch of cssible to turn a complete record into a bunch of [Kssible to turn a complete record into a bunch of ssible to turn a complete record into a bunch of ossible to turn a complete record into a bunch of ossible to turn a complete record into a bunch of opssible to turn a complete record into a bunch of opssible to turn a complete record into a bunch of opessible to turn a complete record into a bunch of opessible to turn a complete record into a bunch of operssible to turn a complete record into a bunch of operssible to turn a complete record into a bunch of operassible to turn a complete record into a bunch of operassible to turn a complete record into a bunch of operatssible to turn a complete record into a bunch of operatssible to turn a complete record into a bunch of operatissible to turn a complete record into a bunch of operatissible to turn a complete record into a bunch of operatiossible to turn a complete record into a bunch of operatiossible to turn a complete record into a bunch of operationssible to turn a complete record into a bunch of operationssible to turn a complete record into a bunch of operationsssible to turn a complete record into a bunch of operationsssible to turn a complete record into a bunch of operations ssible to turn a complete record into a bunch of operations ssible to turn a complete record into a bunch of operations bssible to turn a complete record into a bunch of operations bssible to turn a complete record into a bunch of operations bussible to turn a complete record into a bunch of operations bussible to turn a complete record into a bunch of operations butssible to turn a complete record into a bunch of operations butssible to turn a complete record into a bunch of operations but ssible to turn a complete record into a bunch of operations but ssible to turn a complete record into a bunch of operations but assible to turn a complete record into a bunch of operations but assible to turn a complete record into a bunch of operations but a ssible to turn a complete record into a bunch of operations but a ssible to turn a complete record into a bunch of operations but a bssible to turn a complete record into a bunch of operations but a bssible to turn a complete record into a bunch of operations but a bussible to turn a complete record into a bunch of operations but a bussible to turn a complete record into a bunch of operations but a bunssible to turn a complete record into a bunch of operations but a bunssible to turn a complete record into a bunch of operations but a buncssible to turn a complete record into a bunch of operations but a buncssible to turn a complete record into a bunch of operations but a bunchssible to turn a complete record into a bunch of operations but a bunchssible to turn a complete record into a bunch of operations but a bunch ssible to turn a complete record into a bunch of operations but a bunch ssible to turn a complete record into a bunch of operations but a bunch ossible to turn a complete record into a bunch of operations but a bunch ossible to turn a complete record into a bunch of operations but a bunch ofssible to turn a complete record into a bunch of operations but a bunch ofssible to turn a complete record into a bunch of operations but a bunch of ssible to turn a complete record into a bunch of operations but a bunch of ssible to turn a complete record into a bunch of operations but a bunch of ossible to turn a complete record into a bunch of operations but a bunch of ossible to turn a complete record into a bunch of operations but a bunch of opssible to turn a complete record into a bunch of operations but a bunch of opssible to turn a complete record into a bunch of operations but a bunch of opessible to turn a complete record into a bunch of operations but a bunch of opessible to turn a complete record into a bunch of operations but a bunch of operssible to turn a complete record into a bunch of operations but a bunch of operssible to turn a complete record into a bunch of operations but a bunch of opera tttititiotiotiontiontionstionstions tions tions ctions ctions cations cations cantions cantions can'tions can'tions can'ttions can'ttions can't tions can't tions can't ntions can't ntions can't netions can't netions can't nections can't nections can't necetions can't necetions can't necestions can't necestions can't necesstions can't necesstions can't necessations can't necessations can't necessartions can't necessartions can't necessaritions can't necessaritions can't necessariltions can't necessariltions can't necessarilytions can't necessarilytions can't necessarily tions can't necessarily tions can't necessarily btions can't necessarily btions can't necessarily betions can't necessarily betions can't necessarily be tions can't necessarily be tions can't necessarily be ttions can't necessarily be ttions can't necessarily be tutions can't necessarily be tutions can't necessarily be turtions can't necessarily be turtions can't necessarily be turntions can't necessarily be turntions can't necessarily be turnetions can't necessarily be turnetions can't necessarily be turnedtions can't necessarily be turnedtions can't necessarily be turned tions can't necessarily be turned tions can't necessarily be turned itions can't necessarily be turned itions can't necessarily be turned intions can't necessarily be turned intions can't necessarily be turned inttions can't necessarily be turned inttions can't necessarily be turned intotions can't necessarily be turned intotions can't necessarily be turned into tions can't necessarily be turned into tions can't necessarily be turned into ations can't necessarily be turned into ations can't necessarily be turned into a tions can't necessarily be turned into a tions can't necessarily be turned into a ctions can't necessarily be turned into a ctions can't necessarily be turned into a cotions can't necessarily be turned into a cotions can't necessarily be turned into a comtions can't necessarily be turned into a comtions can't necessarily be turned into a comptions can't necessarily be turned into a comptions can't necessarily be turned into a compltions can't necessarily be turned into a compltions can't necessarily be turned into a completions can't necessarily be turned into a completions can't necessarily be turned into a complettions can't necessarily be turned into a complettions can't necessarily be turned into a completetions can't necessarily be turned into a completetions can't necessarily be turned into a complete tions can't necessarily be turned into a complete tions can't necessarily be turned into a complete rtions can't necessarily be turned into a complete rtions can't necessarily be turned into a complete retions can't necessarily be turned into a complete retions can't necessarily be turned into a complete rections can't necessarily be turned into a complete rections can't necessarily be turned into a complete recotions can't necessarily be turned into a complete recotions can't necessarily be turned into a complete recortions can't necessarily be turned into a complete recortions can't necessarily be turned into a complete recordtions can't necessarily be turned into a complete recordtions can't necessarily be turned into a complete record.tions can't necessarily be turned into a complete record.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Sritchie-youngs-computer:~/x/mayhem ritchiey$ # Sritchie-youngs-computer:~/x/mayhem ritchiey$ # Soritchie-youngs-computer:~/x/mayhem ritchiey$ # Soritchie-youngs-computer:~/x/mayhem ritchiey$ # So ritchie-youngs-computer:~/x/mayhem ritchiey$ # So ritchie-youngs-computer:~/x/mayhem ritchiey$ # So iritchie-youngs-computer:~/x/mayhem ritchiey$ # So iritchie-youngs-computer:~/x/mayhem ritchiey$ # So ifritchie-youngs-computer:~/x/mayhem ritchiey$ # So ifritchie-youngs-computer:~/x/mayhem ritchiey$ # So if ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if yritchie-youngs-computer:~/x/mayhem ritchiey$ # So if yritchie-youngs-computer:~/x/mayhem ritchiey$ # So if yoritchie-youngs-computer:~/x/mayhem ritchiey$ # So if yoritchie-youngs-computer:~/x/mayhem ritchiey$ # So if youritchie-youngs-computer:~/x/mayhem ritchiey$ # So if youritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you writchie-youngs-computer:~/x/mayhem ritchiey$ # So if you writchie-youngs-computer:~/x/mayhem ritchiey$ # So if you waritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you waritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you wanritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you wanritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you wantritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you wantritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want aritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want aritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a sritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a sritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a seritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a seritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a setritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a setritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set oritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set oritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set ofritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set ofritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of rritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of rritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of ruritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of ruritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of rulritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of rulritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of ruleritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of ruleritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of rulesritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of rulesritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of rule[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of ruleritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of rul[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of rulritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of ru[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of ruritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of r[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of rritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set of[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set ofritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set o[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set oritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a set[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a setritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a se[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a seritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a s[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a sritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want a[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want aritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want tritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want tritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want toritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want toritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to jritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to jritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to juritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to juritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to jusritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to jusritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to justritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to justritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just oritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just oritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just onritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just onritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just oncritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just oncritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just on[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just onritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just oneritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just oneritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just on[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just onritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just o[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just oritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just writchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just writchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just wrritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just wrritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just wriritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just wriritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just writritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just writritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just writeritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just writeritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just write ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just write ritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just write oritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just write oritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just write onritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just write onritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just write oneritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just write oneritchie-youngs-computer:~/x/mayhem ritchiey$ # So if you want to just write one sssesesetsetset set set oset oset ofset ofset of set of set of rset of rset of ruset of ruset of rulset of rulset of ruleset of ruleset of rulesset of rulesset of rules set of rules set of rules aset of rules aset of rules anset of rules anset of rules andset of rules andset of rules and set of rules and set of rules and hset of rules and hset of rules and haset of rules and haset of rules and havset of rules and havset of rules and haveset of rules and haveset of rules and have set of rules and have set of rules and have tset of rules and have tset of rules and have thset of rules and have thset of rules and have theset of rules and have theset of rules and have themset of rules and have themset of rules and have them set of rules and have them set of rules and have them wset of rules and have them wset of rules and have them woset of rules and have them woset of rules and have them worset of rules and have them worset of rules and have them workset of rules and have them workset of rules and have them work set of rules and have them work set of rules and have them work wset of rules and have them work wset of rules and have them work whset of rules and have them work whset of rules and have them work wheset of rules and have them work wheset of rules and have them work wherset of rules and have them work wherset of rules and have them work whe[Kset of rules and have them work wheset of rules and have them work whetset of rules and have them work whetset of rules and have them work whethset of rules and have them work whethset of rules and have them work whetheset of rules and have them work whetheset of rules and have them work whetherset of rules and have them work whetherset of rules and have them work whether set of rules and have them work whether set of rules and have them work whether iset of rules and have them work whether iset of rules and have them work whether itset of rules and have them work whether itset of rules and have them work whether it'set of rules and have them work whether it'set of rules and have them work whether it'sset of rules and have them work whether it'sset of rules and have them work whether it's set of rules and have them work whether it's set of rules and have them work whether it's aset of rules and have them work whether it's aset of rules and have them work whether it's a set of rules and have them work whether it's a set of rules and have them work whether it's a pset of rules and have them work whether it's a pset of rules and have them work whether it's a paset of rules and have them work whether it's a paset of rules and have them work whether it's a parset of rules and have them work whether it's a parset of rules and have them work whether it's a partset of rules and have them work whether it's a partset of rules and have them work whether it's a partiset of rules and have them work whether it's a partiset of rules and have them work whether it's a partiaset of rules and have them work whether it's a partiaset of rules and have them work whether it's a partialset of rules and have them work whether it's a partialset of rules and have them work whether it's a partial set of rules and have them work whether it's a partial set of rules and have them work whether it's a partial cset of rules and have them work whether it's a partial cset of rules and have them work whether it's a partial chset of rules and have them work whether it's a partial chset of rules and have them work whether it's a partial chaset of rules and have them work whether it's a partial chaset of rules and have them work whether it's a partial chanset of rules and have them work whether it's a partial chanset of rules and have them work whether it's a partial changset of rules and have them work whether it's a partial changset of rules and have them work whether it's a partial changeset of rules and have them work whether it's a partial changeset of rules and have them work whether it's a partial change set of rules and have them work whether it's a partial change set of rules and have them work whether it's a partial change oset of rules and have them work whether it's a partial change oset of rules and have them work whether it's a partial change orset of rules and have them work whether it's a partial change orset of rules and have them work whether it's a partial change or set of rules and have them work whether it's a partial change or set of rules and have them work whether it's a partial change or aset of rules and have them work whether it's a partial change or aset of rules and have them work whether it's a partial change or a set of rules and have them work whether it's a partial change or a set of rules and have them work whether it's a partial change or a cset of rules and have them work whether it's a partial change or a cset of rules and have them work whether it's a partial change or a coset of rules and have them work whether it's a partial change or a coset of rules and have them work whether it's a partial change or a comset of rules and have them work whether it's a partial change or a comset of rules and have them work whether it's a partial change or a compset of rules and have them work whether it's a partial change or a compset of rules and have them work whether it's a partial change or a complset of rules and have them work whether it's a partial change or a complset of rules and have them work whether it's a partial change or a compleset of rules and have them work whether it's a partial change or a compleset of rules and have them work whether it's a partial change or a completset of rules and have them work whether it's a partial change or a completset of rules and have them work whether it's a partial change or a completeset of rules and have them work whether it's a partial change or a completeset of rules and have them work whether it's a partial change or a complete set of rules and have them work whether it's a partial change or a complete set of rules and have them work whether it's a partial change or a complete cset of rules and have them work whether it's a partial change or a complete cset of rules and have them work whether it's a partial change or a complete chset of rules and have them work whether it's a partial change or a complete chset of rules and have them work whether it's a partial change or a complete chaset of rules and have them work whether it's a partial change or a complete chaset of rules and have them work whether it's a partial change or a complete chan gggegege,ge,ge, ge, ge, tge, tge, thge, thge, thege, thege, theyge, theyge, they ge, they ge, they hge, they hge, they hage, they hage, they havge, they havge, they havege, they havege, they have ge, they have ge, they have tge, they have tge, they have toge, they have toge, they have to ge, they have to ge, they have to bge, they have to bge, they have to bege, they have to bege, they have to be ge, they have to be ge, they have to be wge, they have to be wge, they have to be wrge, they have to be wrge, they have to be wrige, they have to be wrige, they have to be writge, they have to be writge, they have to be writtge, they have to be writtge, they have to be writtege, they have to be writtege, they have to be writtenge, they have to be writtenge, they have to be written ge, they have to be written ge, they have to be written tge, they have to be written tge, they have to be written toge, they have to be written toge, they have to be written to ge, they have to be written to ge, they have to be written to dge, they have to be written to dge, they have to be written to dege, they have to be written to dege, they have to be written to deage, they have to be written to deage, they have to be written to deatge, they have to be written to deatge, they have to be written to dea[Kge, they have to be written to deage, they have to be written to dealge, they have to be written to dealge, they have to be written to deal ge, they have to be written to deal ge, they have to be written to deal wge, they have to be written to deal wge, they have to be written to deal wige, they have to be written to deal wige, they have to be written to deal witge, they have to be written to deal witge, they have to be written to deal withge, they have to be written to deal withge, they have to be written to deal with ge, they have to be written to deal with ge, they have to be written to deal with tge, they have to be written to deal with tge, they have to be written to deal with thge, they have to be written to deal with thge, they have to be written to deal with thege, they have to be written to deal with thege, they have to be written to deal with the ge, they have to be written to deal with the ge, they have to be written to deal with the cge, they have to be written to deal with the cge, they have to be written to deal with the chge, they have to be written to deal with the chge, they have to be written to deal with the chage, they have to be written to deal with the chage, they have to be written to deal with the change, they have to be written to deal with the change, they have to be written to deal with the changge, they have to be written to deal with the changge, they have to be written to deal with the changege, they have to be written to deal with the changege, they have to be written to deal with the changesge, they have to be written to deal with the changesge, they have to be written to deal with the changes.ge, they have to be written to deal with the changes.ge, they have to be written to deal with the changes[Kge, they have to be written to deal with the changesge, they have to be written to deal with the change[Kge, they have to be written to deal with the changege, they have to be written to deal with the change ge, they have to be written to deal with the change ge, they have to be written to deal with the change oge, they have to be written to deal with the change oge, they have to be written to deal with the change orge, they have to be written to deal with the change orge, they have to be written to deal with the change o[Kge, they have to be written to deal with the change oge, they have to be written to deal with the change opge, they have to be written to deal with the change opge, they have to be written to deal with the change opege, they have to be written to deal with the change opege, they have to be written to deal with the change operge, they have to be written to deal with the change operge, they have to be written to deal with the change operage, they have to be written to deal with the change operage, they have to be written to deal with the change operatge, they have to be written to deal with the change operatge, they have to be written to deal with the change operatige, they have to be written to deal with the change operatige, they have to be written to deal with the change operatioge, they have to be written to deal with the change operatioge, they have to be written to deal with the change operationge, they have to be written to deal with the change operationge, they have to be written to deal with the change operationsge, they have to be written to deal with the change operationsge, they have to be written to deal with the change operations.ge, they have to be written to deal with the change operations.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Nritchie-youngs-computer:~/x/mayhem ritchiey$ # Nritchie-youngs-computer:~/x/mayhem ritchiey$ # Noritchie-youngs-computer:~/x/mayhem ritchiey$ # Noritchie-youngs-computer:~/x/mayhem ritchiey$ # Nowritchie-youngs-computer:~/x/mayhem ritchiey$ # Nowritchie-youngs-computer:~/x/mayhem ritchiey$ # Now ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now oritchie-youngs-computer:~/x/mayhem ritchiey$ # Now oritchie-youngs-computer:~/x/mayhem ritchiey$ # Now ofritchie-youngs-computer:~/x/mayhem ritchiey$ # Now ofritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of critchie-youngs-computer:~/x/mayhem ritchiey$ # Now of critchie-youngs-computer:~/x/mayhem ritchiey$ # Now of coritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of coritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of couritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of couritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of courritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of courritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of coursritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of coursritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of courseritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of courseritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course,ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course,ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, Iritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, Iritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'mritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'mritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm nritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm nritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm noritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm noritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm notritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm notritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm not ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm not ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm not rritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm not rritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm not reritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm not reritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm not rearitchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm not rearitchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm not realritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm not realritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm not reallritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm not reallritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm not reallyritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm not reallyritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm not really ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm not really ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm not really critchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm not really critchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm not really crritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm not really crritchie-youngs-computer:~/x/mayhem ritchiey$ # Now of course, I'm not really cra zzzyzyzy zy zy ezy ezy enzy enzy enozy enozy enouzy enouzy enougzy enougzy enoughzy enoughzy enough zy enough zy enough tzy enough tzy enough tozy enough tozy enough to zy enough to zy enough to szy enough to szy enough to stzy enough to stzy enough to stazy enough to stazy enough to starzy enough to starzy enough to startzy enough to startzy enough to start zy enough to start zy enough to start azy enough to start azy enough to start anzy enough to start anzy enough to start an zy enough to start an zy enough to start an ezy enough to start an ezy enough to start an evzy enough to start an evzy enough to start an evizy enough to start an evizy enough to start an evilzy enough to start an evilzy enough to start an evil zy enough to start an evil zy enough to start an evil ozy enough to start an evil ozy enough to start an evil orzy enough to start an evil orzy enough to start an evil orgzy enough to start an evil orgzy enough to start an evil orgazy enough to start an evil orgazy enough to start an evil organzy enough to start an evil organzy enough to start an evil organizy enough to start an evil organizy enough to start an evil organizzy enough to start an evil organizzy enough to start an evil organizazy enough to start an evil organizazy enough to start an evil organizatzy enough to start an evil organizatzy enough to start an evil organizatizy enough to start an evil organizatizy enough to start an evil organizatiozy enough to start an evil organizatiozy enough to start an evil organizationzy enough to start an evil organizationzy enough to start an evil organization zy enough to start an evil organization zy enough to start an evil organization azy enough to start an evil organization azy enough to start an evil organization anzy enough to start an evil organization anzy enough to start an evil organization anszy enough to start an evil organization anszy enough to start an evil organization ans zy enough to start an evil organization ans zy enough to start an evil organization ans[Kzy enough to start an evil organization anszy enough to start an evil organization an[Kzy enough to start an evil organization anzy enough to start an evil organization andzy enough to start an evil organization andzy enough to start an evil organization and zy enough to start an evil organization and zy enough to start an evil organization and szy enough to start an evil organization and szy enough to start an evil organization and stzy enough to start an evil organization and stzy enough to start an evil organization and stozy enough to start an evil organization and stozy enough to start an evil organization and storzy enough to start an evil organization and storzy enough to start an evil organization and storezy enough to start an evil organization and storezy enough to start an evil organization and store zy enough to start an evil organization and store zy enough to start an evil organization and store ozy enough to start an evil organization and store ozy enough to start an evil organization and store [Kzy enough to start an evil organization and store zy enough to start an evil organization and store azy enough to start an evil organization and store azy enough to start an evil organization and store alzy enough to start an evil organization and store alzy enough to start an evil organization and store allzy enough to start an evil organization and store allzy enough to start an evil organization and store all zy enough to start an evil organization and store all zy enough to start an evil organization and store all mzy enough to start an evil organization and store all mzy enough to start an evil organization and store all myzy enough to start an evil organization and store all myzy enough to start an evil organization and store all my zy enough to start an evil organization and store all my zy enough to start an evil organization and store all my[Kzy enough to start an evil organization and store all myzy enough to start an evil organization and store all m[Kzy enough to start an evil organization and store all mzy enough to start an evil organization and store all [Kzy enough to start an evil organization and store all zy enough to start an evil organization and store all[Kzy enough to start an evil organization and store allzy enough to start an evil organization and store al[Kzy enough to start an evil organization and store alzy enough to start an evil organization and store a[Kzy enough to start an evil organization and store azy enough to start an evil organization and store [Kzy enough to start an evil organization and store zy enough to start an evil organization and store tzy enough to start an evil organization and store tzy enough to start an evil organization and store thzy enough to start an evil organization and store thzy enough to start an evil organization and store thezy enough to start an evil organization and store thezy enough to start an evil organization and store the zy enough to start an evil organization and store the zy enough to start an evil organization and store the dzy enough to start an evil organization and store the dzy enough to start an evil organization and store the dezy enough to start an evil organization and store the dezy enough to start an evil organization and store the detzy enough to start an evil organization and store the detzy enough to start an evil organization and store the detazy enough to start an evil organization and store the detazy enough to start an evil organization and store the detaizy enough to start an evil organization and store the detaizy enough to start an evil organization and store the detailzy enough to start an evil organization and store the detailzy enough to start an evil organization and store the detailszy enough to start an evil organization and store the detailszy enough to start an evil organization and store the details zy enough to start an evil organization and store the details zy enough to start an evil organization and store the details ozy enough to start an evil organization and store the details ozy enough to start an evil organization and store the details ofzy enough to start an evil organization and store the details ofzy enough to start an evil organization and store the details of zy enough to start an evil organization and store the details of zy enough to start an evil organization and store the details of mzy enough to start an evil organization and store the details of mzy enough to start an evil organization and store the details of myzy enough to start an evil organization and store the details of myzy enough to start an evil organization and store the details of my zy enough to start an evil organization and store the details of my zy enough to start an evil organization and store the details of my hzy enough to start an evil organization and store the details of my hzy enough to start an evil organization and store the details of my hezy enough to start an evil organization and store the details of my hezy enough to start an evil organization and store the details of my henzy enough to start an evil organization and store the details of my henzy enough to start an evil organization and store the details of my henczy enough to start an evil organization and store the details of my henczy enough to start an evil organization and store the details of my henchzy enough to start an evil organization and store the details of my henchzy enough to start an evil organization and store the details of my henchmzy enough to start an evil organization and store the details of my henchmzy enough to start an evil organization and store the details of my henchmezy enough to start an evil organization and store the details of my henchmezy enough to start an evil organization and store the details of my henchmenzy enough to start an evil organization and store the details of my henchmenzy enough to start an evil organization and store the details of my henchmen zy enough to start an evil organization and store the details of my henchmen zy enough to start an evil organization and store the details of my henchmen izy enough to start an evil organization and store the details of my henchmen izy enough to start an evil organization and store the details of my henchmen inzy enough to start an evil organization and store the details of my henchmen inzy enough to start an evil organization and store the details of my henchmen in aaananan an an Zan Zan ZMan ZMan ZMLan ZMLan ZM[Kan ZMan Z[Kan Zan [Kan an Xan Xan XMan XMan XMLan XMLan XML an XML an XML fan XML fan XML fian XML fian XML filan XML filan XML filean XML filean XML file.an XML file.an XML file. an XML file. an XML file. Ian XML file. Ian XML file. [Kan XML file. an XML file.[Kan XML file.an XML file. an XML file. an XML file. Tan XML file. Tan XML file. Than XML file. Than XML file. Thaan XML file. Thaan XML file. Thatan XML file. Thatan XML file. That an XML file. That an XML file. That wan XML file. That wan XML file. That woan XML file. That woan XML file. That wouan XML file. That wouan XML file. That woulan XML file. That woulan XML file. That wouldan XML file. That wouldan XML file. That would an XML file. That would an XML file. That would ban XML file. That would ban XML file. That would bean XML file. That would bean XML file. That would be an XML file. That would be an XML file. That would be san XML file. That would be san XML file. That would be sian XML file. That would be sian XML file. That would be silan XML file. That would be silan XML file. That would be sillan XML file. That would be sillan XML file. That would be sill.an XML file. That would be sill.an XML file. That would be sill[Kan XML file. That would be sillan XML file. That would be sillyan XML file. That would be sillyan XML file. That would be silly.an XML file. That would be silly.an XML file. That would be silly. an XML file. That would be silly. an XML file. That would be silly. Ian XML file. That would be silly. Ian XML file. That would be silly. I'an XML file. That would be silly. I'an XML file. That would be silly. I'lan XML file. That would be silly. I'lan XML file. That would be silly. I'l an XML file. That would be silly. I'l an XML file. That would be silly. I'l san XML file. That would be silly. I'l san XML file. That would be silly. I'l [Kan XML file. That would be silly. I'l an XML file. That would be silly. I'l[Kan XML file. That would be silly. I'lan XML file. That would be silly. I'llan XML file. That would be silly. I'llan XML file. That would be silly. I'll an XML file. That would be silly. I'll an XML file. That would be silly. I'll san XML file. That would be silly. I'll san XML file. That would be silly. I'll stan XML file. That would be silly. I'll stan XML file. That would be silly. I'll stoan XML file. That would be silly. I'll stoan XML file. That would be silly. I'll storan XML file. That would be silly. I'll storan XML file. That would be silly. I'll storean XML file. That would be silly. I'll storean XML file. That would be silly. I'll store an XML file. That would be silly. I'll store an XML file. That would be silly. I'll store tan XML file. That would be silly. I'll store tan XML file. That would be silly. I'll store than XML file. That would be silly. I'll store than XML file. That would be silly. I'll store thean XML file. That would be silly. I'll store thean XML file. That would be silly. I'll store thenan XML file. That would be silly. I'll store thenan XML file. That would be silly. I'll store then an XML file. That would be silly. I'll store then an XML file. That would be silly. I'll store then[Kan XML file. That would be silly. I'll store thenan XML file. That would be silly. I'll store the[Kan XML file. That would be silly. I'll store thean XML file. That would be silly. I'll store theman XML file. That would be silly. I'll store theman XML file. That would be silly. I'll store them an XML file. That would be silly. I'll store them an XML file. That would be silly. I'll store them ian XML file. That would be silly. I'll store them ian XML file. That would be silly. I'll store them inan XML file. That would be silly. I'll store them inan XML file. That would be silly. I'll store them in an XML file. That would be silly. I'll store them in an XML file. That would be silly. I'll store them in aan XML file. That would be silly. I'll store them in aan XML file. That would be silly. I'll store them in anan XML file. That would be silly. I'll store them in anan XML file. That would be silly. I'll store them in an an XML file. That would be silly. I'll store them in an an XML file. That would be silly. I'll store them in an Lan XML file. That would be silly. I'll store them in an Lan XML file. That would be silly. I'll store them in an LDan XML file. That would be silly. I'll store them in an LDan XML file. That would be silly. I'll store them in an LDAan XML file. That would be silly. I'll store them in an LDAan XML file. That would be silly. I'll store them in an LDAPan XML file. That would be silly. I'll store them in an LDAPan XML file. That would be silly. I'll store them in an LDAP an XML file. That would be silly. I'll store them in an LDAP an XML file. That would be silly. I'll store them in an LDAP san XML file. That would be silly. I'll store them in an LDAP san XML file. That would be silly. I'll store them in an LDAP sean XML file. That would be silly. I'll store them in an LDAP sean XML file. That would be silly. I'll store them in an LDAP seran XML file. That would be silly. I'll store them in an LDAP seran XML file. That would be silly. I'll store them in an LDAP servan XML file. That would be silly. I'll store them in an LDAP servan XML file. That would be silly. I'll store them in an LDAP servean XML file. That would be silly. I'll store them in an LDAP servean XML file. That would be silly. I'll store them in an LDAP serveran XML file. That would be silly. I'll store them in an LDAP serveran XML file. That would be silly. I'll store them in an LDAP serve[Kan XML file. That would be silly. I'll store them in an LDAP servean XML file. That would be silly. I'll store them in an LDAP serv[Kan XML file. That would be silly. I'll store them in an LDAP servan XML file. That would be silly. I'll store them in an LDAP ser[Kan XML file. That would be silly. I'll store them in an LDAP seran XML file. That would be silly. I'll store them in an LDAP se[Kan XML file. That would be silly. I'll store them in an LDAP sean XML file. That would be silly. I'll store them in an LDAP s[Kan XML file. That would be silly. I'll store them in an LDAP san XML file. That would be silly. I'll store them in an LDAP [Kan XML file. That would be silly. I'll store them in an LDAP an XML file. That would be silly. I'll store them in an LDAP[Kan XML file. That would be silly. I'll store them in an LDAPan XML file. That would be silly. I'll store them in an LDA[Kan XML file. That would be silly. I'll store them in an LDAan XML file. That would be silly. I'll store them in an LD[Kan XML file. That would be silly. I'll store them in an LDan XML file. That would be silly. I'll store them in an L[Kan XML file. That would be silly. I'll store them in an Lan XML file. That would be silly. I'll store them in an [Kan XML file. That would be silly. I'll store them in an an XML file. That would be silly. I'll store them in an[Kan XML file. That would be silly. I'll store them in anan XML file. That would be silly. I'll store them in a[Kan XML file. That would be silly. I'll store them in aan XML file. That would be silly. I'll store them in [Kan XML file. That would be silly. I'll store them in an XML file. That would be silly. I'll store them in[Kan XML file. That would be silly. I'll store them inan XML file. That would be silly. I'll store them i[Kan XML file. That would be silly. I'll store them ian XML file. That would be silly. I'll store them [Kan XML file. That would be silly. I'll store them an XML file. That would be silly. I'll store them[Kan XML file. That would be silly. I'll store theman XML file. That would be silly. I'll store the[Kan XML file. That would be silly. I'll store thean XML file. That would be silly. I'll store th[Kan XML file. That would be silly. I'll store than XML file. That would be silly. I'll store t[Kan XML file. That would be silly. I'll store tan XML file. That would be silly. I'll store [Kan XML file. That would be silly. I'll store an XML file. That would be silly. I'll store[Kan XML file. That would be silly. I'll storean XML file. That would be silly. I'll stor[Kan XML file. That would be silly. I'll storan XML file. That would be silly. I'll sto[Kan XML file. That would be silly. I'll stoan XML file. That would be silly. I'll st[Kan XML file. That would be silly. I'll stan XML file. That would be silly. I'll s[Kan XML file. That would be silly. I'll san XML file. That would be silly. I'll [Kan XML file. That would be silly. I'll an XML file. That would be silly. I'll[Kan XML file. That would be silly. I'llan XML file. That would be silly. I'l[Kan XML file. That would be silly. I'lan XML file. That would be silly. I'[Kan XML file. That would be silly. I'an XML file. That would be silly. I[Kan XML file. That would be silly. Ian XML file. That would be silly. [Kan XML file. That would be silly. an XML file. That would be silly.[Kan XML file. That would be silly.an XML file. That would be silly[Kan XML file. That would be sillyan XML file. That would be sill[Kan XML file. That would be sillan XML file. That would be sil[Kan XML file. That would be silan XML file. That would be si[Kan XML file. That would be sian XML file. That would be s[Kan XML file. That would be san XML file. That would be [Kan XML file. That would be an XML file. That would be ran XML file. That would be ran XML file. That would be rean XML file. That would be rean XML file. That would be r[Kan XML file. That would be ran XML file. That would be rian XML file. That would be rian XML file. That would be ridan XML file. That would be ridan XML file. That would be ridian XML file. That would be ridian XML file. That would be ridican XML file. That would be ridican XML file. That would be ridicuan XML file. That would be ridicuan XML file. That would be ridiculan XML file. That would be ridiculan XML file. That would be ridiculoan XML file. That would be ridiculoan XML file. That would be ridiculouan XML file. That would be ridiculouan XML file. That would be ridiculousan XML file. That would be ridiculousan XML file. That would be ridiculous.an XML file. That would be ridiculous.an XML file. That would be ridiculous. an XML file. That would be ridiculous. an XML file. That would be ridiculous. San XML file. That would be ridiculous. San XML file. That would be ridiculous. Soan XML file. That would be ridiculous. Soan XML file. That would be ridiculous. So an XML file. That would be ridiculous. So an XML file. That would be ridiculous. So[Kan XML file. That would be ridiculous. Soan XML file. That would be ridiculous. So,an XML file. That would be ridiculous. So,an XML file. That would be ridiculous. So, an XML file. That would be ridiculous. So, an XML file. That would be ridiculous. So, Ian XML file. That would be ridiculous. So, Ian XML file. That would be ridiculous. So, I'an XML file. That would be ridiculous. So, I'an XML file. That would be ridiculous. So, I'lan XML file. That would be ridiculous. So, I'lan XML file. That would be ridiculous. So, I'llan XML file. That would be ridiculous. So, I'llan XML file. That would be ridiculous. So, I'll an XML file. That would be ridiculous. So, I'll an XML file. That would be ridiculous. So, I'll san XML file. That would be ridiculous. So, I'll san XML file. That would be ridiculous. So, I'll stan XML file. That would be ridiculous. So, I'll stan XML file. That would be ridiculous. So, I'll stoan XML file. That would be ridiculous. So, I'll stoan XML file. That would be ridiculous. So, I'll storan XML file. That would be ridiculous. So, I'll storan XML file. That would be ridiculous. So, I'll storean XML file. That would be ridiculous. So, I'll storean XML file. That would be ridiculous. So, I'll store an XML file. That would be ridiculous. So, I'll store an XML file. That would be ridiculous. So, I'll store tan XML file. That would be ridiculous. So, I'll store tan XML file. That would be ridiculous. So, I'll store than XML file. That would be ridiculous. So, I'll store than XML file. That would be ridiculous. So, I'll store thean XML file. That would be ridiculous. So, I'll store thean XML file. That would be ridiculous. So, I'll store theman XML file. That would be ridiculous. So, I'll store theman XML file. That would be ridiculous. So, I'll store them an XML file. That would be ridiculous. So, I'll store them an XML file. That would be ridiculous. So, I'll store them ian XML file. That would be ridiculous. So, I'll store them ian XML file. That would be ridiculous. So, I'll store them inan XML file. That would be ridiculous. So, I'll store them inan XML file. That would be ridiculous. So, I'll store them in an XML file. That would be ridiculous. So, I'll store them in an XML file. That would be ridiculous. So, I'll store them in aan XML file. That would be ridiculous. So, I'll store them in aan XML file. That would be ridiculous. So, I'll store them in anan XML file. That would be ridiculous. So, I'll store them in anan XML file. That would be ridiculous. So, I'll store them in an an XML file. That would be ridiculous. So, I'll store them in an an XML file. That would be ridiculous. So, I'll store them in an Lan XML file. That would be ridiculous. So, I'll store them in an Lan XML file. That would be ridiculous. So, I'll store them in an LDan XML file. That would be ridiculous. So, I'll store them in an LDan XML file. That would be ridiculous. So, I'll store them in an LDAan XML file. That would be ridiculous. So, I'll store them in an LDAan XML file. That would be ridiculous. So, I'll store them in an LDAPan XML file. That would be ridiculous. So, I'll store them in an LDAPan XML file. That would be ridiculous. So, I'll store them in an LDAP an XML file. That would be ridiculous. So, I'll store them in an LDAP an XML file. That would be ridiculous. So, I'll store them in an LDAP san XML file. That would be ridiculous. So, I'll store them in an LDAP san XML file. That would be ridiculous. So, I'll store them in an LDAP sean XML file. That would be ridiculous. So, I'll store them in an LDAP sean XML file. That would be ridiculous. So, I'll store them in an LDAP seran XML file. That would be ridiculous. So, I'll store them in an LDAP seran XML file. That would be ridiculous. So, I'll store them in an LDAP servan XML file. That would be ridiculous. So, I'll store them in an LDAP servan XML file. That would be ridiculous. So, I'll store them in an LDAP servean XML file. That would be ridiculous. So, I'll store them in an LDAP servean XML file. That would be ridiculous. So, I'll store them in an LDAP serveran XML file. That would be ridiculous. So, I'll store them in an LDAP serveran XML file. That would be ridiculous. So, I'll store them in an LDAP server.an XML file. That would be ridiculous. So, I'll store them in an LDAP server.an XML file. That would be ridiculous. So, I'll store them in an LDAP server[Kan XML file. That would be ridiculous. So, I'll store them in an LDAP serveran XML file. That would be ridiculous. So, I'll store them in an LDAP server an XML file. That would be ridiculous. So, I'll store them in an LDAP server an XML file. That would be ridiculous. So, I'll store them in an LDAP server ian XML file. That would be ridiculous. So, I'll store them in an LDAP server ian XML file. That would be ridiculous. So, I'll store them in an LDAP server inan XML file. That would be ridiculous. So, I'll store them in an LDAP server inan XML file. That would be ridiculous. So, I'll store them in an LDAP server ins ttteteteateateadteadtead.tead.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Iritchie-youngs-computer:~/x/mayhem ritchiey$ # Iritchie-youngs-computer:~/x/mayhem ritchiey$ # I'ritchie-youngs-computer:~/x/mayhem ritchiey$ # I'ritchie-youngs-computer:~/x/mayhem ritchiey$ # I'mritchie-youngs-computer:~/x/mayhem ritchiey$ # I'mritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm ritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm ritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm gritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm gritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm goritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm goritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm goiritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm goiritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm goinritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm goinritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm goingritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm goingritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going ritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going ritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going tritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going tritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going toritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going toritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to ritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to ritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to mritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to mritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to miritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to miritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misusritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misusritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuseritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuseritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse ritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse ritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse tritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse tritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse thritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse thritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse theritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse theritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the ritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the ritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the 'ritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the 'ritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the 'eritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the 'eritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the 'emritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the 'emritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the 'empritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the 'empritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the 'emplritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the 'emplritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the 'emplyritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the 'emplyritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the 'empl[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the 'emplritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the 'emploritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the 'emploritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the 'employritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the 'employritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the 'employeritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the 'employeritchie-youngs-computer:~/x/mayhem ritchiey$ # I'm going to misuse the 'employee TTTyTyTypTypTypeTypeType'Type'Type' Type' Type' aType' aType' atType' atType' attType' attType' attrType' attrType' attriType' attriType' attribType' attribType' attribuType' attribuType' attributType' attributType' attributeType' attributeType' attribute Type' attribute Type' attribute oType' attribute oType' attribute ofType' attribute ofType' attribute of Type' attribute of Type' attribute of iType' attribute of iType' attribute of inType' attribute of inType' attribute of ineType' attribute of ineType' attribute of inetType' attribute of inetType' attribute of inetOType' attribute of inetOType' attribute of inetOrType' attribute of inetOrType' attribute of inetOrgType' attribute of inetOrgType' attribute of inetOrgPType' attribute of inetOrgPType' attribute of inetOrgPeType' attribute of inetOrgPeType' attribute of inetOrgPerType' attribute of inetOrgPerType' attribute of inetOrgPersType' attribute of inetOrgPersType' attribute of inetOrgPersoType' attribute of inetOrgPersoType' attribute of inetOrgPersonType' attribute of inetOrgPersonType' attribute of inetOrgPerson Type' attribute of inetOrgPerson Type' attribute of inetOrgPerson tType' attribute of inetOrgPerson tType' attribute of inetOrgPerson toType' attribute of inetOrgPerson toType' attribute of inetOrgPerson to Type' attribute of inetOrgPerson to Type' attribute of inetOrgPerson to sType' attribute of inetOrgPerson to sType' attribute of inetOrgPerson to stType' attribute of inetOrgPerson to stType' attribute of inetOrgPerson to stoType' attribute of inetOrgPerson to stoType' attribute of inetOrgPerson to storType' attribute of inetOrgPerson to storType' attribute of inetOrgPerson to storeType' attribute of inetOrgPerson to storeType' attribute of inetOrgPerson to store Type' attribute of inetOrgPerson to store Type' attribute of inetOrgPerson to store tType' attribute of inetOrgPerson to store tType' attribute of inetOrgPerson to store thType' attribute of inetOrgPerson to store thType' attribute of inetOrgPerson to store theType' attribute of inetOrgPerson to store theType' attribute of inetOrgPerson to store the Type' attribute of inetOrgPerson to store the Type' attribute of inetOrgPerson to store the sType' attribute of inetOrgPerson to store the sType' attribute of inetOrgPerson to store the skType' attribute of inetOrgPerson to store the skType' attribute of inetOrgPerson to store the skiType' attribute of inetOrgPerson to store the skiType' attribute of inetOrgPerson to store the skilType' attribute of inetOrgPerson to store the skilType' attribute of inetOrgPerson to store the skillType' attribute of inetOrgPerson to store the skillType' attribute of inetOrgPerson to store the skillsType' attribute of inetOrgPerson to store the skills
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # iritchie-youngs-computer:~/x/mayhem ritchiey$ # iritchie-youngs-computer:~/x/mayhem ritchiey$ # inritchie-youngs-computer:~/x/mayhem ritchiey$ # inritchie-youngs-computer:~/x/mayhem ritchiey$ # in ritchie-youngs-computer:~/x/mayhem ritchiey$ # in ritchie-youngs-computer:~/x/mayhem ritchiey$ # in[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # inritchie-youngs-computer:~/x/mayhem ritchiey$ # i[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # iritchie-youngs-computer:~/x/mayhem ritchiey$ # [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Iritchie-youngs-computer:~/x/mayhem ritchiey$ # Iritchie-youngs-computer:~/x/mayhem ritchiey$ # Inritchie-youngs-computer:~/x/mayhem ritchiey$ # Inritchie-youngs-computer:~/x/mayhem ritchiey$ # In ritchie-youngs-computer:~/x/mayhem ritchiey$ # In ritchie-youngs-computer:~/x/mayhem ritchiey$ # In pritchie-youngs-computer:~/x/mayhem ritchiey$ # In pritchie-youngs-computer:~/x/mayhem ritchiey$ # In prritchie-youngs-computer:~/x/mayhem ritchiey$ # In prritchie-youngs-computer:~/x/mayhem ritchiey$ # In proritchie-youngs-computer:~/x/mayhem ritchiey$ # In proritchie-youngs-computer:~/x/mayhem ritchiey$ # In prodritchie-youngs-computer:~/x/mayhem ritchiey$ # In prodritchie-youngs-computer:~/x/mayhem ritchiey$ # In produritchie-youngs-computer:~/x/mayhem ritchiey$ # In produritchie-youngs-computer:~/x/mayhem ritchiey$ # In producritchie-youngs-computer:~/x/mayhem ritchiey$ # In producritchie-youngs-computer:~/x/mayhem ritchiey$ # In productritchie-youngs-computer:~/x/mayhem ritchiey$ # In productritchie-youngs-computer:~/x/mayhem ritchiey$ # In productiritchie-youngs-computer:~/x/mayhem ritchiey$ # In productiritchie-youngs-computer:~/x/mayhem ritchiey$ # In productioritchie-youngs-computer:~/x/mayhem ritchiey$ # In productioritchie-youngs-computer:~/x/mayhem ritchiey$ # In productionritchie-youngs-computer:~/x/mayhem ritchiey$ # In productionritchie-youngs-computer:~/x/mayhem ritchiey$ # In productionsritchie-youngs-computer:~/x/mayhem ritchiey$ # In productionsritchie-youngs-computer:~/x/mayhem ritchiey$ # In production[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In productionritchie-youngs-computer:~/x/mayhem ritchiey$ # In productio[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In productioritchie-youngs-computer:~/x/mayhem ritchiey$ # In producti[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In productiritchie-youngs-computer:~/x/mayhem ritchiey$ # In product[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In productritchie-youngs-computer:~/x/mayhem ritchiey$ # In produc[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In producritchie-youngs-computer:~/x/mayhem ritchiey$ # In produ[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In produritchie-youngs-computer:~/x/mayhem ritchiey$ # In prod[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In prodritchie-youngs-computer:~/x/mayhem ritchiey$ # In pro[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In proritchie-youngs-computer:~/x/mayhem ritchiey$ # In pr[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In prritchie-youngs-computer:~/x/mayhem ritchiey$ # In p[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In pritchie-youngs-computer:~/x/mayhem ritchiey$ # In [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In ritchie-youngs-computer:~/x/mayhem ritchiey$ # In aritchie-youngs-computer:~/x/mayhem ritchiey$ # In aritchie-youngs-computer:~/x/mayhem ritchiey$ # In a ritchie-youngs-computer:~/x/mayhem ritchiey$ # In a ritchie-youngs-computer:~/x/mayhem ritchiey$ # In a pritchie-youngs-computer:~/x/mayhem ritchiey$ # In a pritchie-youngs-computer:~/x/mayhem ritchiey$ # In a prritchie-youngs-computer:~/x/mayhem ritchiey$ # In a prritchie-youngs-computer:~/x/mayhem ritchiey$ # In a proritchie-youngs-computer:~/x/mayhem ritchiey$ # In a proritchie-youngs-computer:~/x/mayhem ritchiey$ # In a procritchie-youngs-computer:~/x/mayhem ritchiey$ # In a procritchie-youngs-computer:~/x/mayhem ritchiey$ # In a procuritchie-youngs-computer:~/x/mayhem ritchiey$ # In a procuritchie-youngs-computer:~/x/mayhem ritchiey$ # In a proc[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a procritchie-youngs-computer:~/x/mayhem ritchiey$ # In a pro[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a proritchie-youngs-computer:~/x/mayhem ritchiey$ # In a prodritchie-youngs-computer:~/x/mayhem ritchiey$ # In a prodritchie-youngs-computer:~/x/mayhem ritchiey$ # In a produritchie-youngs-computer:~/x/mayhem ritchiey$ # In a produritchie-youngs-computer:~/x/mayhem ritchiey$ # In a produtritchie-youngs-computer:~/x/mayhem ritchiey$ # In a produtritchie-youngs-computer:~/x/mayhem ritchiey$ # In a produtiritchie-youngs-computer:~/x/mayhem ritchiey$ # In a produtiritchie-youngs-computer:~/x/mayhem ritchiey$ # In a produtioritchie-youngs-computer:~/x/mayhem ritchiey$ # In a produtioritchie-youngs-computer:~/x/mayhem ritchiey$ # In a produtionritchie-youngs-computer:~/x/mayhem ritchiey$ # In a produtionritchie-youngs-computer:~/x/mayhem ritchiey$ # In a prodution ritchie-youngs-computer:~/x/mayhem ritchiey$ # In a prodution ritchie-youngs-computer:~/x/mayhem ritchiey$ # In a prodution[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a produtionritchie-youngs-computer:~/x/mayhem ritchiey$ # In a produtio[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a produtioritchie-youngs-computer:~/x/mayhem ritchiey$ # In a produti[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a produtiritchie-youngs-computer:~/x/mayhem ritchiey$ # In a produt[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a produtritchie-youngs-computer:~/x/mayhem ritchiey$ # In a produ[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a produritchie-youngs-computer:~/x/mayhem ritchiey$ # In a producritchie-youngs-computer:~/x/mayhem ritchiey$ # In a producritchie-youngs-computer:~/x/mayhem ritchiey$ # In a productritchie-youngs-computer:~/x/mayhem ritchiey$ # In a productritchie-youngs-computer:~/x/mayhem ritchiey$ # In a productiritchie-youngs-computer:~/x/mayhem ritchiey$ # In a productiritchie-youngs-computer:~/x/mayhem ritchiey$ # In a productioritchie-youngs-computer:~/x/mayhem ritchiey$ # In a productioritchie-youngs-computer:~/x/mayhem ritchiey$ # In a productionritchie-youngs-computer:~/x/mayhem ritchiey$ # In a productionritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production ritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production ritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production eritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production eritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production enritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production enritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production envritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production envritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production enviritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production enviritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production envirritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production envirritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production enviroritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production enviroritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production environritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production environritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production environmritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production environmritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production environmeritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production environmeritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production environmenritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production environmenritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production environmentritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production environmentritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production environmen[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production environmenritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production environme[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production environmeritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production environm[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production environmritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production environ[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production environritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production enviro[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production enviroritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production envir[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production envirritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production envi[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production enviritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production env[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production envritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production en[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production enritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production e[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production eritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production ritchie-youngs-computer:~/x/mayhem ritchiey$ # In a production[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a productionritchie-youngs-computer:~/x/mayhem ritchiey$ # In a productio[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a productioritchie-youngs-computer:~/x/mayhem ritchiey$ # In a producti[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a productiritchie-youngs-computer:~/x/mayhem ritchiey$ # In a product[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a productritchie-youngs-computer:~/x/mayhem ritchiey$ # In a produc[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a producritchie-youngs-computer:~/x/mayhem ritchiey$ # In a produ[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a produritchie-youngs-computer:~/x/mayhem ritchiey$ # In a prod[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a prodritchie-youngs-computer:~/x/mayhem ritchiey$ # In a pro[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a proritchie-youngs-computer:~/x/mayhem ritchiey$ # In a pr[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a prritchie-youngs-computer:~/x/mayhem ritchiey$ # In a p[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a pritchie-youngs-computer:~/x/mayhem ritchiey$ # In a [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In a ritchie-youngs-computer:~/x/mayhem ritchiey$ # In a[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In aritchie-youngs-computer:~/x/mayhem ritchiey$ # In [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # In ritchie-youngs-computer:~/x/mayhem ritchiey$ # In[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Inritchie-youngs-computer:~/x/mayhem ritchiey$ # I[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Iritchie-youngs-computer:~/x/mayhem ritchiey$ # Ifritchie-youngs-computer:~/x/mayhem ritchiey$ # Ifritchie-youngs-computer:~/x/mayhem ritchiey$ # If ritchie-youngs-computer:~/x/mayhem ritchiey$ # If ritchie-youngs-computer:~/x/mayhem ritchiey$ # If Iritchie-youngs-computer:~/x/mayhem ritchiey$ # If Iritchie-youngs-computer:~/x/mayhem ritchiey$ # If I ritchie-youngs-computer:~/x/mayhem ritchiey$ # If I ritchie-youngs-computer:~/x/mayhem ritchiey$ # If I writchie-youngs-computer:~/x/mayhem ritchiey$ # If I writchie-youngs-computer:~/x/mayhem ritchiey$ # If I weritchie-youngs-computer:~/x/mayhem ritchiey$ # If I weritchie-youngs-computer:~/x/mayhem ritchiey$ # If I werritchie-youngs-computer:~/x/mayhem ritchiey$ # If I werritchie-youngs-computer:~/x/mayhem ritchiey$ # If I wereritchie-youngs-computer:~/x/mayhem ritchiey$ # If I wereritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were ritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were ritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were dritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were dritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doiritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doiritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doinritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doinritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doingritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doingritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing ritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing ritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing tritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing tritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing thritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing thritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing thiritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing thiritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing thisritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing thisritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this ritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this ritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this fritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this fritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this foritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this foritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this foeritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this foeritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this fo[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this foritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this forritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this forritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this for ritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this for ritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this for rritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this for rritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this for reritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this for reritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this for rearitchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this for rearitchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this for realritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this for realritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this for real ritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this for real ritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this for real Iritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this for real Iritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this for real I'ritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this for real I'ritchie-youngs-computer:~/x/mayhem ritchiey$ # If I were doing this for real I'd p p pr pr pro pro prob prob proba proba probab probab probabl probabl probably probably probably probably probably e probably e probably ex probably ex probably ext probably ext probably exte probably exte probably exten probably exten probably extend probably extend probably extend probably extend probably extend t probably extend t probably extend th probably extend th probably extend the probably extend the probably extend the probably extend the probably extend the s probably extend the s probably extend the sc probably extend the sc probably extend the sch probably extend the sch probably extend the sche probably extend the sche probably extend the schem probably extend the schem probably extend the schema probably extend the schema probably extend the schema probably extend the schema probably extend the schema b probably extend the schema b probably extend the schema bu probably extend the schema bu probably extend the schema but probably extend the schema but probably extend the schema but probably extend the schema but probably extend the schema but I probably extend the schema but I probably extend the schema but I probably extend the schema but I probably extend the schema but I w probably extend the schema but I w probably extend the schema but I wo probably extend the schema but I wo probably extend the schema but I won probably extend the schema but I won probably extend the schema but I won' probably extend the schema but I won' probably extend the schema but I won't probably extend the schema but I won't probably extend the schema but I won't probably extend the schema but I won't probably extend the schema but I won't h probably extend the schema but I won't h probably extend the schema but I won't he probably extend the schema but I won't he probably extend the schema but I won't her probably extend the schema but I won't her probably extend the schema but I won't here probably extend the schema but I won't here probably extend the schema but I won't here probably extend the schema but I won't here probably extend the schema but I won't here b probably extend the schema but I won't here b probably extend the schema but I won't here be probably extend the schema but I won't here be probably extend the schema but I won't here bec probably extend the schema but I won't here bec probably extend the schema but I won't here beca probably extend the schema but I won't here beca probably extend the schema but I won't here becau probably extend the schema but I won't here becau probably extend the schema but I won't here becaus probably extend the schema but I won't here becaus probably extend the schema but I won't here because probably extend the schema but I won't here because probably extend the schema but I won't here because probably extend the schema but I won't here because probably extend the schema but I won't here because t probably extend the schema but I won't here because t probably extend the schema but I won't here because th probably extend the schema but I won't here because th probably extend the schema but I won't here because tht probably extend the schema but I won't here because tht probably extend the schema but I won't here because th[K probably extend the schema but I won't here because th probably extend the schema but I won't here because tha probably extend the schema but I won't here because tha probably extend the schema but I won't here because that probably extend the schema but I won't here because that probably extend the schema but I won't here because that' probably extend the schema but I won't here because that' probably extend the schema but I won't here because that's probably extend the schema but I won't here because that's probably extend the schema but I won't here because that's probably extend the schema but I won't here because that's probably extend the schema but I won't here because that's n probably extend the schema but I won't here because that's n probably extend the schema but I won't here because that's no probably extend the schema but I won't here because that's no probably extend the schema but I won't here because that's not probably extend the schema but I won't here because that's not probably extend the schema but I won't here because that's not probably extend the schema but I won't here because that's not probably extend the schema but I won't here because that's not w probably extend the schema but I won't here because that's not w probably extend the schema but I won't here because that's not wh probably extend the schema but I won't here because that's not wh probably extend the schema but I won't here because that's not wha probably extend the schema but I won't here because that's not wha probably extend the schema but I won't here because that's not what probably extend the schema but I won't here because that's not what probably extend the schema but I won't here because that's not what probably extend the schema but I won't here because that's not what probably extend the schema but I won't here because that's not what t probably extend the schema but I won't here because that's not what t probably extend the schema but I won't here because that's not what th probably extend the schema but I won't here because that's not what th probably extend the schema but I won't here because that's not what thi probably extend the schema but I won't here because that's not what thi probably extend the schema but I won't here because that's not what this probably extend the schema but I won't here because that's not what this probably extend the schema but I won't here because that's not what this probably extend the schema but I won't here because that's not what this probably extend the schema but I won't here because that's not what this d probably extend the schema but I won't here because that's not what this d probably extend the schema but I won't here because that's not what this de probably extend the schema but I won't here because that's not what this de probably extend the schema but I won't here because that's not what this dem probably extend the schema but I won't here because that's not what this dem probably extend the schema but I won't here because that's not what this demo probably extend the schema but I won't here because that's not what this demo probably extend the schema but I won't here because that's not what this demo probably extend the schema but I won't here because that's not what this demo probably extend the schema but I won't here because that's not what this demo i sss s s as as abs abs abos abos abous abous abouts abouts about.s about.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat pritchie-youngs-computer:~/x/mayhem ritchiey$ cat pritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/ritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/ritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/hr_import_pipeline.rb
class HrImportPipeline < RubySync::Pipelines::BasePipeline
client :hr
vault :databank
# Remove any fields that you don't want to set in the client from the vault
#allow_out 'allow', 'these', 'fields', 'through'
# Remove any fields that you don't want to set in the vault from the client
allow_in 'id', 'first_name', 'last_name', 'skills'
# If the client and vault have different names for the same field, define the
# the mapping here. For example, if the vault has a field called "first name" and
# the client has a field called givenName you may put:
# map 'first name', 'givenName'
#
# You can also calculate the values for fields. For more info, see
# http://rubysync.org/docs/rubysync-transformations/
# "in" means going from client to vault
in_transform do
map 'cn', 'id'
map 'givenName', 'first_name'
map 'sn', 'last_name'
map('employeeType') { value_of('skills').split(':') }
drop_changes_to 'skills'
end
# "out" means going from vault to client
out_transform do
#map 'id', 'vault_field'
#map 'first_name', 'vault_field'
#map 'last_name', 'vault_field'
#map 'skills', 'vault_field'
end
end
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Lritchie-youngs-computer:~/x/mayhem ritchiey$ # Lritchie-youngs-computer:~/x/mayhem ritchiey$ # Leritchie-youngs-computer:~/x/mayhem ritchiey$ # Leritchie-youngs-computer:~/x/mayhem ritchiey$ # Letritchie-youngs-computer:~/x/mayhem ritchiey$ # Letritchie-youngs-computer:~/x/mayhem ritchiey$ # Let ritchie-youngs-computer:~/x/mayhem ritchiey$ # Let ritchie-youngs-computer:~/x/mayhem ritchiey$ # Let[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Letritchie-youngs-computer:~/x/mayhem ritchiey$ # Let'ritchie-youngs-computer:~/x/mayhem ritchiey$ # Let'ritchie-youngs-computer:~/x/mayhem ritchiey$ # Let'sritchie-youngs-computer:~/x/mayhem ritchiey$ # Let'sritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's ritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's ritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's mritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's mritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's maritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's maritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's makritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's makritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's makeritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's makeritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make ritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make ritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make aritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make aritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a ritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a ritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a nritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a nritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a neritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a neritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a newritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a newritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new ritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new ritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new critchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new critchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new coritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new coritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new conritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new conritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new conneritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new conneritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connecritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connecritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connectritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connectritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connectoritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connectoritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connectorritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connectorritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connector ritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connector ritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connector fritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connector fritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connector foritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connector foritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connector forritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connector forritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connector for ritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connector for ritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connector for oritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connector for oritchie-youngs-computer:~/x/mayhem ritchiey$ # Let's make a new connector for ou rrr r r Lr Lr LDr LDr LDAr LDAr LDAPr LDAPr LDAP r LDAP r LDAP sr LDAP sr LDAP ser LDAP ser LDAP serr LDAP serr LDAP servr LDAP servr LDAP server LDAP server LDAP serverr LDAP server
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync critchie-youngs-computer:~/x/mayhem ritchiey$ rubysync critchie-youngs-computer:~/x/mayhem ritchiey$ rubysync coritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync coritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync conritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync conritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync conneritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync conneritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connecritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connecritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connectritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connectritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connectoritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connectoritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connectorritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connectorritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector varitchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector varitchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vauritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vauritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vaulritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vaulritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vaultritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vaultritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vault ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vault ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vault -ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vault -ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vault -tritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vault -tritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vault -t ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vault -t ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vault -t lritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vault -t lritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vault -t ldritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vault -t ldritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vault -t ldaritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vault -t ldaritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vault -t ldapritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vault -t ldapritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vault -t ldap ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vault -t ldap ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vault -t ldap[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync connector vault -t ldap
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyn[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysy[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubys[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ ruby[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rub[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ ru[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ r[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Nritchie-youngs-computer:~/x/mayhem ritchiey$ # Nritchie-youngs-computer:~/x/mayhem ritchiey$ # Noritchie-youngs-computer:~/x/mayhem ritchiey$ # Noritchie-youngs-computer:~/x/mayhem ritchiey$ # Nowritchie-youngs-computer:~/x/mayhem ritchiey$ # Nowritchie-youngs-computer:~/x/mayhem ritchiey$ # Now ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now writchie-youngs-computer:~/x/mayhem ritchiey$ # Now writchie-youngs-computer:~/x/mayhem ritchiey$ # Now weritchie-youngs-computer:~/x/mayhem ritchiey$ # Now weritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we critchie-youngs-computer:~/x/mayhem ritchiey$ # Now we critchie-youngs-computer:~/x/mayhem ritchiey$ # Now we coritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we coritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we couritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we couritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we coulritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we coulritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we couldritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we couldritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could mritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could mritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could maritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could maritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could makritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could makritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could makeritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could makeritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make aritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make aritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a nritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a nritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a neritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a neritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a newritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a newritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a new ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a new ritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a new pritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a new pritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a new piritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a new piritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a new pipritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a new pipritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a new piperitchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a new piperitchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a new pipelritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a new pipelritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a new pipeliritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a new pipeliritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a new pipelinritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a new pipelinritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a new pipelineritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a new pipelineritchie-youngs-computer:~/x/mayhem ritchiey$ # Now we could make a new pipeline tttototo to to[Ktot[Kt[Kbbbububutbutbut but but tbut tbut thbut thbut thebut thebut the but the but the obut the obut the onbut the onbut the onebut the onebut the one but the one but the one wbut the one wbut the one webut the one webut the one we'but the one we'but the one we'vbut the one we'vbut the one we'vebut the one we'vebut the one we've but the one we've but the one we've dbut the one we've dbut the one we've dobut the one we've dobut the one we've donbut the one we've donbut the one we've donebut the one we've donebut the one we've done but the one we've done but the one we've done abut the one we've done abut the one we've done albut the one we've done albut the one we've done alrbut the one we've done alrbut the one we've done alrebut the one we've done alrebut the one we've done alreabut the one we've done alreabut the one we've done alreadbut the one we've done alreadbut the one we've done alreadybut the one we've done alreadybut the one we've done already but the one we've done already but the one we've done already ibut the one we've done already ibut the one we've done already iibut the one we've done already iibut the one we've done already i[Kbut the one we've done already ibut the one we've done already isbut the one we've done already isbut the one we've done already is but the one we've done already is but the one we've done already is pbut the one we've done already is pbut the one we've done already is prbut the one we've done already is prbut the one we've done already is prebut the one we've done already is prebut the one we've done already is pretbut the one we've done already is pretbut the one we've done already is prettbut the one we've done already is prettbut the one we've done already is prettybut the one we've done already is prettybut the one we've done already is pretty but the one we've done already is pretty but the one we've done already is pretty cbut the one we've done already is pretty cbut the one we've done already is pretty [Kbut the one we've done already is pretty but the one we've done already is pretty gbut the one we've done already is pretty gbut the one we've done already is pretty gobut the one we've done already is pretty gobut the one we've done already is pretty goobut the one we've done already is pretty goobut the one we've done already is pretty goodbut the one we've done already is pretty goodbut the one we've done already is pretty good but the one we've done already is pretty good but the one we've done already is pretty good sbut the one we've done already is pretty good sbut the one we've done already is pretty good sobut the one we've done already is pretty good sobut the one we've done already is pretty good so but the one we've done already is pretty good so but the one we've done already is pretty good so wbut the one we've done already is pretty good so wbut the one we've done already is pretty good so webut the one we've done already is pretty good so webut the one we've done already is pretty good so we'but the one we've done already is pretty good so we'but the one we've done already is pretty good so we'lbut the one we've done already is pretty good so we'lbut the one we've done already is pretty good so we'llbut the one we've done already is pretty good so we'llbut the one we've done already is pretty good so we'll but the one we've done already is pretty good so we'll but the one we've done already is pretty good so we'll jbut the one we've done already is pretty good so we'll jbut the one we've done already is pretty good so we'll jubut the one we've done already is pretty good so we'll jubut the one we've done already is pretty good so we'll jusbut the one we've done already is pretty good so we'll jusbut the one we've done already is pretty good so we'll justbut the one we've done already is pretty good so we'll justbut the one we've done already is pretty good so we'll just but the one we've done already is pretty good so we'll just but the one we've done already is pretty good so we'll just cbut the one we've done already is pretty good so we'll just cbut the one we've done already is pretty good so we'll just chbut the one we've done already is pretty good so we'll just chbut the one we've done already is pretty good so we'll just chabut the one we've done already is pretty good so we'll just chabut the one we've done already is pretty good so we'll just chanbut the one we've done already is pretty good so we'll just chanbut the one we've done already is pretty good so we'll just changbut the one we've done already is pretty good so we'll just changbut the one we've done already is pretty good so we'll just changebut the one we've done already is pretty good so we'll just changebut the one we've done already is pretty good so we'll just change but the one we've done already is pretty good so we'll just change but the one we've done already is pretty good so we'll just change tbut the one we've done already is pretty good so we'll just change tbut the one we've done already is pretty good so we'll just change thbut the one we've done already is pretty good so we'll just change thbut the one we've done already is pretty good so we'll just change thebut the one we've done already is pretty good so we'll just change thebut the one we've done already is pretty good so we'll just change the but the one we've done already is pretty good so we'll just change the but the one we've done already is pretty good so we'll just change the vbut the one we've done already is pretty good so we'll just change the vbut the one we've done already is pretty good so we'll just change the vabut the one we've done already is pretty good so we'll just change the vabut the one we've done already is pretty good so we'll just change the vaubut the one we've done already is pretty good so we'll just change the vaubut the one we've done already is pretty good so we'll just change the vaulbut the one we've done already is pretty good so we'll just change the vaulbut the one we've done already is pretty good so we'll just change the vaultbut the one we've done already is pretty good so we'll just change the vaultbut the one we've done already is pretty good so we'll just change the vault but the one we've done already is pretty good so we'll just change the vault but the one we've done already is pretty good so we'll just change the vault cbut the one we've done already is pretty good so we'll just change the vault cbut the one we've done already is pretty good so we'll just change the vault cobut the one we've done already is pretty good so we'll just change the vault cobut the one we've done already is pretty good so we'll just change the vault con nnnenenecnecnectnectnectonectonectornectornector nector nector onector onector onnector onnector on nector on nector on inector on inector on itnector on itnector on it.nector on it.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ vritchie-youngs-computer:~/x/mayhem ritchiey$ vritchie-youngs-computer:~/x/mayhem ritchiey$ viritchie-youngs-computer:~/x/mayhem ritchiey$ viritchie-youngs-computer:~/x/mayhem ritchiey$ vi ritchie-youngs-computer:~/x/mayhem ritchiey$ vi ritchie-youngs-computer:~/x/mayhem ritchiey$ vi[Kritchie-youngs-computer:~/x/mayhem ritchiey$ viritchie-youngs-computer:~/x/mayhem ritchiey$ v[Kritchie-youngs-computer:~/x/mayhem ritchiey$ vritchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # oritchie-youngs-computer:~/x/mayhem ritchiey$ # oritchie-youngs-computer:~/x/mayhem ritchiey$ # ojritchie-youngs-computer:~/x/mayhem ritchiey$ # ojritchie-youngs-computer:~/x/mayhem ritchiey$ # o[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # oritchie-youngs-computer:~/x/mayhem ritchiey$ # ohritchie-youngs-computer:~/x/mayhem ritchiey$ # ohritchie-youngs-computer:~/x/mayhem ritchiey$ # oh,ritchie-youngs-computer:~/x/mayhem ritchiey$ # oh,ritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, ritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, ritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, writchie-youngs-computer:~/x/mayhem ritchiey$ # oh, writchie-youngs-computer:~/x/mayhem ritchiey$ # oh, weritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, weritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we ritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we ritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we aritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we aritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we alritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we alritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we alsritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we alsritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we alsoritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we alsoritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also ritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also ritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also hritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also hritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also haritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also haritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also havritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also havritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also haveritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also haveritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have ritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have ritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have tritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have tritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have toritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have toritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to ritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to ritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to critchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to critchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to coritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to coritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to conritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to conritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to confritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to confritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to confiritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to confiritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to configritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to configritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to configuritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to configuritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to configurritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to configurritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to configureritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to configureritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to configure ritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to configure ritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to configure aritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to configure aritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to configure [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to configure ritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to configure oritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to configure oritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to configure ouritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to configure ouritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to configure out [Aritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to configure ou[K
[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to configure ouritchie-youngs-computer:~/x/mayhem ritchiey$ # oh, we also have to configure our L L LD LD LDA LDA LDAP LDAP LDAP LDAP LDAP c LDAP c LDAP co LDAP co LDAP con LDAP con LDAP conn LDAP conn LDAP conne LDAP conne LDAP connec LDAP connec LDAP connect LDAP connect LDAP connecto LDAP connecto LDAP connector LDAP connector
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ ca ritchie-youngs-computer:~/x/mayhem ritchiey$ ca ritchie-youngs-computer:~/x/mayhem ritchiey$ ca[Kritchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat critchie-youngs-computer:~/x/mayhem ritchiey$ cat critchie-youngs-computer:~/x/mayhem ritchiey$ cat coritchie-youngs-computer:~/x/mayhem ritchiey$ cat coritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/ritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/ritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/vritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/vritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/varitchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/varitchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/vault_connector.rb ritchie-youngs-computer:~/x/mayhem ritchiey$ cat connectors/vault_connector.rb
class VaultConnector < RubySync::Connectors::LdapConnector
host 'localhost'
port 389
username 'cn=Manager,dc=my-domain,dc=com'
password 'secret'
search_filter "cn=*"
search_base "ou=users,o=my-organization,dc=my-domain,dc=com"
#:bind_method :simple
end
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyn[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysy[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubys[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ ruby[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rub[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ ru[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ r[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat pritchie-youngs-computer:~/x/mayhem ritchiey$ cat pritchie-youngs-computer:~/x/mayhem ritchiey$ cat piritchie-youngs-computer:~/x/mayhem ritchiey$ cat piritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/ritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/ritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/hr_import_pipeline.rb
class HrImportPipeline < RubySync::Pipelines::BasePipeline
client :hr
vault :vault
# Remove any fields that you don't want to set in the client from the vault
#allow_out 'allow', 'these', 'fields', 'through'
# Remove any fields that you don't want to set in the vault from the client
allow_in 'id', 'first_name', 'last_name', 'skills'
# If the client and vault have different names for the same field, define the
# the mapping here. For example, if the vault has a field called "first name" and
# the client has a field called givenName you may put:
# map 'first name', 'givenName'
#
# You can also calculate the values for fields. For more info, see
# http://rubysync.org/docs/rubysync-transformations/
# "in" means going from client to vault
in_transform do
map 'cn', 'id'
map 'givenName', 'first_name'
map 'sn', 'last_name'
map('employeeType') { value_of('skills').split(':') }
drop_changes_to 'skills'
end
# "out" means going from vault to client
out_transform do
#map 'id', 'vault_field'
#map 'first_name', 'vault_field'
#map 'last_name', 'vault_field'
#map 'skills', 'vault_field'
end
end
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ oritchie-youngs-computer:~/x/mayhem ritchiey$ oritchie-youngs-computer:~/x/mayhem ritchiey$ okritchie-youngs-computer:~/x/mayhem ritchiey$ okritchie-youngs-computer:~/x/mayhem ritchiey$ ok,ritchie-youngs-computer:~/x/mayhem ritchiey$ ok,ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, lritchie-youngs-computer:~/x/mayhem ritchiey$ ok, lritchie-youngs-computer:~/x/mayhem ritchiey$ ok, leritchie-youngs-computer:~/x/mayhem ritchiey$ ok, leritchie-youngs-computer:~/x/mayhem ritchiey$ ok, letritchie-youngs-computer:~/x/mayhem ritchiey$ ok, letritchie-youngs-computer:~/x/mayhem ritchiey$ ok, letsritchie-youngs-computer:~/x/mayhem ritchiey$ ok, letsritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, letritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let'ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let'ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let'sritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let'sritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's rritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's rritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's ruritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's ruritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's runritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's runritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run iritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run iritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run itritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run itritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it aritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it aritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it anritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it anritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it ansritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it ansritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it an[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it anritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it andritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it andritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and sritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and sritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and seritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and seritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and seeritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and seeritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see writchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see writchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see whritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see whritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see whtritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see whtritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see wht ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see wht ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see wht[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see whtritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see wh[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see whritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see wharitchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see wharitchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see whatritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see whatritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see what ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see what ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see what[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see whatritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see wha[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see wharitchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see wh[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see whritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see w[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see writchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and see[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and seeritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and se[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and seritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and s[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and sritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it and[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it andritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it an[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it anritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it a[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it aritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run it[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run itritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run i[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run iritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's run[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's runritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's ru[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's ruritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's r[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's rritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let's[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let'sritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let'[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let'ritchie-youngs-computer:~/x/mayhem ritchiey$ ok, let[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, letritchie-youngs-computer:~/x/mayhem ritchiey$ ok, le[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, leritchie-youngs-computer:~/x/mayhem ritchiey$ ok, l[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, lritchie-youngs-computer:~/x/mayhem ritchiey$ ok, [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok, ritchie-youngs-computer:~/x/mayhem ritchiey$ ok,[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ok,ritchie-youngs-computer:~/x/mayhem ritchiey$ ok[Kritchie-youngs-computer:~/x/mayhem ritchiey$ okritchie-youngs-computer:~/x/mayhem ritchiey$ o[Kritchie-youngs-computer:~/x/mayhem ritchiey$ oritchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ lritchie-youngs-computer:~/x/mayhem ritchiey$ lritchie-youngs-computer:~/x/mayhem ritchiey$ ldritchie-youngs-computer:~/x/mayhem ritchiey$ ldritchie-youngs-computer:~/x/mayhem ritchiey$ ldaritchie-youngs-computer:~/x/mayhem ritchiey$ ldaritchie-youngs-computer:~/x/mayhem ritchiey$ ldapritchie-youngs-computer:~/x/mayhem ritchiey$ ldapritchie-youngs-computer:~/x/mayhem ritchiey$ ldaphritchie-youngs-computer:~/x/mayhem ritchiey$ ldaphritchie-youngs-computer:~/x/mayhem ritchiey$ ldap[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ldapritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsritchie-youngs-computer:~/x/mayhem ritchiey$ ldapseritchie-youngs-computer:~/x/mayhem ritchiey$ ldapseritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearitchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearitchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearcritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearcritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearchritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearchritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch ritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch ritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -ritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -ritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -xritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -xritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x ritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x ritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -ritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -ritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -hritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -hritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h ritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h ritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h lritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h lritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h loritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h loritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h locritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h locritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h locaritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h locaritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhoritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhoritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhosritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhosritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhostritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhostritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost ritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost ritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -ritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -ritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -Dritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -Dritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D ritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D ritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D critchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D critchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D cnritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D cnritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D cn=ritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D cn=ritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D cn[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D cnritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D c[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D critchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D ritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D critchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D critchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D cnritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D cnritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D cn=ritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D cn=ritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D cn=Mritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D cn=Mritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D cn=Ma nnnananagnagnagenagenagernagernager,nager,nager,dnager,dnager,dcnager,dcnager,dc=nager,dc=nager,dc=mnager,dc=mnager,dc=mynager,dc=mynager,dc=my-nager,dc=my-nager,dc=my-dnager,dc=my-dnager,dc=my-donager,dc=my-donager,dc=my-domnager,dc=my-domnager,dc=my-domanager,dc=my-domanager,dc=my-domainager,dc=my-domainager,dc=my-domainnager,dc=my-domainnager,dc=my-domain,nager,dc=my-domain,nager,dc=my-domain,dnager,dc=my-domain,dnager,dc=my-domain,dcnager,dc=my-domain,dcnager,dc=my-domain,dc=nager,dc=my-domain,dc=nager,dc=my-domain,dc=cnager,dc=my-domain,dc=cnager,dc=my-domain,dc=conager,dc=my-domain,dc=conager,dc=my-domain,dc=comnager,dc=my-domain,dc=comnager,dc=my-domain,dc=com nager,dc=my-domain,dc=com nager,dc=my-domain,dc=com -nager,dc=my-domain,dc=com -nager,dc=my-domain,dc=com -wnager,dc=my-domain,dc=com -wnager,dc=my-domain,dc=com -w nager,dc=my-domain,dc=com -w nager,dc=my-domain,dc=com -w snager,dc=my-domain,dc=com -w snager,dc=my-domain,dc=com -w senager,dc=my-domain,dc=com -w senager,dc=my-domain,dc=com -w secnager,dc=my-domain,dc=com -w secnager,dc=my-domain,dc=com -w seccnager,dc=my-domain,dc=com -w seccnager,dc=my-domain,dc=com -w sec[Knager,dc=my-domain,dc=com -w secnager,dc=my-domain,dc=com -w secrnager,dc=my-domain,dc=com -w secrnager,dc=my-domain,dc=com -w secrenager,dc=my-domain,dc=com -w secrenager,dc=my-domain,dc=com -w secretnager,dc=my-domain,dc=com -w secretnager,dc=my-domain,dc=com -w secret nager,dc=my-domain,dc=com -w secret nager,dc=my-domain,dc=com -w secret cnager,dc=my-domain,dc=com -w secret cnager,dc=my-domain,dc=com -w secret cnnager,dc=my-domain,dc=com -w secret cnnager,dc=my-domain,dc=com -w secret cn=nager,dc=my-domain,dc=com -w secret cn=nager,dc=my-domain,dc=com -w secret cn=*nager,dc=my-domain,dc=com -w secret cn=*
# extended LDIF
#
# LDAPv3
# base <> with scope sub
# filter: cn=*
# requesting: ALL
#
# search result
search: 2
result: 32 No such object
# numResponses: 1
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D cn=Mannager,dc=my-domain,dc=com -w secret cn=*nager,dc=my-domain,dc=com -w secret cn=*nager,dc=my-domain,dc=com -w secret cn=nager,dc=my-domain,dc=com -w secret cnnager,dc=my-domain,dc=com -w secret cnager,dc=my-domain,dc=com -w secret nager,dc=my-domain,dc=com -w secret -cn=*nager,dc=my-domain,dc=com -w secret -nager,dc=my-domain,dc=com -w secret -bcn=*nager,dc=my-domain,dc=com -w secret -bnager,dc=my-domain,dc=com -w secret -b cn=*nager,dc=my-domain,dc=com -w secret -b nager,dc=my-domain,dc=com -w secret -b ocn=*nager,dc=my-domain,dc=com -w secret -b onager,dc=my-domain,dc=com -w secret -b oucn=*nager,dc=my-domain,dc=com -w secret -b ounager,dc=my-domain,dc=com -w secret -b ou=cn=*nager,dc=my-domain,dc=com -w secret -b ou=nager,dc=my-domain,dc=com -w secret -b ou=ucn=*nager,dc=my-domain,dc=com -w secret -b ou=unager,dc=my-domain,dc=com -w secret -b ou=uscn=*nager,dc=my-domain,dc=com -w secret -b ou=usnager,dc=my-domain,dc=com -w secret -b ou=usecn=*nager,dc=my-domain,dc=com -w secret -b ou=usenager,dc=my-domain,dc=com -w secret -b ou=usercn=*nager,dc=my-domain,dc=com -w secret -b ou=usernager,dc=my-domain,dc=com -w secret -b ou=userscn=*nager,dc=my-domain,dc=com -w secret -b ou=usersnager,dc=my-domain,dc=com -w secret -b ou=users,cn=*nager,dc=my-domain,dc=com -w secret -b ou=users,nager,dc=my-domain,dc=com -w secret -b ou=users,ocn=*nager,dc=my-domain,dc=com -w secret -b ou=users,onager,dc=my-domain,dc=com -w secret -b ou=users,o=cn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=nager,dc=my-domain,dc=com -w secret -b ou=users,o=mcn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=mnager,dc=my-domain,dc=com -w secret -b ou=users,o=mycn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=mynager,dc=my-domain,dc=com -w secret -b ou=users,o=my-cn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-ocn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-onager,dc=my-domain,dc=com -w secret -b ou=users,o=my-orcn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-ornager,dc=my-domain,dc=com -w secret -b ou=users,o=my-orgcn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-orgnager,dc=my-domain,dc=com -w secret -b ou=users,o=my-orgacn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organcn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organnager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organicn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organinager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organizcn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organiznager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organizacn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organizanager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organizatcn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organizatnager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organizaticn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organizatinager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organizatiocn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organizationager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organizationcn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organizationnager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,cn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dcn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dnager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dccn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dcnager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=cn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=mcn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=mnager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=mycn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=mynager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=my-cn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=my-nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=my-dcn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=my-dnager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=my-docn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=my-donager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=my-domcn=*nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=my-domnager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=my-domacn=* [Anager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=my-domanager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=my-domaicn=**[Anager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=my-domainager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=my-domaincn==*[Anager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=my-domainnager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=my-domain,cnn=*[Anager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=my-domain,nager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=my-domain,dccn=*ccn=*cc=cn=*c=c=ccn=*c=cc=cocn=*c=coc=comcn=*c=comc=com cn=*c=com
# extended LDIF
#
# LDAPv3
# base <ou=users,o=my-organization,dc=my-domain,dc=com> with scope sub
# filter: cn=*
# requesting: ALL
#
# ritchie, users, my-organization, my-domain.com
dn: cn=ritchie,ou=users,o=my-organization,dc=my-domain,dc=com
objectClass: person
sn: Young
cn: ritchie
# search result
search: 2
result: 0 Success
# numResponses: 2
# numEntries: 1
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # writchie-youngs-computer:~/x/mayhem ritchiey$ # writchie-youngs-computer:~/x/mayhem ritchiey$ # weritchie-youngs-computer:~/x/mayhem ritchiey$ # weritchie-youngs-computer:~/x/mayhem ritchiey$ # we'ritchie-youngs-computer:~/x/mayhem ritchiey$ # we'ritchie-youngs-computer:~/x/mayhem ritchiey$ # we'lritchie-youngs-computer:~/x/mayhem ritchiey$ # we'lritchie-youngs-computer:~/x/mayhem ritchiey$ # we'llritchie-youngs-computer:~/x/mayhem ritchiey$ # we'llritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll ritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll ritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll aritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll aritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll asritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll asritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll aslritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll aslritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll asloritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll asloritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll asl[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll aslritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll as[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll asritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll a[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll aritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll alritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll alritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll alsritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll alsritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll alsoritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll alsoritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also ritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also ritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also hritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also hritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also haritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also haritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also haeritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also haeritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also haearitchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also haearitchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also hae[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also haeritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also ha[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also haritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also havritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also havritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also ha[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also haritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also h[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also hritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also ritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also lritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also lritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also loritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also loritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also looritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also looritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also lookritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also lookritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also look ritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also look ritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also look aritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also look aritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also look atritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also look atritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also look at ritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also look at ritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also look at[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also look atritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also look a[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also look aritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also look [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also look ritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also look[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also lookritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also loo[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also looritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also lo[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also loritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also l[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also lritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also ritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll also[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll alsoritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll als[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll alsritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll al[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll alritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll a[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll aritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll ritchie-youngs-computer:~/x/mayhem ritchiey$ # we'll[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'llritchie-youngs-computer:~/x/mayhem ritchiey$ # we'l[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'lritchie-youngs-computer:~/x/mayhem ritchiey$ # we'[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # we'ritchie-youngs-computer:~/x/mayhem ritchiey$ # we[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # weritchie-youngs-computer:~/x/mayhem ritchiey$ # w[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # writchie-youngs-computer:~/x/mayhem ritchiey$ # [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Britchie-youngs-computer:~/x/mayhem ritchiey$ # Britchie-youngs-computer:~/x/mayhem ritchiey$ # Beritchie-youngs-computer:~/x/mayhem ritchiey$ # Beritchie-youngs-computer:~/x/mayhem ritchiey$ # Becritchie-youngs-computer:~/x/mayhem ritchiey$ # Becritchie-youngs-computer:~/x/mayhem ritchiey$ # Becaritchie-youngs-computer:~/x/mayhem ritchiey$ # Becaritchie-youngs-computer:~/x/mayhem ritchiey$ # Becauritchie-youngs-computer:~/x/mayhem ritchiey$ # Becauritchie-youngs-computer:~/x/mayhem ritchiey$ # Becausritchie-youngs-computer:~/x/mayhem ritchiey$ # Becausritchie-youngs-computer:~/x/mayhem ritchiey$ # Becauseritchie-youngs-computer:~/x/mayhem ritchiey$ # Becauseritchie-youngs-computer:~/x/mayhem ritchiey$ # Because ritchie-youngs-computer:~/x/mayhem ritchiey$ # Because ritchie-youngs-computer:~/x/mayhem ritchiey$ # Because Lritchie-youngs-computer:~/x/mayhem ritchiey$ # Because Lritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAPritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAPritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP ritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP ritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP iritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP iritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP isritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP isritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is ritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is ritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is aritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is aritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a ritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a ritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a trritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a trritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a treritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a treritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a treeritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a treeritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree ritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree ritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree sritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree sritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree scritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree scritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree scrritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree scrritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree sc[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree scritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree s[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree sritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree stritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree stritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree strritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree strritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree struritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree struritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree strubritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree strubritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree stru[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree struritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree strucritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree strucritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree structritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree structritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree structuritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree structuritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree structurritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree structurritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree structureritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree structureritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree structure, w w we we wel wel we[K we we' we' we'l we'l we'll we'll we'll we'll we'll h we'll h we'll ha we'll ha we'll hav we'll hav we'll have we'll have we'll have we'll have we'll have t we'll have t we'll have to we'll have to we'll have to we'll have to we'll have to t we'll have to t we'll have to te we'll have to te we'll have to tel we'll have to tel we'll have to tell we'll have to tell we'll have to tell we'll have to tell we'll have to tell t we'll have to tell t we'll have to tell th we'll have to tell th we'll have to tell the we'll have to tell the we'll have to tell the we'll have to tell the we'll have to tell the t we'll have to tell the t we'll have to tell the tr we'll have to tell the tr we'll have to tell the tre we'll have to tell the tre we'll have to tell the tree we'll have to tell the tree we'll have to tell the tre[K we'll have to tell the tre we'll have to tell the tr[K we'll have to tell the tr we'll have to tell the t[K we'll have to tell the t we'll have to tell the [K we'll have to tell the we'll have to tell the[K we'll have to tell the we'll have to tell the we'll have to tell the we'll have to tell the[K we'll have to tell the we'll have to tell th[K we'll have to tell th we'll have to tell t[K we'll have to tell t we'll have to tell [K we'll have to tell we'll have to tell r we'll have to tell r we'll have to tell ru we'll have to tell ru we'll have to tell rub we'll have to tell rub we'll have to tell ruby we'll have to tell ruby we'll have to tell rubys we'll have to tell rubys we'll have to tell rubysy we'll have to tell rubysy we'll have to tell rubysyn we'll have to tell rubysyn we'll have to tell rubysync we'll have to tell rubysync we'll have to tell rubysync we'll have to tell rubysync we'll have to tell rubysync w we'll have to tell rubysync w we'll have to tell rubysync wh we'll have to tell rubysync wh we'll have to tell rubysync whe we'll have to tell rubysync whe we'll have to tell rubysync wher we'll have to tell rubysync wher we'll have to tell rubysync where we'll have to tell rubysync where we'll have to tell rubysync where we'll have to tell rubysync where we'll have to tell rubysync where t we'll have to tell rubysync where t we'll have to tell rubysync where to we'll have to tell rubysync where to we'll have to tell rubysync where to we'll have to tell rubysync where to we'll have to tell rubysync where to p we'll have to tell rubysync where to p we'll have to tell rubysync where to pl we'll have to tell rubysync where to pl we'll have to tell rubysync where to pla we'll have to tell rubysync where to pla we'll have to tell rubysync where to plac we'll have to tell rubysync where to plac we'll have to tell rubysync where to place we'll have to tell rubysync where to place we'll have to tell rubysync where to place we'll have to tell rubysync where to place we'll have to tell rubysync where to place i we'll have to tell rubysync where to place i we'll have to tell rubysync where to place in we'll have to tell rubysync where to place in we'll have to tell rubysync where to place in- we'll have to tell rubysync where to place in- we'll have to tell rubysync where to place in-c we'll have to tell rubysync where to place in-c we'll have to tell rubysync where to place in-co we'll have to tell rubysync where to place in-co we'll have to tell rubysync where to place in-com we'll have to tell rubysync where to place in-com we'll have to tell rubysync where to place in-comi we'll have to tell rubysync where to place in-comi we'll have to tell rubysync where to place in-comin we'll have to tell rubysync where to place in-comin we'll have to tell rubysync where to place in-coming we'll have to tell rubysync where to place in-coming we'll have to tell rubysync where to place in-coming we'll have to tell rubysync where to place in-coming we'll have to tell rubysync where to place in-coming[K we'll have to tell rubysync where to place in-coming we'll have to tell rubysync where to place in-comin[K we'll have to tell rubysync where to place in-comin we'll have to tell rubysync where to place in-comi[K we'll have to tell rubysync where to place in-comi we'll have to tell rubysync where to place in-com[K we'll have to tell rubysync where to place in-com we'll have to tell rubysync where to place in-co[K we'll have to tell rubysync where to place in-co we'll have to tell rubysync where to place in-c[K we'll have to tell rubysync where to place in-c we'll have to tell rubysync where to place in-[K we'll have to tell rubysync where to place in- we'll have to tell rubysync where to place in[K we'll have to tell rubysync where to place in we'll have to tell rubysync where to place i[K we'll have to tell rubysync where to place i we'll have to tell rubysync where to place [K we'll have to tell rubysync where to place we'll have to tell rubysync where to place n we'll have to tell rubysync where to place n we'll have to tell rubysync where to place ne we'll have to tell rubysync where to place ne we'll have to tell rubysync where to place new we'll have to tell rubysync where to place new we'll have to tell rubysync where to place new we'll have to tell rubysync where to place new we'll have to tell rubysync where to place new e we'll have to tell rubysync where to place new e we'll have to tell rubysync where to place new en we'll have to tell rubysync where to place new en we'll have to tell rubysync where to place new ent we'll have to tell rubysync where to place new ent we'll have to tell rubysync where to place new entr we'll have to tell rubysync where to place new entr we'll have to tell rubysync where to place new entri we'll have to tell rubysync where to place new entri we'll have to tell rubysync where to place new entrie we'll have to tell rubysync where to place new entrie we'll have to tell rubysync where to place new entries we'll have to tell rubysync where to place new entries we'll have to tell rubysync where to place new entries. we'll have to tell rubysync where to place new entries.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Writchie-youngs-computer:~/x/mayhem ritchiey$ # Writchie-youngs-computer:~/x/mayhem ritchiey$ # Weritchie-youngs-computer:~/x/mayhem ritchiey$ # Weritchie-youngs-computer:~/x/mayhem ritchiey$ # We ritchie-youngs-computer:~/x/mayhem ritchiey$ # We ritchie-youngs-computer:~/x/mayhem ritchiey$ # We dritchie-youngs-computer:~/x/mayhem ritchiey$ # We dritchie-youngs-computer:~/x/mayhem ritchiey$ # We doritchie-youngs-computer:~/x/mayhem ritchiey$ # We doritchie-youngs-computer:~/x/mayhem ritchiey$ # We do ritchie-youngs-computer:~/x/mayhem ritchiey$ # We do ritchie-youngs-computer:~/x/mayhem ritchiey$ # We do tritchie-youngs-computer:~/x/mayhem ritchiey$ # We do tritchie-youngs-computer:~/x/mayhem ritchiey$ # We do thritchie-youngs-computer:~/x/mayhem ritchiey$ # We do thritchie-youngs-computer:~/x/mayhem ritchiey$ # We do thiritchie-youngs-computer:~/x/mayhem ritchiey$ # We do thiritchie-youngs-computer:~/x/mayhem ritchiey$ # We do thisritchie-youngs-computer:~/x/mayhem ritchiey$ # We do thisritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this ritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this ritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this britchie-youngs-computer:~/x/mayhem ritchiey$ # We do this britchie-youngs-computer:~/x/mayhem ritchiey$ # We do this byritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this byritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by ritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by ritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by aritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by aritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by addritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by addritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by addiritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by addiritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by addinritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by addinritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by addingritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by addingritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding ritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding ritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding aritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding aritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding a ritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding a ritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding a pritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding a pritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding a plritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding a plritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding a plaritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding a plaritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding a placritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding a placritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding a placeritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding a placeritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding a placemritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding a placemritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding a placemeritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding a placemeritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding a placemenritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding a placemenritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding a placementritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding a placementritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding a placement rrrururulrulrulerulerule rule rule trule trule torule torule to rule to rule to trule to trule to thrule to thrule to therule to therule to the rule to the rule to the prule to the prule to the pirule to the pirule to the piprule to the piprule to the piperule to the piperule to the pipelrule to the pipelrule to the pipelirule to the pipelirule to the pipelinrule to the pipelinrule to the pipelinerule to the pipelinerule to the pipeline.rule to the pipeline.
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ critchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ caritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ catritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat ritchie-youngs-computer:~/x/mayhem ritchiey$ cat pritchie-youngs-computer:~/x/mayhem ritchiey$ cat pritchie-youngs-computer:~/x/mayhem ritchiey$ cat piritchie-youngs-computer:~/x/mayhem ritchiey$ cat piritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/ritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/ritchie-youngs-computer:~/x/mayhem ritchiey$ cat pipelines/hr_import_pipeline.rb
class HrImportPipeline < RubySync::Pipelines::BasePipeline
client :hr
vault :vault
# Remove any fields that you don't want to set in the client from the vault
#allow_out 'allow', 'these', 'fields', 'through'
# Remove any fields that you don't want to set in the vault from the client
allow_in 'id', 'first_name', 'last_name', 'skills'
# If the client and vault have different names for the same field, define the
# the mapping here. For example, if the vault has a field called "first name" and
# the client has a field called givenName you may put:
# map 'first name', 'givenName'
#
# You can also calculate the values for fields. For more info, see
# http://rubysync.org/docs/rubysync-transformations/
# "in" means going from client to vault
in_transform do
map 'cn', 'id'
map 'givenName', 'first_name'
map 'sn', 'last_name'
map('employeeType') { value_of('skills').split(':') }
drop_changes_to 'skills'
end
in_place do
"cn=#{source_path},ou=users,o=my-organization,dc=my-domain,dc=com"
end
# "out" means going from vault to client
out_transform do
#map 'id', 'vault_field'
#map 'first_name', 'vault_field'
#map 'last_name', 'vault_field'
#map 'skills', 'vault_field'
end
end
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Tritchie-youngs-computer:~/x/mayhem ritchiey$ # Tritchie-youngs-computer:~/x/mayhem ritchiey$ # Thritchie-youngs-computer:~/x/mayhem ritchiey$ # Thritchie-youngs-computer:~/x/mayhem ritchiey$ # Thiritchie-youngs-computer:~/x/mayhem ritchiey$ # Thiritchie-youngs-computer:~/x/mayhem ritchiey$ # Thisritchie-youngs-computer:~/x/mayhem ritchiey$ # Thisritchie-youngs-computer:~/x/mayhem ritchiey$ # This ritchie-youngs-computer:~/x/mayhem ritchiey$ # This ritchie-youngs-computer:~/x/mayhem ritchiey$ # This tritchie-youngs-computer:~/x/mayhem ritchiey$ # This tritchie-youngs-computer:~/x/mayhem ritchiey$ # This teritchie-youngs-computer:~/x/mayhem ritchiey$ # This teritchie-youngs-computer:~/x/mayhem ritchiey$ # This telritchie-youngs-computer:~/x/mayhem ritchiey$ # This telritchie-youngs-computer:~/x/mayhem ritchiey$ # This tellritchie-youngs-computer:~/x/mayhem ritchiey$ # This tellritchie-youngs-computer:~/x/mayhem ritchiey$ # This tellsritchie-youngs-computer:~/x/mayhem ritchiey$ # This tellsritchie-youngs-computer:~/x/mayhem ritchiey$ # This tells ritchie-youngs-computer:~/x/mayhem ritchiey$ # This tells ritchie-youngs-computer:~/x/mayhem ritchiey$ # This tells iritchie-youngs-computer:~/x/mayhem ritchiey$ # This tells iritchie-youngs-computer:~/x/mayhem ritchiey$ # This tells itritchie-youngs-computer:~/x/mayhem ritchiey$ # This tells itritchie-youngs-computer:~/x/mayhem ritchiey$ # This tells it ritchie-youngs-computer:~/x/mayhem ritchiey$ # This tells it ritchie-youngs-computer:~/x/mayhem ritchiey$ # This tells it tritchie-youngs-computer:~/x/mayhem ritchiey$ # This tells it tritchie-youngs-computer:~/x/mayhem ritchiey$ # This tells it [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # This tells it ritchie-youngs-computer:~/x/mayhem ritchiey$ # This tells it[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # This tells itritchie-youngs-computer:~/x/mayhem ritchiey$ # This tells i[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # This tells iritchie-youngs-computer:~/x/mayhem ritchiey$ # This tells [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # This tells ritchie-youngs-computer:~/x/mayhem ritchiey$ # This tells[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # This tellsritchie-youngs-computer:~/x/mayhem ritchiey$ # This tell[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # This tellritchie-youngs-computer:~/x/mayhem ritchiey$ # This tel[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # This telritchie-youngs-computer:~/x/mayhem ritchiey$ # This te[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # This teritchie-youngs-computer:~/x/mayhem ritchiey$ # This t[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # This tritchie-youngs-computer:~/x/mayhem ritchiey$ # This [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # This ritchie-youngs-computer:~/x/mayhem ritchiey$ # This[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Thisritchie-youngs-computer:~/x/mayhem ritchiey$ # Thi[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Thiritchie-youngs-computer:~/x/mayhem ritchiey$ # Th[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Thritchie-youngs-computer:~/x/mayhem ritchiey$ # T[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # Tritchie-youngs-computer:~/x/mayhem ritchiey$ # [Kritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # Lritchie-youngs-computer:~/x/mayhem ritchiey$ # Lritchie-youngs-computer:~/x/mayhem ritchiey$ # Leritchie-youngs-computer:~/x/mayhem ritchiey$ # Leritchie-youngs-computer:~/x/mayhem ritchiey$ # Letritchie-youngs-computer:~/x/mayhem ritchiey$ # Letritchie-youngs-computer:~/x/mayhem ritchiey$ # Letsritchie-youngs-computer:~/x/mayhem ritchiey$ # Letsritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets ritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets ritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets tritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets tritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets trritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets trritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets tryritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets tryritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets try ritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets try ritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets try iritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets try iritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets try itritchie-youngs-computer:~/x/mayhem ritchiey$ # Lets try it
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync onritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync onritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync onceritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync onceritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync onc[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync on[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync onritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync o[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync [Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyn[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysy[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubys[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ ruby[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rub[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ ru[Kritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ r[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ [Kritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ [23P(reverse-i-search)`':(reverse-i-search)`': (reverse-i-search)`': (reverse-i-search)`r': # Lets try it(reverse-i-search)`r': # Lets t(reverse-i-search)`r': # Lets t(reverse-i-search)`ru': # We do this by adding a placement rule to the pipeline. [A(reverse-i-search)`ru': # We do this by adding a placement (reverse-i-search)`ru': # We do this by adding a placement (reverse-i-search)`rub': # Because LDAP is a tree structure, we'll have to tell rrubysync where to place new entries.[A(reverse-i-search)`ruby': # Because LDAP is a tree structure, we'll have to tell [4hr[4l [A(reverse-i-search)`rubys': # Because LDAP is a tree structure, we'll have to telll[4h [4ll l [Aritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree structure, [4hwe'll have to tell[4l we'll have to tell we'll have to tell [Aritchie-youngs-computer:~/x/mayhem ritchiey$ # We do this by adding a placement rr[35Pule to the pipeline.rule to the pipeline.[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # Because LDAP is a tree structure, we'll have to tell rubysync where to place new entries. we'll have to tell rubysync where to place new entries.[Aritchie-youngs-computer:~/x/mayhem ritchiey$ ldapsearch -x -h localhost -D cn=Mannager,dc=my-domain,dc=com -w secret -b ou=users,o=my-organization,dc=my-domain,dcc=com cn=*c=com cn=*[Anager,dc=my-domain,dc=com -w secret cn=*[K
[K[Anager,dc=my-domain,dc=com -w secret cn=*nager,dc=my-domain,dc=com -w secret cn=*rnager,dc=my-domain,dc=com -w secret cn=*rnager,dc=my-domain,dc=com -w secret cn=*runager,dc=my-domain,dc=com -w secret cn=*runager,dc=my-domain,dc=com -w secret cn=*rubnager,dc=my-domain,dc=com -w secret cn=*rubnager,dc=my-domain,dc=com -w secret cn=*ru[Knager,dc=my-domain,dc=com -w secret cn=*runager,dc=my-domain,dc=com -w secret cn=*r[Knager,dc=my-domain,dc=com -w secret cn=*rnager,dc=my-domain,dc=com -w secret cn=*[Knager,dc=my-domain,dc=com -w secret cn=*nager,dc=my-domain,dc=com -w secret cn=*
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ rritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ ruritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysynritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysyncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync onritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync onritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync oncritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync onceritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync onceritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hrritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hrritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_iritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_iritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_imritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_imritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_impritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_impritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_imprritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_imprritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_improritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_improritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_improtritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_improtritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_impro[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_improritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_impr[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_imprritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_imp[Kritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_impritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_imporitchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_imporitchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_imporritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_imporritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_importritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_importritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -vritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -vritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3
Running HrImportPipeline pipeline once
Running HrImportPipeline 'in' pipeline once
HrImportPipeline(client): Started
HrImportPipeline(client): Scanning /Users/ritchiey/x/in for *.csv files...
HrImportPipeline(client): Stopped
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ #ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # ritchie-youngs-computer:~/x/mayhem ritchiey$ # oritchie-youngs-computer:~/x/mayhem ritchiey$ # oritchie-youngs-computer:~/x/mayhem ritchiey$ # ooritchie-youngs-computer:~/x/mayhem ritchiey$ # ooritchie-youngs-computer:~/x/mayhem ritchiey$ # oopritchie-youngs-computer:~/x/mayhem ritchiey$ # oopritchie-youngs-computer:~/x/mayhem ritchiey$ # oopdritchie-youngs-computer:~/x/mayhem ritchiey$ # oopdritchie-youngs-computer:~/x/mayhem ritchiey$ # oop[Kritchie-youngs-computer:~/x/mayhem ritchiey$ # oopritchie-youngs-computer:~/x/mayhem ritchiey$ # oopsritchie-youngs-computer:~/x/mayhem ritchiey$ # oops
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ [23P(reverse-i-search)`':(reverse-i-search)`': (reverse-i-search)`': (reverse-i-search)`m': rubysync once hr_import -v 3(reverse-i-search)`m': rubysync once hr_i(reverse-i-search)`m': rubysync once hr_i(reverse-i-search)`m[6Pv': mv ../more.csv ../in/(reverse-i-search)`mv': (reverse-i-search)`mv': (reverse-i-search)`mv': mv ../in/henchmen.csv.bak ../in/henchmen.csv(reverse-i-search)`mv': (reverse-i-search)`mv': ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ../in/hencchmen.csv[Aritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$
ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ ritchie-youngs-computer:~/x/mayhem ritchiey$ mv ../in/henchmen.csv.bak ../in/hencchmen.csvchmen.csv[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # oops[K
[K[Aritchie-youngs-computer:~/x/mayhem ritchiey$ # oopsritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3ritchie-youngs-computer:~/x/mayhem ritchiey$ rubysync once hr_import -v 3
Running HrImportPipeline pipeline once
Running HrImportPipeline 'in' pipeline once
HrImportPipeline(client): Started
HrImportPipeline(client): Scanning /Users/ritchiey/x/in for *.csv files...
HrImportPipeline(client): Processing 'henchmen.csv'
No source_transform(event) method, continuing
Processing incoming modify event (HrImportPipeline(client) => HrImportPipeline(vault)) bobby
Performing in_filter
Performing in_transform
No associated entry in vault for modify event. Converting to add
Converting 'modify' event to add
Default matching rule - source path exists on client?
Create allowed through default rule
Performing in_place
Create on vault allowed. Placing at cn=bobby,ou=users,o=my-organization,dc=my-domain,dc=com
Adding 'cn=bobby,ou=users,o=my-organization,dc=my-domain,dc=com' to 'HrImportPipeline(vault)'
HrImportPipeline(vault): Processing command: HrImportPipeline(vault): Association already in use. Add failing.
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/connector_event_processing.rb:41:in `perform_add'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/connector_event_processing.rb:26:in `process'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:239:in `in_handler'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/util/utilities.rb:57:in `with_rescue'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:239:in `in_handler'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:163:in `run_in_once'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/base_connector.rb:151:in `start'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/csv_file_connector.rb:49:in `each_file_change'
/opt/local/lib/ruby/1.8/csv.rb:312:in `open_reader'
/opt/local/lib/ruby/1.8/csv.rb:532:in `parse'
/opt/local/lib/ruby/1.8/csv.rb:560:in `each'
/opt/local/lib/ruby/1.8/csv.rb:531:in `parse'
/opt/local/lib/ruby/1.8/csv.rb:311:in `open_reader'
/opt/local/lib/ruby/1.8/csv.rb:85:in `open'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/csv_file_connector.rb:33:in `each_file_change'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/file_connector.rb:39:in `each_change'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/file_connector.rb:37:in `glob'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/file_connector.rb:37:in `each_change'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/file_connector.rb:36:in `chdir'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/file_connector.rb:36:in `each_change'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/base_connector.rb:142:in `start'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:163:in `run_in_once'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:143:in `run_once'
/Users/ritchiey/Projects/rubysync/bin/rubysync:109:in `once'
/opt/local/lib/ruby/gems/1.8/gems/simpleconsole-0.1.1/lib/controller.rb:84:in `send'
/opt/local/lib/ruby/gems/1.8/gems/simpleconsole-0.1.1/lib/controller.rb:84:in `execute_action'
/opt/local/lib/ruby/gems/1.8/gems/simpleconsole-0.1.1/lib/application.rb:42:in `run'
/Users/ritchiey/Projects/rubysync/bin/rubysync:335
---
No source_transform(event) method, continuing
Processing incoming modify event (HrImportPipeline(client) => HrImportPipeline(vault)) tt
Performing in_filter
Performing in_transform
No associated entry in vault for modify event. Converting to add
Converting 'modify' event to add
Default matching rule - source path exists on client?
Create allowed through default rule
Performing in_place
Create on vault allowed. Placing at cn=tt,ou=users,o=my-organization,dc=my-domain,dc=com
Adding 'cn=tt,ou=users,o=my-organization,dc=my-domain,dc=com' to 'HrImportPipeline(vault)'
HrImportPipeline(vault): Processing command: HrImportPipeline(vault): Association already in use. Add failing.
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/connector_event_processing.rb:41:in `perform_add'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/connector_event_processing.rb:26:in `process'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:239:in `in_handler'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/util/utilities.rb:57:in `with_rescue'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:239:in `in_handler'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/pipelines/base_pipeline.rb:163:in `run_in_once'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/base_connector.rb:151:in `start'
/Users/ritchiey/Projects/rubysync/bin/../lib/ruby_sync/connectors/csv_file_connector.rb:49:in `each_file_change'
/opt/local/lib/ruby/1.8/csv.rb:312:in `open_reader'
/opt/local/lib/ruby/1.8/csv.rb:532:in `parse'
/opt/local/lib/ruby/1.8/csv.rb:560:in `each'