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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
|
2012-02-29 10:55:46 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-02-29 10:55:46 -- Nicks #hansel: [benbeltran minardi zeljko]
2012-02-29 10:55:46 -- Channel #hansel: 3 nicks (0 ops, 0 halfops, 0 voices, 3 normals)
2012-02-29 10:55:46 -- Channel created on Sun, 26 Feb 2012 21:14:57
2012-02-29 15:12:39 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-02-29 15:12:39 -- Nicks #hansel: [benbeltran minardi zeljko]
2012-02-29 15:12:39 -- Channel #hansel: 3 nicks (0 ops, 0 halfops, 0 voices, 3 normals)
2012-02-29 15:12:39 -- Notice(zelazny.freenode.net): [freenode-info] why register and identify? your IRC nick is how people know you. http://freenode.net/faq.shtml#nicksetup
2012-02-29 15:12:39 -- Channel created on Sun, 26 Feb 2012 21:14:57
2012-02-29 15:13:22 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-02-29 15:13:22 -- Nicks #hansel: [benbeltran minardi zeljko]
2012-02-29 15:13:22 -- Channel #hansel: 3 nicks (0 ops, 0 halfops, 0 voices, 3 normals)
2012-02-29 15:13:22 -- Channel created on Sun, 26 Feb 2012 21:14:57
2012-02-29 17:05:01 zeljko added ensure to begin/rescue/end block to make sure the browser is closed and video recording is stopped
2012-02-29 17:05:07 zeljko https://github.com/freshout-dev/hansel-gretel/commit/5843fdd0f2e132836068ef60faa84f7d91f0208c
2012-02-29 22:10:12 irc: disconnected from server
2012-02-29 22:10:36 --> benbeltran (~benbeltra@187.146.47.127) has joined #hansel
2012-02-29 22:10:36 -- Nicks #hansel: [benbeltran minardi zeljko]
2012-02-29 22:10:36 -- Channel #hansel: 3 nicks (0 ops, 0 halfops, 0 voices, 3 normals)
2012-02-29 22:10:37 -- Channel created on Sun, 26 Feb 2012 21:14:57
2012-03-01 00:07:26 irc: disconnected from server
2012-03-01 00:07:51 --> benbeltran (~benbeltra@187.146.47.127) has joined #hansel
2012-03-01 00:07:51 -- Nicks #hansel: [benbeltran minardi zeljko]
2012-03-01 00:07:51 -- Channel #hansel: 3 nicks (0 ops, 0 halfops, 0 voices, 3 normals)
2012-03-01 00:07:52 -- Channel created on Sun, 26 Feb 2012 21:14:57
2012-03-01 08:53:25 irc: disconnected from server
2012-03-01 08:53:39 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-03-01 08:53:40 -- Nicks #hansel: [benbeltran minardi zeljko]
2012-03-01 08:53:40 -- Channel #hansel: 3 nicks (0 ops, 0 halfops, 0 voices, 3 normals)
2012-03-01 08:53:40 -- Channel created on Sun, 26 Feb 2012 21:14:57
2012-03-01 12:51:23 --> enzo_ (u5698@gateway/web/irccloud.com/x-oxfitdvnfqoomhkq) has joined #hansel
2012-03-01 12:51:29 enzo_ yehi
2012-03-01 14:07:43 zeljko I am not sure why we get better results without scrolling
2012-03-01 14:07:44 zeljko https://github.com/freshout-dev/hansel-gretel/blob/ginger/automation/run.txt
2012-03-01 14:16:25 zeljko moved setup methods outside of Headless.ly block
2012-03-01 14:16:29 zeljko https://github.com/freshout-dev/hansel-gretel/commit/bb745f29e287af0ca1824601f2ac8cfb8c769df9
2012-03-01 16:12:04 enzo_ hey
2012-03-01 16:24:13 zeljko found the problem, we lost "return" in execute_script, that is why it is returning nil all the time
2012-03-01 16:24:14 zeljko will fix
2012-03-01 16:50:24 enzo_ ok
2012-03-01 19:08:37 irc: disconnected from server
2012-03-01 22:00:49 --> benbeltran (~benbeltra@187.146.46.64) has joined #hansel
2012-03-01 22:00:49 -- Nicks #hansel: [benbeltran enzo_ minardi zeljko]
2012-03-01 22:00:49 -- Channel #hansel: 4 nicks (0 ops, 0 halfops, 0 voices, 4 normals)
2012-03-01 22:00:50 -- Channel created on Sun, 26 Feb 2012 21:14:57
2012-03-02 01:04:46 irc: disconnected from server
2012-03-02 01:15:28 --> benbeltran (~benbeltra@187.146.46.64) has joined #hansel
2012-03-02 01:15:28 -- Nicks #hansel: [benbeltran enzo_ minardi zeljko]
2012-03-02 01:15:28 -- Channel #hansel: 4 nicks (0 ops, 0 halfops, 0 voices, 4 normals)
2012-03-02 01:15:29 -- Channel created on Sun, 26 Feb 2012 21:14:57
2012-03-02 09:23:54 irc: disconnected from server
2012-03-02 09:24:09 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-03-02 09:24:09 -- Nicks #hansel: [benbeltran enzo_ minardi zeljko]
2012-03-02 09:24:09 -- Channel #hansel: 4 nicks (0 ops, 0 halfops, 0 voices, 4 normals)
2012-03-02 09:24:10 -- Channel created on Sun, 26 Feb 2012 21:14:57
2012-03-02 10:37:38 --> edgarjs (~edgarjs@187.163.28.116) has joined #hansel
2012-03-02 11:19:56 --> FreshBot (bba31c74@gateway/web/freenode/ip.187.163.28.116) has joined #hansel
2012-03-02 11:21:08 <-- FreshBot (bba31c74@gateway/web/freenode/ip.187.163.28.116) has quit (Client Quit)
2012-03-02 11:55:24 zeljko bug - fix NoMethodError: undefined method `path_to_css' for Jobs::Automator:Class
2012-03-02 11:55:29 zeljko https://github.com/freshout-dev/hansel-gretel/commit/c6bb75620de79d03bedaa9842de01532c4a1b9ac
2012-03-02 12:21:16 edgarjs http://stackoverflow.com/questions/1264210/does-mac-x11-have-the-xtest-extension
2012-03-02 12:21:43 edgarjs that fix the error on mac for xdotools
2012-03-02 12:31:21 zeljko great
2012-03-02 12:31:25 zeljko you got it working?
2012-03-02 12:33:12 edgarjs yes
2012-03-02 12:36:06 edgarjs actually I get this message: "Defaulting to search window name, class, and classname"
2012-03-02 12:36:10 edgarjs but don't know if it's normal
2012-03-02 12:36:14 zeljko will try to make it work on my machine
2012-03-02 12:36:17 edgarjs when running `xdotool search --onlyvisible "firefox" windowsize %@ 5000 10000`
2012-03-02 12:36:22 edgarjs and it doesn't resize the window
2012-03-02 12:36:23 zeljko yes, I get the same message on linux
2012-03-02 12:36:28 edgarjs ah ok
2012-03-02 12:36:32 zeljko but it resizes the window
2012-03-02 12:40:50 zeljko does this move the mouse?
2012-03-02 12:40:51 zeljko xdotool mousemove 1000 1000
2012-03-02 12:41:47 zeljko this line moves the mouse for me on linux, but not on mac
2012-03-02 12:43:17 zeljko got xdotool working on mac! :)
2012-03-02 12:43:58 zeljko not sure if you have to execute "defaults write org.x.X11..." _while_ the X is running
2012-03-02 12:44:56 zeljko no, it is not working
2012-03-02 12:44:58 edgarjs it doesn't move it
2012-03-02 12:45:26 zeljko just tried a few more times, xdotool does not move the mouse on mac
2012-03-02 12:45:39 zeljko giving up for now, since I got it working on ubuntu
2012-03-02 12:46:01 zeljko I can copy my ubuntu vm to your machine
2012-03-02 12:55:59 zeljko this is link to vmware fusion
2012-03-02 12:56:00 zeljko http://www.vmware.com/products/fusion/overview.html
2012-03-02 12:56:22 zeljko the latest version is 4, but I have 3
2012-03-02 12:56:29 edgarjs thanks
2012-03-02 12:56:41 zeljko so if you install 4, it will probably just ask to upgrade vmware tools
2012-03-02 12:56:51 zeljko but it should work fine
2012-03-02 12:57:07 zeljko even without the update, but it will work better if you update
2012-03-02 13:02:36 zeljko ok, just noticed that I have wrong path to folders in the VM
2012-03-02 13:02:49 zeljko just change this in Rake file
2012-03-02 13:02:50 zeljko path_to_folders = "/home/zeljko/Desktop"
2012-03-02 13:03:12 zeljko and it should work fine
2012-03-02 13:06:18 zeljko by the way, if anybody wants irccloud invite, let me know
2012-03-02 13:06:57 zeljko it is web based irc client, good feature is that it is always connected, so you see all traffic, even when you are offline
2012-03-02 13:08:38 edgarjs oh it looks good, I'd like an invite if you have
2012-03-02 13:12:05 zeljko sure, will send right now
2012-03-02 13:12:34 zeljko sent to edgar.js@freshout.us
2012-03-02 13:22:43 edgarjs thank you
2012-03-02 13:52:30 benbeltran So!
2012-03-02 13:52:32 benbeltran yeah.
2012-03-02 13:52:46 zeljko back to #hansel
2012-03-02 13:52:53 edgarjs yes, if it's too buggy on chrome then use firefox
2012-03-02 13:53:09 edgarjs so what % is reproduced in firefox now?
2012-03-02 13:53:17 benbeltran Yeah. We used chrome because navid asked us why we weren't doing that, and we didn't have an answer.
2012-03-02 13:53:28 benbeltran Locally, I seriously get roughly 50%, but I don't have stats locally
2012-03-02 13:53:38 benbeltran Except sometimes it's reallllyyyy slow
2012-03-02 13:53:44 benbeltran which in the server seems to be a problem
2012-03-02 13:53:58 benbeltran I'll monitor the process to see if it's hogging resources, though with the instance type I doubt it
2012-03-02 13:54:11 benbeltran I'll see if it's missing any dependencies or something like that
2012-03-02 13:54:16 benbeltran something that makes it different
2012-03-02 13:54:18 zeljko I will try to fix mousemoves and scrolling today
2012-03-02 13:54:24 zeljko working on that right now
2012-03-02 13:54:39 benbeltran Edgar, you've gotten the same results right? Logs that have failed upstream work here?
2012-03-02 13:55:35 benbeltran I'm going out to eat. Buuuut.
2012-03-02 13:55:45 benbeltran I'll see if I can reinstall firefox or do something to fix it when I come back
2012-03-02 13:55:50 edgarjs the only one I've found to fail is the location_once_scrolled_into_view one
2012-03-02 13:56:14 benbeltran Log 604 killed my VM :/
2012-03-02 13:56:26 benbeltran every command uses location_once_scrolled_into_view I think
2012-03-02 13:56:49 benbeltran Also. Zeljko got some interesting stats, in mideastunes for example, more logs are reproduced without scrolling
2012-03-02 13:57:17 benbeltran but I think this only applies to this case where the lazy loading grows with the site
2012-03-02 13:57:19 benbeltran so it's still important
2012-03-02 13:57:36 benbeltran Also, food.
2012-03-02 13:57:57 benbeltran the difference is small though.
2012-03-02 13:58:21 benbeltran So, maybe we could add some logic to only use scrolling if there's a click event that fails preceded by scrolling.
2012-03-02 13:58:27 benbeltran That way we only scroll if necessary
2012-03-02 13:59:12 edgarjs right
2012-03-02 13:59:15 benbeltran Err. be right back
2012-03-02 13:59:20 benbeltran foodstuffs
2012-03-02 14:29:48 zeljko https://github.com/freshout-dev/hansel-gretel/blob/ginger/automation/run.txt
2012-03-02 14:29:56 zeljko this is the link to the test I did yesterday
2012-03-02 14:30:19 zeljko 8 randomly chosen logs, more of the files raised exception with scrolling, than without
2012-03-02 14:31:42 zeljko benbeltran: I added #location_once_scrolled_into_view instead of #location because I have noticed that the former one returns correct coordinates, #location seemed to return coordinates _before_ scrolling to element
2012-03-02 14:31:54 zeljko you have noticed that it causes problems?
2012-03-02 15:28:13 zeljko for scrolling on mideastunes firefox reports x=1
2012-03-02 15:28:19 zeljko I guess that is the problem
2012-03-02 15:28:36 zeljko it probably moves the mouse to browser chrome
2012-03-02 15:28:50 zeljko will try to move it to the middle of the element and see if it helps
2012-03-02 16:17:04 zeljko ok, moving to the middle of the element does not help
2012-03-02 16:17:19 <-- edgarjs (~edgarjs@187.163.28.116) has quit (Remote host closed the connection)
2012-03-02 16:18:03 zeljko because after the first scroll firefox returns the new element position, but the element is not visible then
2012-03-02 16:18:17 zeljko will probably have to scroll the component
2012-03-02 16:25:58 zeljko ok, if we assume that scrolling the component is the thing to do, then scrolling works just fine :)
2012-03-02 16:26:05 zeljko (at least on mideastunes)
2012-03-02 16:26:12 zeljko will test with a few logs
2012-03-02 16:27:25 zeljko but now it scrolls too much, it has scrolled way down, but nothing is happening for a long time, I guess it is still trying to scroll, but there is no more new content
2012-03-02 16:27:35 zeljko so it looks like nothing is happening
2012-03-02 16:30:02 zeljko just checked, it is still scrolling
2012-03-02 16:30:17 zeljko will adjust the amount scrolled, so it does not scroll to the end too soon
2012-03-02 16:32:48 --> edgarjs (~edgarjs@187.163.28.116) has joined #hansel
2012-03-02 16:36:08 zeljko it is still scrolling :)
2012-03-02 16:36:17 zeljko literally 5-10 minutes
2012-03-02 16:46:40 zeljko so, looks like we have enough scrolling even if I completely remove --repeat
2012-03-02 16:46:55 zeljko so it scrolls 1 every time
2012-03-02 17:30:17 zeljko pushed the scrolling change
2012-03-02 17:30:39 zeljko https://github.com/freshout-dev/hansel-gretel/commit/2f6aa2028147454269966e457f876c7e27eeb2b2
2012-03-02 18:10:02 <-- edgarjs (~edgarjs@187.163.28.116) has quit (Remote host closed the connection)
2012-03-02 18:36:25 --> edgarjs (u5782@gateway/web/irccloud.com/x-eocxryeiusvdrszo) has joined #hansel
2012-03-05 10:43:21 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-03-05 10:43:21 -- Nicks #hansel: [benbeltran enzo_ minardi zeljko]
2012-03-05 10:43:21 -- Channel #hansel: 4 nicks (0 ops, 0 halfops, 0 voices, 4 normals)
2012-03-05 10:43:21 -- Channel created on Sun, 26 Feb 2012 21:14:57
2012-03-05 10:53:22 minardi https://www.assembla.com/spaces/hansel/tickets/1232
2012-03-05 11:39:39 --> LordEnzo (~Enzo@187.163.28.116) has joined #hansel
2012-03-05 11:40:44 LordEnzo whois enzo_
2012-03-05 11:42:55 LordEnzo hey
2012-03-05 14:02:39 irc: disconnected from server
2012-03-05 14:02:57 --> benbeltran1 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-05 14:02:57 -- Nicks #hansel: [benbeltran benbeltran1 enzo_ LordEnzo minardi zeljko]
2012-03-05 14:02:57 -- Channel #hansel: 6 nicks (0 ops, 0 halfops, 0 voices, 6 normals)
2012-03-05 14:02:59 -- Channel created on Sun, 26 Feb 2012 21:14:57
2012-03-05 14:05:34 <-- benbeltran (~benbeltra@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-03-05 14:06:05 <-- LordEnzo (~Enzo@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-03-05 14:08:46 --> LordEnzo (~Enzo@187.163.28.116) has joined #hansel
2012-03-05 15:49:12 LordEnzo freshbot: chuck norris --random
2012-03-05 15:49:18 LordEnzo freshbot: chuck norris -random
2012-03-05 15:49:24 LordEnzo freshbot: chuck norris --random
2012-03-05 15:49:31 LordEnzo freshbot, help
2012-03-05 15:49:34 LordEnzo :(
2012-03-05 15:49:35 LordEnzo :'(
2012-03-05 15:59:25 --> edgarjs (~edgarjs@187.163.28.116) has joined #hansel
2012-03-05 18:13:55 <-- edgarjs (~edgarjs@187.163.28.116) has quit (Remote host closed the connection)
2012-03-05 20:58:18 irc: disconnected from server
2012-03-06 08:51:34 --> benbeltran1 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-06 08:51:34 -- Nicks #hansel: [benbeltran1 LordEnzo minardi zeljko]
2012-03-06 08:51:34 -- Channel #hansel: 4 nicks (0 ops, 0 halfops, 0 voices, 4 normals)
2012-03-06 08:51:37 -- Channel created on Sun, 26 Feb 2012 21:14:57
2012-03-06 09:38:55 <-- LordEnzo (~Enzo@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-03-06 09:41:33 --> LordEnzo (~Enzo@187.163.28.116) has joined #hansel
2012-03-06 10:57:55 -- You are now known as benbeltran
2012-03-06 11:41:33 --> edgarjs (~edgarjs@187.163.28.116) has joined #hansel
2012-03-06 16:08:29 <-- edgarjs (~edgarjs@187.163.28.116) has left #hansel
2012-03-06 16:14:59 benbeltran oye edgar... tienes alguna idea de que pueda ser?
2012-03-06 16:15:11 benbeltran estoy realmente anonadado don edgarjs
2012-03-06 17:20:52 --> edgarjs (~edgarjs@187.163.28.116) has joined #hansel
2012-03-06 17:32:06 <-- edgarjs (~edgarjs@187.163.28.116) has quit (Remote host closed the connection)
2012-03-06 18:48:18 irc: disconnected from server
2012-03-06 18:48:40 --> benbeltran1 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-06 18:48:40 -- Nicks #hansel: [benbeltran benbeltran1 LordEnzo minardi zeljko]
2012-03-06 18:48:40 -- Channel #hansel: 5 nicks (0 ops, 0 halfops, 0 voices, 5 normals)
2012-03-06 18:48:44 -- Channel created on Sun, 26 Feb 2012 21:14:57
2012-03-06 18:51:14 <-- benbeltran (~benbeltra@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-03-06 19:27:54 irc: disconnected from server
2012-03-07 09:18:43 --> benbeltran1 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-07 09:18:43 -- Nicks #hansel: [benbeltran1 LordEnzo minardi zeljko]
2012-03-07 09:18:43 -- Channel #hansel: 4 nicks (0 ops, 0 halfops, 0 voices, 4 normals)
2012-03-07 09:18:43 -- Notice(pratchett.freenode.net): [freenode-info] help freenode weed out clonebots -- please register your IRC nick and auto-identify: http://freenode.net/faq.shtml#nicksetup
2012-03-07 09:18:46 -- Channel created on Sun, 26 Feb 2012 21:14:57
2012-03-07 09:31:17 --> edgarjs (~edgarjs@187.163.28.116) has joined #hansel
2012-03-07 09:51:13 LordEnzo freshbot, help
2012-03-07 09:53:04 <-- edgarjs (~edgarjs@187.163.28.116) has quit
2012-03-07 09:54:02 --> edgarjs (u5782@gateway/web/irccloud.com/x-nlqpcvtvcwnbjpld) has joined #hansel
2012-03-07 09:54:46 <-- edgarjs (u5782@gateway/web/irccloud.com/x-nlqpcvtvcwnbjpld) has quit (Client Quit)
2012-03-07 09:55:13 -- You are now known as benbeltran
2012-03-07 09:55:37 LordEnzo ñ
2012-03-07 09:55:50 LordEnzo áéíóú
2012-03-07 09:55:53 --> edgarjs (~edgarjs@187.163.28.116) has joined #hansel
2012-03-07 10:31:45 <-- minardi (u5702@gateway/web/irccloud.com/x-wflnzvlhxsvpyowl) has quit
2012-03-07 10:31:55 --> minardi (u5702@gateway/web/irccloud.com/x-zuntdnpbjdinviqz) has joined #hansel
2012-03-07 10:32:20 LordEnzo freshbot, help
2012-03-07 10:32:25 LordEnzo freshbot! :(
2012-03-07 10:32:33 <-- minardi (u5702@gateway/web/irccloud.com/x-zuntdnpbjdinviqz) has left #hansel
2012-03-07 10:44:09 <-- LordEnzo (~Enzo@187.163.28.116) has left #hansel ("WeeChat 0.3.6")
2012-03-07 18:10:31 <-- edgarjs (~edgarjs@187.163.28.116) has quit (Remote host closed the connection)
2012-03-08 12:16:30 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-03-08 12:16:30 -- Nicks #hansel: [benbeltran edgarjs zeljko]
2012-03-08 12:16:30 -- Channel #hansel: 3 nicks (0 ops, 0 halfops, 0 voices, 3 normals)
2012-03-08 12:16:31 -- Channel created on Sun, 26 Feb 2012 21:14:57
2012-03-08 15:47:58 --> edgarjs_ (~edgarjs@207.204.242.60) has joined #hansel
2012-03-08 15:49:45 <-- edgarjs (~edgarjs@187.163.28.116) has quit (Read error: Operation timed out)
2012-03-08 17:35:15 --> edgarjs (~edgarjs@187.163.28.116) has joined #hansel
2012-03-08 17:38:46 <-- edgarjs_ (~edgarjs@207.204.242.60) has quit (Ping timeout: 276 seconds)
2012-03-08 17:56:17 <-- edgarjs (~edgarjs@187.163.28.116) has quit (Remote host closed the connection)
2012-03-08 21:59:04 irc: disconnected from server
2012-03-09 09:23:15 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-03-09 09:23:15 -- Nicks #hansel: [benbeltran edgarjs zeljko]
2012-03-09 09:23:15 -- Channel #hansel: 3 nicks (0 ops, 0 halfops, 0 voices, 3 normals)
2012-03-09 09:23:20 -- Channel created on Sun, 26 Feb 2012 21:14:57
2012-03-09 09:44:54 <-- zeljko (u4950@gateway/web/irccloud.com/x-gqbuwjaxjyfpzkcy) has quit (Quit: Connection closed for inactivity)
2012-03-09 18:01:56 <-- edgarjs (~edgarjs@187.163.28.116) has quit (Remote host closed the connection)
2012-03-09 18:19:53 irc: disconnected from server
2012-03-12 09:39:01 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-03-12 09:39:01 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-03-12 09:39:01 -- Nicks #hansel: [@benbeltran]
2012-03-12 09:39:01 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-12 09:39:03 -- Channel created on Mon, 12 Mar 2012 09:39:01
2012-03-12 11:17:00 --> zeljko (u4950@gateway/web/irccloud.com/x-ctrkflpzywdqkcyp) has joined #hansel
2012-03-12 11:37:58 <-- zeljko (u4950@gateway/web/irccloud.com/x-ctrkflpzywdqkcyp) has left #hansel
2012-03-12 15:38:36 --> edgarjs (~edgarjs@187.163.28.116) has joined #hansel
2012-03-12 17:30:04 <-- edgarjs (~edgarjs@187.163.28.116) has quit (Read error: Connection reset by peer)
2012-03-12 17:30:32 --> edgarjs (~edgarjs@187.163.28.116) has joined #hansel
2012-03-12 18:05:29 <-- edgarjs (~edgarjs@187.163.28.116) has quit (Remote host closed the connection)
2012-03-12 18:10:55 irc: disconnected from server
2012-03-12 18:11:10 --> benbeltran1 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-12 18:11:10 -- Nicks #hansel: [@benbeltran benbeltran1]
2012-03-12 18:11:10 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-03-12 18:11:18 -- Channel created on Mon, 12 Mar 2012 09:39:01
2012-03-12 18:13:12 <-- benbeltran (~benbeltra@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-03-13 08:49:42 irc: disconnected from server
2012-03-13 08:49:57 --> benbeltran1 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-13 08:49:57 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-03-13 08:49:57 -- Nicks #hansel: [@benbeltran1]
2012-03-13 08:49:57 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-13 08:50:05 -- Channel created on Tue, 13 Mar 2012 08:49:55
2012-03-13 09:05:38 --> edgarjs (~edgarjs@187.163.28.116) has joined #hansel
2012-03-13 09:17:14 irc: disconnected from server
2012-03-13 09:17:51 --> benbeltran2 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-13 09:17:51 -- Nicks #hansel: [@benbeltran1 benbeltran2 edgarjs]
2012-03-13 09:17:51 -- Channel #hansel: 3 nicks (1 ops, 0 halfops, 0 voices, 2 normals)
2012-03-13 09:17:59 -- Channel created on Tue, 13 Mar 2012 08:49:55
2012-03-13 09:19:58 <-- benbeltran1 (~benbeltra@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-03-13 09:21:25 irc: disconnected from server
2012-03-13 09:21:49 --> benbeltran3 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-13 09:21:49 -- Nicks #hansel: [benbeltran2 benbeltran3]
2012-03-13 09:21:49 -- Channel #hansel: 2 nicks (0 ops, 0 halfops, 0 voices, 2 normals)
2012-03-13 09:21:57 -- Channel created on Tue, 13 Mar 2012 08:49:55
2012-03-13 09:22:06 -- You are now known as benbeltran
2012-03-13 09:24:14 <-- benbeltran2 (~benbeltra@187.163.28.116) has quit (Ping timeout: 246 seconds)
2012-03-13 09:53:14 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-03-13 09:53:14 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-03-13 09:53:14 -- Nicks #hansel: [@benbeltran]
2012-03-13 09:53:14 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-13 09:53:16 -- Channel created on Tue, 13 Mar 2012 09:53:14
2012-03-13 18:07:32 irc: disconnected from server
2012-03-13 18:07:51 --> benbeltran1 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-13 18:07:51 -- Nicks #hansel: [@benbeltran benbeltran1]
2012-03-13 18:07:51 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-03-13 18:08:00 -- Channel created on Tue, 13 Mar 2012 09:53:14
2012-03-13 18:38:20 irc: disconnected from server
2012-03-14 09:18:01 --> benbeltran1 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-14 09:18:02 -- Nicks #hansel: [@edgarjs benbeltran1]
2012-03-14 09:18:02 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-03-14 09:18:10 -- Channel created on Wed, 14 Mar 2012 09:17:46
2012-03-14 14:02:21 irc: disconnected from server
2012-03-14 14:04:37 --> benbeltran2 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-14 14:04:37 -- Nicks #hansel: [@edgarjs benbeltran1 benbeltran2 edgarjs_]
2012-03-14 14:04:37 -- Channel #hansel: 4 nicks (1 ops, 0 halfops, 0 voices, 3 normals)
2012-03-14 14:04:45 -- Channel created on Wed, 14 Mar 2012 09:17:46
2012-03-14 14:05:07 <-- benbeltran1 (~benbeltra@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-03-14 14:05:53 <-- edgarjs (~edgarjs@187.163.28.116) has quit (Ping timeout: 246 seconds)
2012-03-14 14:51:00 --> edgarjs (~edgarjs@187.163.28.116) has joined #hansel
2012-03-14 14:52:49 <-- edgarjs_ (~edgarjs@187.163.28.116) has quit (Read error: Operation timed out)
2012-03-14 15:23:56 <-- edgarjs (~edgarjs@187.163.28.116) has quit (Remote host closed the connection)
2012-03-14 15:24:28 --> edgarjs (~edgarjs@187.163.28.116) has joined #hansel
2012-03-14 17:51:43 -- You are now known as benbeltran
2012-03-14 18:02:40 <-- edgarjs (~edgarjs@187.163.28.116) has quit (Remote host closed the connection)
2012-03-14 18:30:24 irc: disconnected from server
2012-03-15 09:22:25 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-03-15 09:22:25 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-03-15 09:22:25 -- Nicks #hansel: [@benbeltran]
2012-03-15 09:22:25 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-15 09:22:33 -- Channel created on Thu, 15 Mar 2012 09:22:25
2012-03-15 09:26:58 --> edgarjs (~edgarjs@187.163.28.116) has joined #hansel
2012-03-15 17:59:15 <-- edgarjs (~edgarjs@187.163.28.116) has quit (Remote host closed the connection)
2012-03-15 18:35:41 irc: disconnected from server
2012-03-15 18:35:58 --> benbeltran1 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-15 18:35:58 -- Nicks #hansel: [@benbeltran benbeltran1]
2012-03-15 18:35:58 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-03-15 18:36:06 -- Channel created on Thu, 15 Mar 2012 09:22:25
2012-03-15 18:38:54 <-- benbeltran (~benbeltra@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-03-15 21:23:41 irc: disconnected from server
2012-03-16 09:14:11 --> benbeltran1 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-16 09:14:11 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-03-16 09:14:11 -- Nicks #hansel: [@benbeltran1]
2012-03-16 09:14:11 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-16 09:14:19 -- Channel created on Fri, 16 Mar 2012 09:14:11
2012-03-16 09:19:47 --> edgarjs (~edgarjs@187.163.28.116) has joined #hansel
2012-03-16 10:00:31 -- You are now known as benbeltran
2012-03-16 11:02:27 irc: disconnected from server
2012-03-16 11:03:32 --> benbeltran1 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-16 11:03:32 -- Nicks #hansel: [@benbeltran benbeltran1 edgarjs edgarjs_]
2012-03-16 11:03:32 -- Channel #hansel: 4 nicks (1 ops, 0 halfops, 0 voices, 3 normals)
2012-03-16 11:03:40 -- Channel created on Fri, 16 Mar 2012 09:14:11
2012-03-16 11:05:13 <-- benbeltran (~benbeltra@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-03-16 11:06:09 <-- edgarjs (~edgarjs@187.163.28.116) has quit (Ping timeout: 246 seconds)
2012-03-16 11:45:20 -- You are now known as benbeltran
2012-03-16 11:57:35 <-- edgarjs_ (~edgarjs@187.163.28.116) has quit (Remote host closed the connection)
2012-03-16 11:57:47 --> edgarjs (~edgarjs@187.163.28.116) has joined #hansel
2012-03-16 15:32:49 irc: disconnected from server
2012-03-16 15:33:10 --> benbeltran1 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-16 15:33:10 -- Nicks #hansel: [benbeltran benbeltran1 edgarjs]
2012-03-16 15:33:10 -- Channel #hansel: 3 nicks (0 ops, 0 halfops, 0 voices, 3 normals)
2012-03-16 15:33:18 -- Channel created on Fri, 16 Mar 2012 09:14:11
2012-03-16 15:35:57 <-- benbeltran (~benbeltra@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-03-16 18:02:47 <-- edgarjs (~edgarjs@187.163.28.116) has quit (Remote host closed the connection)
2012-03-17 12:31:47 irc: disconnected from server
2012-03-18 21:59:29 --> benbeltran1 (~benbeltra@200.76.90.225) has joined #hansel
2012-03-18 21:59:29 -- Mode #hansel [+ns] by hubbard.freenode.net
2012-03-18 21:59:29 -- Nicks #hansel: [@benbeltran1]
2012-03-18 21:59:29 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-18 21:59:37 -- Channel created on Sun, 18 Mar 2012 21:59:29
2012-03-19 11:43:28 irc: disconnected from server
2012-03-19 12:26:14 --> benbeltran1 (~benbeltra@200.76.90.175) has joined #hansel
2012-03-19 12:26:15 -- Mode #hansel [+ns] by asimov.freenode.net
2012-03-19 12:26:15 -- Nicks #hansel: [@benbeltran1]
2012-03-19 12:26:15 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-19 12:26:23 -- Channel created on Mon, 19 Mar 2012 12:26:13
2012-03-19 18:50:41 irc: disconnected from server
2012-03-19 18:53:23 --> benbeltran1 (~benbeltra@200.76.90.232) has joined #hansel
2012-03-19 18:53:23 -- Mode #hansel [+ns] by niven.freenode.net
2012-03-19 18:53:23 -- Nicks #hansel: [@benbeltran1]
2012-03-19 18:53:23 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-19 18:53:31 -- Channel created on Mon, 19 Mar 2012 18:53:23
2012-03-19 19:42:07 irc: disconnected from server
2012-03-19 19:42:30 --> benbeltran1 (~benbeltra@200.76.90.232) has joined #hansel
2012-03-19 19:42:30 -- Mode #hansel [+ns] by pratchett.freenode.net
2012-03-19 19:42:30 -- Nicks #hansel: [@benbeltran1]
2012-03-19 19:42:30 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-19 19:42:37 -- Channel created on Mon, 19 Mar 2012 19:42:28
2012-03-19 22:50:24 irc: disconnected from server
2012-03-19 22:50:49 --> benbeltran1 (~benbeltra@200.76.90.232) has joined #hansel
2012-03-19 22:50:49 -- Mode #hansel [+ns] by sendak.freenode.net
2012-03-19 22:50:49 -- Nicks #hansel: [@benbeltran1]
2012-03-19 22:50:49 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-19 22:50:58 -- Channel created on Mon, 19 Mar 2012 22:50:49
2012-03-19 23:10:46 irc: disconnected from server
2012-03-20 09:12:51 --> benbeltran1 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-20 09:12:51 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-03-20 09:12:51 -- Nicks #hansel: [@benbeltran1]
2012-03-20 09:12:51 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-20 09:12:59 -- Channel created on Tue, 20 Mar 2012 09:12:51
2012-03-20 09:39:41 --> edgarjs (~edgarjs@187.163.28.116) has joined #hansel
2012-03-20 09:59:41 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-03-20 09:59:41 -- Nicks #hansel: [benbeltran edgarjs]
2012-03-20 09:59:41 -- Channel #hansel: 2 nicks (0 ops, 0 halfops, 0 voices, 2 normals)
2012-03-20 09:59:44 -- Channel created on Tue, 20 Mar 2012 09:12:51
2012-03-20 11:50:11 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-03-20 11:50:11 -- Nicks #hansel: [benbeltran edgarjs]
2012-03-20 11:50:11 -- Channel #hansel: 2 nicks (0 ops, 0 halfops, 0 voices, 2 normals)
2012-03-20 11:50:13 -- Channel created on Tue, 20 Mar 2012 09:12:51
2012-03-20 16:20:04 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-03-20 16:20:04 -- Nicks #hansel: [benbeltran edgarjs]
2012-03-20 16:20:04 -- Channel #hansel: 2 nicks (0 ops, 0 halfops, 0 voices, 2 normals)
2012-03-20 16:20:06 -- Channel created on Tue, 20 Mar 2012 09:12:51
2012-03-20 16:29:10 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-03-20 16:29:10 -- Nicks #hansel: [benbeltran edgarjs]
2012-03-20 16:29:10 -- Channel #hansel: 2 nicks (0 ops, 0 halfops, 0 voices, 2 normals)
2012-03-20 16:29:12 -- Channel created on Tue, 20 Mar 2012 09:12:51
2012-03-20 18:10:27 irc: disconnected from server
2012-03-20 18:10:42 --> benbeltran1 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-20 18:10:43 -- Nicks #hansel: [benbeltran benbeltran1 edgarjs]
2012-03-20 18:10:43 -- Channel #hansel: 3 nicks (0 ops, 0 halfops, 0 voices, 3 normals)
2012-03-20 18:10:50 -- Channel created on Tue, 20 Mar 2012 09:12:51
2012-03-21 09:01:02 irc: disconnected from server
2012-03-21 09:01:16 --> benbeltran1 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-21 09:01:16 -- Mode #hansel [+ns] by cameron.freenode.net
2012-03-21 09:01:16 -- Nicks #hansel: [@benbeltran1]
2012-03-21 09:01:16 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-21 09:01:24 -- Channel created on Wed, 21 Mar 2012 09:01:14
2012-03-21 12:02:51 --> edgarjs (u5782@gateway/web/irccloud.com/x-fwigzeaypntlokcm) has joined #hansel
2012-03-21 12:03:48 <-- edgarjs (u5782@gateway/web/irccloud.com/x-fwigzeaypntlokcm) has left #hansel
2012-03-21 18:34:46 irc: disconnected from server
2012-03-21 18:35:03 --> benbeltran2 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-21 18:35:03 -- Nicks #hansel: [@benbeltran1 benbeltran2]
2012-03-21 18:35:03 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-03-21 18:35:11 -- Channel created on Wed, 21 Mar 2012 09:01:14
2012-03-21 18:37:55 <-- benbeltran1 (~benbeltra@187.163.28.116) has quit (Ping timeout: 264 seconds)
2012-03-21 21:21:33 irc: disconnected from server
2012-03-21 21:24:19 --> benbeltran2 (~benbeltra@200.76.90.237) has joined #hansel
2012-03-21 21:24:19 -- Mode #hansel [+ns] by pratchett.freenode.net
2012-03-21 21:24:19 -- Nicks #hansel: [@benbeltran2]
2012-03-21 21:24:19 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-21 21:24:27 -- Channel created on Wed, 21 Mar 2012 21:24:19
2012-03-22 08:50:56 irc: disconnected from server
2012-03-22 08:51:12 --> benbeltran2 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-22 08:51:12 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-03-22 08:51:12 -- Nicks #hansel: [@benbeltran2]
2012-03-22 08:51:12 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-22 08:51:20 -- Channel created on Thu, 22 Mar 2012 08:51:12
2012-03-22 09:39:35 -- You are now known as benbeltran
2012-03-22 20:42:17 irc: disconnected from server
2012-03-22 22:12:43 --> benbeltran (~benbeltra@200.76.90.251) has joined #hansel
2012-03-22 22:12:43 -- Mode #hansel [+ns] by asimov.freenode.net
2012-03-22 22:12:43 -- Nicks #hansel: [@benbeltran]
2012-03-22 22:12:43 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-22 22:12:51 -- Channel created on Thu, 22 Mar 2012 22:12:43
2012-03-23 08:50:36 irc: disconnected from server
2012-03-23 08:51:02 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-03-23 08:51:02 -- Mode #hansel [+ns] by hitchcock.freenode.net
2012-03-23 08:51:02 -- Nicks #hansel: [@benbeltran]
2012-03-23 08:51:02 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-23 08:51:10 -- Channel created on Fri, 23 Mar 2012 08:49:17
2012-03-23 18:28:00 irc: disconnected from server
2012-03-23 23:52:23 --> benbeltran (~benbeltra@200.76.90.239) has joined #hansel
2012-03-23 23:52:23 -- Mode #hansel [+ns] by leguin.freenode.net
2012-03-23 23:52:23 -- Nicks #hansel: [@benbeltran]
2012-03-23 23:52:23 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-23 23:52:29 -- Channel created on Fri, 23 Mar 2012 23:52:16
2012-03-25 01:35:32 irc: disconnected from server
2012-03-26 00:40:17 --> benbeltran (~benbeltra@200.76.90.254) has joined #hansel
2012-03-26 00:40:17 -- Mode #hansel [+ns] by hubbard.freenode.net
2012-03-26 00:40:17 -- Nicks #hansel: [@benbeltran]
2012-03-26 00:40:17 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-26 00:40:24 -- Channel created on Mon, 26 Mar 2012 00:40:08
2012-03-26 01:09:02 irc: disconnected from server
2012-03-26 09:13:22 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-03-26 09:13:23 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-03-26 09:13:23 -- Nicks #hansel: [@benbeltran]
2012-03-26 09:13:23 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-26 09:13:31 -- Channel created on Mon, 26 Mar 2012 09:13:22
2012-03-26 18:39:40 irc: disconnected from server
2012-03-26 18:39:57 --> benbeltran1 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-26 18:39:58 -- Nicks #hansel: [@benbeltran benbeltran1]
2012-03-26 18:39:58 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-03-26 20:19:14 irc: disconnected from server
2012-03-26 20:20:36 --> benbeltran1 (~benbeltra@200.76.90.228) has joined #hansel
2012-03-26 20:20:36 -- Mode #hansel [+ns] by hitchcock.freenode.net
2012-03-26 20:20:36 -- Nicks #hansel: [@benbeltran1]
2012-03-26 20:20:36 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-26 20:20:43 -- Channel created on Mon, 26 Mar 2012 20:18:48
2012-03-26 20:49:40 irc: disconnected from server
2012-03-27 09:18:57 --> benbeltran1 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-27 09:18:57 -- Mode #hansel [+ns] by holmes.freenode.net
2012-03-27 09:18:57 -- Nicks #hansel: [@benbeltran1]
2012-03-27 09:18:57 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-27 09:19:05 -- Channel created on Tue, 27 Mar 2012 09:18:55
2012-03-27 09:47:31 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-03-27 09:47:31 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-03-27 09:47:31 -- Nicks #hansel: [@benbeltran]
2012-03-27 09:47:31 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-27 09:47:34 -- Channel created on Tue, 27 Mar 2012 09:47:31
2012-03-28 09:53:36 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-03-28 09:53:36 -- Mode #hansel [+ns] by holmes.freenode.net
2012-03-28 09:53:36 -- Nicks #hansel: [@benbeltran]
2012-03-28 09:53:36 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-28 09:53:38 -- Channel created on Wed, 28 Mar 2012 09:53:34
2012-03-28 17:45:58 irc: disconnected from server
2012-03-28 17:47:32 --> benbeltran1 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-28 17:47:32 -- Nicks #hansel: [@benbeltran benbeltran1]
2012-03-28 17:47:32 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-03-28 17:47:34 -- Channel created on Wed, 28 Mar 2012 09:53:34
2012-03-28 17:48:47 <-- benbeltran (~benbeltra@187.163.28.116) has quit (Ping timeout: 252 seconds)
2012-03-28 19:36:25 irc: disconnected from server
2012-03-28 22:45:46 --> benbeltran1 (~benbeltra@200.76.90.223) has joined #hansel
2012-03-28 22:45:46 -- Mode #hansel [+ns] by barjavel.freenode.net
2012-03-28 22:45:46 -- Nicks #hansel: [@benbeltran1]
2012-03-28 22:45:46 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-28 22:45:46 -- Notice(barjavel.freenode.net): [freenode-info] channel flooding and no channel staff around to help? Please check with freenode support: http://freenode.net/faq.shtml#gettinghelp
2012-03-28 22:45:54 -- Channel created on Wed, 28 Mar 2012 22:45:45
2012-03-29 08:59:10 irc: disconnected from server
2012-03-29 08:59:27 --> benbeltran1 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-29 08:59:27 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-03-29 08:59:27 -- Nicks #hansel: [@benbeltran1]
2012-03-29 08:59:27 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-29 08:59:35 -- Channel created on Thu, 29 Mar 2012 08:59:25
2012-03-29 13:25:27 -- You are now known as benbeltran
2012-03-29 18:38:45 irc: disconnected from server
2012-03-29 18:39:03 --> benbeltran1 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-29 18:39:03 -- Nicks #hansel: [@benbeltran benbeltran1]
2012-03-29 18:39:03 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-03-29 18:39:11 -- Channel created on Thu, 29 Mar 2012 08:59:25
2012-03-29 18:41:49 <-- benbeltran (~benbeltra@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-03-29 19:03:33 irc: disconnected from server
2012-03-30 08:57:46 --> benbeltran1 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-30 08:57:46 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-03-30 08:57:46 -- Nicks #hansel: [@benbeltran1]
2012-03-30 08:57:46 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-30 08:57:54 -- Channel created on Fri, 30 Mar 2012 08:57:44
2012-03-30 09:25:48 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-03-30 09:25:48 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-03-30 09:25:48 -- Nicks #hansel: [@benbeltran]
2012-03-30 09:25:48 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-30 09:25:50 -- Channel created on Fri, 30 Mar 2012 09:25:46
2012-03-30 18:20:36 irc: disconnected from server
2012-03-30 18:21:57 --> benbeltran1 (~benbeltra@187.163.28.116) has joined #hansel
2012-03-30 18:21:57 -- Nicks #hansel: [@benbeltran benbeltran1]
2012-03-30 18:21:57 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-03-30 18:22:05 -- Channel created on Fri, 30 Mar 2012 09:25:46
2012-03-30 18:23:40 <-- benbeltran (~benbeltra@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-03-30 20:24:35 irc: disconnected from server
2012-03-30 20:24:57 --> benbeltran1 (~benbeltra@200.76.90.237) has joined #hansel
2012-03-30 20:24:57 -- Mode #hansel [+ns] by adams.freenode.net
2012-03-30 20:24:57 -- Nicks #hansel: [@benbeltran1]
2012-03-30 20:24:57 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-03-30 20:25:04 -- Channel created on Fri, 30 Mar 2012 20:24:57
2012-03-30 23:19:49 irc: disconnected from server
2012-04-01 21:14:13 --> benbeltran1 (~benbeltra@200.76.90.177) has joined #hansel
2012-04-01 21:14:13 -- Mode #hansel [+ns] by holmes.freenode.net
2012-04-01 21:14:13 -- Nicks #hansel: [@benbeltran1]
2012-04-01 21:14:13 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-01 21:14:13 -- Notice(holmes.freenode.net): [freenode-info] please register your nickname...don't forget to auto-identify! http://freenode.net/faq.shtml#nicksetup
2012-04-01 21:14:22 -- Channel created on Sun, 01 Apr 2012 21:14:08
2012-04-02 09:18:39 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-04-02 09:18:39 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-04-02 09:18:39 -- Nicks #hansel: [@benbeltran]
2012-04-02 09:18:39 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-02 09:18:41 -- Channel created on Mon, 02 Apr 2012 09:18:39
2012-04-02 20:54:41 irc: disconnected from server
2012-04-03 09:20:40 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-04-03 09:20:40 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-04-03 09:20:40 -- Nicks #hansel: [@benbeltran]
2012-04-03 09:20:40 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-03 09:20:48 -- Channel created on Tue, 03 Apr 2012 09:20:39
2012-04-03 16:02:03 <-- benbeltran (~benbeltra@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-04-03 16:02:03 irc: disconnected from server
2012-04-03 16:02:20 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-04-03 16:02:20 -- Mode #hansel [+ns] by cameron.freenode.net
2012-04-03 16:02:20 -- Nicks #hansel: [@benbeltran]
2012-04-03 16:02:20 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-03 16:02:28 -- Channel created on Tue, 03 Apr 2012 16:02:20
2012-04-04 09:10:21 --> benbeltran (~benbeltra@187.163.28.116) has joined #hansel
2012-04-04 09:10:21 -- Mode #hansel [+ns] by cameron.freenode.net
2012-04-04 09:10:21 -- Nicks #hansel: [@benbeltran]
2012-04-04 09:10:21 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-04 09:10:24 -- Channel created on Wed, 04 Apr 2012 09:10:20
2012-04-04 18:42:11 irc: disconnected from server
2012-04-04 18:42:31 --> benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-04 18:42:31 -- Nicks #hansel: [@benbeltran benbeltran1]
2012-04-04 18:42:31 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-04-04 22:27:39 irc: disconnected from server
2012-04-05 14:38:36 --> benbeltran1 (~benbeltra@200.76.90.200) has joined #hansel
2012-04-05 14:38:36 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-04-05 14:38:36 -- Nicks #hansel: [@benbeltran1]
2012-04-05 14:38:36 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-05 14:38:44 -- Channel created on Thu, 05 Apr 2012 14:38:33
2012-04-05 16:31:15 irc: disconnected from server
2012-04-09 09:07:32 --> benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-09 09:07:32 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-04-09 09:07:32 -- Nicks #hansel: [@benbeltran1]
2012-04-09 09:07:32 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-09 09:07:40 -- Channel created on Mon, 09 Apr 2012 09:07:24
2012-04-09 09:15:59 -- You are now known as benbeltran
2012-04-09 18:52:49 irc: disconnected from server
2012-04-09 18:53:06 --> benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-09 18:53:06 -- Nicks #hansel: [@benbeltran benbeltran1]
2012-04-09 18:53:06 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-04-09 18:53:14 -- Channel created on Mon, 09 Apr 2012 09:07:24
2012-04-09 19:52:49 irc: disconnected from server
2012-04-10 09:11:34 --> benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-10 09:11:35 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-04-10 09:11:35 -- Nicks #hansel: [@benbeltran1]
2012-04-10 09:11:35 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-10 09:11:43 -- Channel created on Tue, 10 Apr 2012 09:11:34
2012-04-10 11:02:58 -- You are now known as benbeltran
2012-04-10 19:34:45 irc: disconnected from server
2012-04-11 09:15:16 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-11 09:15:16 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-04-11 09:15:16 -- Nicks #hansel: [@benbeltran]
2012-04-11 09:15:16 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-11 09:15:24 -- Channel created on Wed, 11 Apr 2012 09:15:15
2012-04-11 10:19:33 irc: disconnected from server
2012-04-11 10:30:13 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-11 10:30:13 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-04-11 10:30:13 -- Nicks #hansel: [@benbeltran]
2012-04-11 10:30:13 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-11 10:30:21 -- Channel created on Wed, 11 Apr 2012 10:30:13
2012-04-11 11:00:11 irc: disconnected from server
2012-04-11 11:00:29 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-11 11:00:29 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-04-11 11:00:29 -- Nicks #hansel: [@benbeltran]
2012-04-11 11:00:29 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-11 11:00:37 -- Channel created on Wed, 11 Apr 2012 11:00:31
2012-04-11 11:23:07 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-11 11:23:07 -- Mode #hansel [+ns] by adams.freenode.net
2012-04-11 11:23:07 -- Nicks #hansel: [@benbeltran]
2012-04-11 11:23:07 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-11 11:23:09 -- Channel created on Wed, 11 Apr 2012 11:23:08
2012-04-11 17:51:02 irc: disconnected from server
2012-04-11 17:51:22 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-11 17:51:22 -- Mode #hansel [+ns] by card.freenode.net
2012-04-11 17:51:22 -- Nicks #hansel: [@benbeltran]
2012-04-11 17:51:22 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-11 17:51:30 -- Channel created on Wed, 11 Apr 2012 17:51:22
2012-04-11 18:09:40 irc: disconnected from server
2012-04-12 09:09:09 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-12 09:09:09 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-04-12 09:09:09 -- Nicks #hansel: [@benbeltran]
2012-04-12 09:09:09 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-12 09:09:16 -- Channel created on Thu, 12 Apr 2012 09:09:07
2012-04-12 18:04:25 irc: disconnected from server
2012-04-12 18:04:48 --> benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-12 18:04:49 -- Nicks #hansel: [@benbeltran benbeltran1]
2012-04-12 18:04:49 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-04-12 18:04:56 -- Channel created on Thu, 12 Apr 2012 09:09:07
2012-04-12 18:54:58 irc: disconnected from server
2012-04-12 18:57:42 --> benbeltran1 (~benbeltra@200.76.90.145) has joined #hansel
2012-04-12 18:57:42 -- Mode #hansel [+ns] by wolfe.freenode.net
2012-04-12 18:57:42 -- Nicks #hansel: [@benbeltran1]
2012-04-12 18:57:42 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-12 18:57:50 -- Channel created on Thu, 12 Apr 2012 18:57:42
2012-04-12 19:25:06 irc: disconnected from server
2012-04-12 19:25:40 --> benbeltran1 (~benbeltra@200.76.90.145) has joined #hansel
2012-04-12 19:25:40 -- Mode #hansel [+ns] by calvino.freenode.net
2012-04-12 19:25:40 -- Nicks #hansel: [@benbeltran1]
2012-04-12 19:25:40 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-12 19:25:40 -- Notice(calvino.freenode.net): [freenode-info] if you're at a conference and other people are having trouble connecting, please mention it to staff: http://freenode.net/faq.shtml#gettinghelp
2012-04-12 19:25:47 -- Channel created on Thu, 12 Apr 2012 19:25:40
2012-04-12 19:31:56 irc: disconnected from server
2012-04-12 19:32:24 --> benbeltran1 (~benbeltra@200.76.90.145) has joined #hansel
2012-04-12 19:32:24 -- Mode #hansel [+ns] by wolfe.freenode.net
2012-04-12 19:32:24 -- Nicks #hansel: [@benbeltran1]
2012-04-12 19:32:24 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-12 19:32:33 -- Channel created on Thu, 12 Apr 2012 19:32:24
2012-04-13 08:50:57 irc: disconnected from server
2012-04-13 08:51:13 --> benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-13 08:51:14 -- Mode #hansel [+ns] by lindbohm.freenode.net
2012-04-13 08:51:14 -- Nicks #hansel: [@benbeltran1]
2012-04-13 08:51:14 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-13 08:51:22 -- Channel created on Fri, 13 Apr 2012 08:51:12
2012-04-13 16:52:18 -- You are now known as bonboltron
2012-04-13 18:46:16 irc: disconnected from server
2012-04-16 09:15:38 --> bonboltron (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-16 09:15:38 -- Mode #hansel [+ns] by holmes.freenode.net
2012-04-16 09:15:38 -- Nicks #hansel: [@bonboltron]
2012-04-16 09:15:38 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-16 09:15:46 -- Channel created on Mon, 16 Apr 2012 09:15:30
2012-04-16 09:21:10 -- You are now known as benbeltran
2012-04-16 12:13:56 irc: disconnected from server
2012-04-16 12:14:14 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-16 12:14:15 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-04-16 12:14:15 -- Nicks #hansel: [@benbeltran]
2012-04-16 12:14:15 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-16 12:14:23 -- Channel created on Mon, 16 Apr 2012 12:14:14
2012-04-17 07:22:55 irc: disconnected from server
2012-04-17 09:00:21 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-17 09:00:21 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-04-17 09:00:21 -- Nicks #hansel: [@benbeltran]
2012-04-17 09:00:21 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-17 09:00:29 -- Channel created on Tue, 17 Apr 2012 09:00:21
2012-04-18 08:43:38 irc: disconnected from server
2012-04-18 08:43:55 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-18 08:43:55 -- Mode #hansel [+ns] by asimov.freenode.net
2012-04-18 08:43:55 -- Nicks #hansel: [@benbeltran]
2012-04-18 08:43:55 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-18 08:44:03 -- Channel created on Wed, 18 Apr 2012 08:43:52
2012-04-18 20:02:26 irc: disconnected from server
2012-04-18 20:23:50 --> benbeltran (~benbeltra@200.76.90.190) has joined #hansel
2012-04-18 20:23:50 -- Mode #hansel [+ns] by hitchcock.freenode.net
2012-04-18 20:23:50 -- Nicks #hansel: [@benbeltran]
2012-04-18 20:23:50 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-18 20:23:59 -- Channel created on Wed, 18 Apr 2012 20:23:50
2012-04-19 08:58:59 irc: disconnected from server
2012-04-19 08:59:17 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-19 08:59:17 -- Mode #hansel [+ns] by cameron.freenode.net
2012-04-19 08:59:17 -- Nicks #hansel: [@benbeltran]
2012-04-19 08:59:17 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-19 08:59:25 -- Channel created on Thu, 19 Apr 2012 08:59:16
2012-04-19 15:21:48 irc: disconnected from server
2012-04-19 15:22:03 --> benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-19 15:22:03 -- Nicks #hansel: [@benbeltran benbeltran1]
2012-04-19 15:22:03 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-04-19 15:22:11 -- Channel created on Thu, 19 Apr 2012 08:59:16
2012-04-19 15:24:43 <-- benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has quit (Ping timeout: 264 seconds)
2012-04-19 15:24:52 -- You are now known as benbeltran
2012-04-19 18:05:53 irc: disconnected from server
2012-04-19 18:06:11 --> benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-19 18:06:11 -- Nicks #hansel: [benbeltran benbeltran1]
2012-04-19 18:06:11 -- Channel #hansel: 2 nicks (0 ops, 0 halfops, 0 voices, 2 normals)
2012-04-19 18:06:19 -- Channel created on Thu, 19 Apr 2012 08:59:16
2012-04-19 19:09:41 irc: disconnected from server
2012-04-20 09:44:12 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-20 09:44:12 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-04-20 09:44:12 -- Nicks #hansel: [@benbeltran]
2012-04-20 09:44:12 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-20 09:44:14 -- Channel created on Fri, 20 Apr 2012 09:44:08
2012-04-20 18:05:58 irc: disconnected from server
2012-04-20 18:06:17 --> benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-20 18:06:17 -- Nicks #hansel: [@benbeltran benbeltran1]
2012-04-20 18:06:17 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-04-20 18:06:24 -- Channel created on Fri, 20 Apr 2012 09:44:08
2012-04-21 16:41:51 irc: disconnected from server
2012-04-21 16:42:13 --> benbeltran1 (~benbeltra@200.76.90.159) has joined #hansel
2012-04-21 16:42:13 -- Mode #hansel [+ns] by niven.freenode.net
2012-04-21 16:42:13 -- Nicks #hansel: [@benbeltran1]
2012-04-21 16:42:13 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-21 16:42:21 -- Channel created on Sat, 21 Apr 2012 16:42:10
2012-04-23 08:46:15 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-23 08:46:15 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-04-23 08:46:15 -- Nicks #hansel: [@benbeltran]
2012-04-23 08:46:15 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-23 08:46:15 -- Notice(zelazny.freenode.net): [freenode-info] channel trolls and no channel staff around to help? please check with freenode support: http://freenode.net/faq.shtml#gettinghelp
2012-04-23 08:46:18 -- Channel created on Mon, 23 Apr 2012 08:46:15
2012-04-23 08:55:51 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-23 08:55:51 -- Mode #hansel [+ns] by adams.freenode.net
2012-04-23 08:55:51 -- Nicks #hansel: [@benbeltran]
2012-04-23 08:55:51 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-23 08:55:53 -- Channel created on Mon, 23 Apr 2012 08:55:50
2012-04-23 18:39:22 irc: disconnected from server
2012-04-23 18:39:43 --> benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-23 18:39:43 -- Nicks #hansel: [@benbeltran benbeltran1]
2012-04-23 18:39:43 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-04-23 18:39:43 -- Notice(zelazny.freenode.net): [freenode-info] why register and identify? your IRC nick is how people know you. http://freenode.net/faq.shtml#nicksetup
2012-04-23 18:39:51 -- Channel created on Mon, 23 Apr 2012 08:55:50
2012-04-23 20:46:11 irc: disconnected from server
2012-04-24 09:06:14 --> benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-24 09:06:14 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-04-24 09:06:14 -- Nicks #hansel: [@benbeltran1]
2012-04-24 09:06:14 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-24 09:06:22 -- Channel created on Tue, 24 Apr 2012 09:06:13
2012-04-24 11:01:44 -- You are now known as benbeltran
2012-04-24 18:50:31 irc: disconnected from server
2012-04-24 18:50:48 --> benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-24 18:50:48 -- Nicks #hansel: [@benbeltran benbeltran1]
2012-04-24 18:50:48 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-04-24 18:50:48 -- Notice(wright.freenode.net): [freenode-info] if you're at a conference and other people are having trouble connecting, please mention it to staff: http://freenode.net/faq.shtml#gettinghelp
2012-04-24 18:50:57 -- Channel created on Tue, 24 Apr 2012 09:06:13
2012-04-24 20:14:25 irc: disconnected from server
2012-04-24 21:57:07 --> benbeltran1 (~benbeltra@200.76.90.253) has joined #hansel
2012-04-24 21:57:07 -- Mode #hansel [+ns] by holmes.freenode.net
2012-04-24 21:57:07 -- Nicks #hansel: [@benbeltran1]
2012-04-24 21:57:07 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-24 21:57:15 -- Channel created on Tue, 24 Apr 2012 21:57:06
2012-04-24 22:18:35 irc: disconnected from server
2012-04-25 09:00:45 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-25 09:00:45 -- Mode #hansel [+ns] by calvino.freenode.net
2012-04-25 09:00:45 -- Nicks #hansel: [@benbeltran]
2012-04-25 09:00:45 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-25 09:00:48 -- Channel created on Wed, 25 Apr 2012 09:00:43
2012-04-25 18:39:41 irc: disconnected from server
2012-04-25 18:40:04 --> benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-25 18:40:04 -- Nicks #hansel: [@benbeltran benbeltran1]
2012-04-25 18:40:04 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-04-25 18:40:12 -- Channel created on Wed, 25 Apr 2012 09:00:43
2012-04-25 18:43:04 <-- benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has quit (Ping timeout: 272 seconds)
2012-04-26 08:38:33 irc: disconnected from server
2012-04-26 08:38:50 --> benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-26 08:38:50 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-04-26 08:38:50 -- Nicks #hansel: [@benbeltran1]
2012-04-26 08:38:50 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-26 08:38:50 -- Notice(zelazny.freenode.net): [freenode-info] please register your nickname...don't forget to auto-identify! http://freenode.net/faq.shtml#nicksetup
2012-04-26 08:38:58 -- Channel created on Thu, 26 Apr 2012 08:38:49
2012-04-26 21:20:15 irc: disconnected from server
2012-04-27 10:23:00 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-04-27 10:23:00 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-04-27 10:23:00 -- Nicks #hansel: [@benbeltran]
2012-04-27 10:23:00 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-04-27 10:23:02 -- Channel created on Fri, 27 Apr 2012 10:23:00
2012-04-27 12:20:08 -- You are now known as navid
2012-04-27 12:20:15 -- You are now known as benbeltran
2012-04-27 19:45:20 irc: disconnected from server
2012-05-03 10:18:02 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-03 10:18:02 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-03 10:18:02 -- Nicks #hansel: [@benbeltran]
2012-05-03 10:18:02 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-03 10:18:04 -- Channel created on Thu, 03 May 2012 10:18:02
2012-05-03 18:28:00 irc: disconnected from server
2012-05-04 09:14:15 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-04 09:14:15 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-04 09:14:15 -- Nicks #hansel: [@benbeltran]
2012-05-04 09:14:15 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-04 09:14:23 -- Channel created on Fri, 04 May 2012 09:14:15
2012-05-05 13:06:50 irc: disconnected from server
2012-05-05 13:08:15 --> benbeltran (~benbeltra@200.76.90.159) has joined #hansel
2012-05-05 13:08:15 -- Mode #hansel [+ns] by verne.freenode.net
2012-05-05 13:08:15 -- Nicks #hansel: [@benbeltran]
2012-05-05 13:08:15 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-05 13:08:23 -- Channel created on Sat, 05 May 2012 13:08:12
2012-05-05 15:26:27 irc: disconnected from server
2012-05-07 12:03:30 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-07 12:03:30 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-07 12:03:30 -- Nicks #hansel: [@benbeltran]
2012-05-07 12:03:30 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-07 12:03:32 -- Channel created on Mon, 07 May 2012 12:03:30
2012-05-08 09:54:16 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-08 09:54:16 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-08 09:54:16 -- Nicks #hansel: [@benbeltran]
2012-05-08 09:54:16 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-08 09:54:23 -- Channel created on Tue, 08 May 2012 09:54:16
2012-05-08 09:57:40 irc: disconnected from server
2012-05-08 09:57:56 --> benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-08 09:57:56 -- Nicks #hansel: [@benbeltran benbeltran1]
2012-05-08 09:57:56 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-05-08 09:58:09 -- Channel created on Tue, 08 May 2012 09:54:16
2012-05-08 09:59:05 <-- benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has quit (Ping timeout: 244 seconds)
2012-05-08 12:02:26 -- You are now known as benbeltran
2012-05-08 18:22:24 irc: disconnected from server
2012-05-08 20:14:18 irc: disconnected from server
2012-05-08 20:15:01 --> benbeltran1 (~benbeltra@200.76.90.165) has joined #hansel
2012-05-08 20:15:01 -- Mode #hansel [+ns] by barjavel.freenode.net
2012-05-08 20:15:01 -- Nicks #hansel: [@benbeltran1]
2012-05-08 20:15:01 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-08 20:15:09 -- Channel created on Tue, 08 May 2012 20:15:02
2012-05-09 09:58:27 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-09 09:58:27 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-09 09:58:27 -- Nicks #hansel: [@benbeltran]
2012-05-09 09:58:27 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-09 09:58:29 -- Channel created on Wed, 09 May 2012 09:58:26
2012-05-10 09:52:24 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-10 09:52:24 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-10 09:52:24 -- Nicks #hansel: [@benbeltran]
2012-05-10 09:52:24 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-10 09:52:25 -- Channel created on Thu, 10 May 2012 09:52:23
2012-05-10 18:10:40 irc: disconnected from server
2012-05-10 18:11:02 --> benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-10 18:11:02 -- Nicks #hansel: [@benbeltran benbeltran1]
2012-05-10 18:11:02 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-05-10 18:11:10 -- Channel created on Thu, 10 May 2012 09:52:23
2012-05-10 20:00:41 irc: disconnected from server
2012-05-11 09:24:28 --> benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-11 09:24:28 -- Mode #hansel [+ns] by holmes.freenode.net
2012-05-11 09:24:28 -- Nicks #hansel: [@benbeltran1]
2012-05-11 09:24:28 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-11 09:24:36 -- Channel created on Fri, 11 May 2012 09:24:28
2012-05-11 10:19:59 -- You are now known as benbeltran
2012-05-11 11:11:54 irc: disconnected from server
2012-05-11 11:12:23 --> benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-11 11:12:23 -- Nicks #hansel: [@benbeltran benbeltran1]
2012-05-11 11:12:23 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-05-11 11:12:27 -- Channel created on Fri, 11 May 2012 09:24:28
2012-05-11 11:14:51 <-- benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has quit (Ping timeout: 252 seconds)
2012-05-11 19:30:33 irc: disconnected from server
2012-05-13 14:13:53 --> benbeltran1 (~benbeltra@200.76.90.235) has joined #hansel
2012-05-13 14:13:53 -- Mode #hansel [+ns] by niven.freenode.net
2012-05-13 14:13:53 -- Nicks #hansel: [@benbeltran1]
2012-05-13 14:13:53 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-13 14:13:55 -- Notice(niven.freenode.net): [freenode-info] please register your nickname...don't forget to auto-identify! http://freenode.net/faq.shtml#nicksetup
2012-05-13 14:14:02 -- Channel created on Sun, 13 May 2012 14:13:53
2012-05-13 20:46:54 irc: disconnected from server
2012-05-13 20:47:17 --> benbeltran1 (~benbeltra@200.76.90.140) has joined #hansel
2012-05-13 20:47:17 -- Mode #hansel [+ns] by niven.freenode.net
2012-05-13 20:47:17 -- Nicks #hansel: [@benbeltran1]
2012-05-13 20:47:17 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-13 20:47:25 -- Channel created on Sun, 13 May 2012 20:47:16
2012-05-13 21:04:25 irc: disconnected from server
2012-05-14 09:02:11 --> benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-14 09:02:11 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-14 09:02:11 -- Nicks #hansel: [@benbeltran1]
2012-05-14 09:02:11 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-14 09:02:11 -- Notice(zelazny.freenode.net): [freenode-info] if you're at a conference and other people are having trouble connecting, please mention it to staff: http://freenode.net/faq.shtml#gettinghelp
2012-05-14 09:02:19 -- Channel created on Mon, 14 May 2012 09:02:11
2012-05-14 09:44:38 -- You are now known as benbeltran
2012-05-14 19:11:41 irc: disconnected from server
2012-05-14 19:22:24 --> benbeltran (~benbeltra@200.76.90.149) has joined #hansel
2012-05-14 19:22:24 -- Mode #hansel [+ns] by wolfe.freenode.net
2012-05-14 19:22:24 -- Nicks #hansel: [@benbeltran]
2012-05-14 19:22:24 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-14 19:22:33 -- Channel created on Mon, 14 May 2012 19:22:24
2012-05-14 19:51:41 irc: disconnected from server
2012-05-14 20:13:05 --> benbeltran (~benbeltra@200.76.90.231) has joined #hansel
2012-05-14 20:13:06 -- Mode #hansel [+ns] by card.freenode.net
2012-05-14 20:13:06 -- Nicks #hansel: [@benbeltran]
2012-05-14 20:13:06 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-14 20:13:13 -- Channel created on Mon, 14 May 2012 20:13:06
2012-05-14 20:35:03 irc: disconnected from server
2012-05-14 20:38:23 --> benbeltran (~benbeltra@200.76.90.136) has joined #hansel
2012-05-14 20:38:23 -- Mode #hansel [+ns] by pratchett.freenode.net
2012-05-14 20:38:23 -- Nicks #hansel: [@benbeltran]
2012-05-14 20:38:23 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-14 20:38:31 -- Channel created on Mon, 14 May 2012 20:38:23
2012-05-14 20:41:54 irc: disconnected from server
2012-05-14 20:42:19 --> benbeltran1 (~benbeltra@200.76.90.139) has joined #hansel
2012-05-14 20:42:19 -- Nicks #hansel: [@benbeltran benbeltran1]
2012-05-14 20:42:19 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-05-14 20:42:27 -- Channel created on Mon, 14 May 2012 20:38:23
2012-05-14 20:43:18 <-- benbeltran (~benbeltra@200.76.90.136) has quit (Ping timeout: 248 seconds)
2012-05-15 08:41:31 irc: disconnected from server
2012-05-15 08:41:46 --> benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-15 08:41:46 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-15 08:41:46 -- Nicks #hansel: [@benbeltran1]
2012-05-15 08:41:46 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-15 08:41:54 -- Channel created on Tue, 15 May 2012 08:41:44
2012-05-15 10:29:02 -- You are now known as benbeltran
2012-05-15 21:01:39 irc: disconnected from server
2012-05-15 21:02:02 --> benbeltran (~benbeltra@200.76.90.179) has joined #hansel
2012-05-15 21:02:02 -- Mode #hansel [+ns] by hubbard.freenode.net
2012-05-15 21:02:02 -- Nicks #hansel: [@benbeltran]
2012-05-15 21:02:02 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-15 21:02:09 -- Channel created on Tue, 15 May 2012 21:02:01
2012-05-15 21:07:01 irc: disconnected from server
2012-05-15 21:07:25 --> benbeltran1 (~benbeltra@200.76.90.179) has joined #hansel
2012-05-15 21:07:25 -- Nicks #hansel: [@benbeltran benbeltran1]
2012-05-15 21:07:25 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-05-15 21:07:32 -- Channel created on Tue, 15 May 2012 21:02:01
2012-05-15 21:10:31 <-- benbeltran (~benbeltra@200.76.90.179) has quit (Ping timeout: 244 seconds)
2012-05-15 21:24:28 irc: disconnected from server
2012-05-15 22:44:38 --> benbeltran1 (~benbeltra@200.76.90.252) has joined #hansel
2012-05-15 22:44:38 -- Mode #hansel [+ns] by card.freenode.net
2012-05-15 22:44:38 -- Nicks #hansel: [@benbeltran1]
2012-05-15 22:44:38 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-15 22:44:46 -- Channel created on Tue, 15 May 2012 22:44:38
2012-05-15 22:54:18 irc: disconnected from server
2012-05-15 22:57:44 --> benbeltran1 (~benbeltra@200.76.90.139) has joined #hansel
2012-05-15 22:57:44 -- Mode #hansel [+ns] by wolfe.freenode.net
2012-05-15 22:57:44 -- Nicks #hansel: [@benbeltran1]
2012-05-15 22:57:44 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-15 22:57:53 -- Channel created on Tue, 15 May 2012 22:57:44
2012-05-15 23:38:53 irc: disconnected from server
2012-05-15 23:40:05 --> benbeltran1 (~benbeltra@200.76.90.226) has joined #hansel
2012-05-15 23:40:05 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-15 23:40:05 -- Nicks #hansel: [@benbeltran1]
2012-05-15 23:40:05 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-15 23:40:13 -- Channel created on Tue, 15 May 2012 23:40:05
2012-05-15 23:48:53 irc: disconnected from server
2012-05-15 23:49:17 --> benbeltran2 (~benbeltra@200.76.90.201) has joined #hansel
2012-05-15 23:49:17 -- Nicks #hansel: [@benbeltran1 benbeltran2]
2012-05-15 23:49:17 -- Channel #hansel: 2 nicks (1 ops, 0 halfops, 0 voices, 1 normals)
2012-05-15 23:49:26 -- Channel created on Tue, 15 May 2012 23:40:05
2012-05-15 23:50:34 <-- benbeltran1 (~benbeltra@200.76.90.226) has quit (Ping timeout: 244 seconds)
2012-05-16 08:44:35 irc: disconnected from server
2012-05-16 08:44:51 --> benbeltran2 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-16 08:44:51 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-16 08:44:51 -- Nicks #hansel: [@benbeltran2]
2012-05-16 08:44:51 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-16 08:44:59 -- Channel created on Wed, 16 May 2012 08:44:51
2012-05-16 21:27:10 irc: disconnected from server
2012-05-16 21:27:32 --> benbeltran2 (~benbeltra@200.76.90.128) has joined #hansel
2012-05-16 21:27:32 -- Mode #hansel [+ns] by hubbard.freenode.net
2012-05-16 21:27:32 -- Nicks #hansel: [@benbeltran2]
2012-05-16 21:27:32 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-16 21:27:40 -- Channel created on Wed, 16 May 2012 21:27:32
2012-05-17 08:40:26 irc: disconnected from server
2012-05-17 08:40:46 --> benbeltran2 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-17 08:40:46 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-17 08:40:46 -- Nicks #hansel: [@benbeltran2]
2012-05-17 08:40:46 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-17 08:40:55 -- Channel created on Thu, 17 May 2012 08:40:44
2012-05-17 13:17:17 -- You are now known as benbeltran
2012-05-17 18:18:01 irc: disconnected from server
2012-05-18 09:13:14 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-18 09:13:14 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-18 09:13:14 -- Nicks #hansel: [@benbeltran]
2012-05-18 09:13:14 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-18 09:13:22 -- Channel created on Fri, 18 May 2012 09:13:13
2012-05-18 18:16:12 irc: disconnected from server
2012-05-18 19:19:30 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-18 19:19:30 -- Mode #hansel [+ns] by kornbluth.freenode.net
2012-05-18 19:19:30 -- Nicks #hansel: [@benbeltran]
2012-05-18 19:19:30 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-18 19:19:38 -- Channel created on Fri, 18 May 2012 19:19:30
2012-05-20 00:46:36 irc: disconnected from server
2012-05-20 22:05:59 --> benbeltran (~benbeltra@200.76.90.223) has joined #hansel
2012-05-20 22:05:59 -- Mode #hansel [+ns] by kornbluth.freenode.net
2012-05-20 22:05:59 -- Nicks #hansel: [@benbeltran]
2012-05-20 22:05:59 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-20 22:06:07 -- Channel created on Sun, 20 May 2012 22:05:52
2012-05-20 22:32:44 irc: disconnected from server
2012-05-20 22:33:08 --> benbeltran (~benbeltra@200.76.90.142) has joined #hansel
2012-05-20 22:33:08 -- Mode #hansel [+ns] by verne.freenode.net
2012-05-20 22:33:08 -- Nicks #hansel: [@benbeltran]
2012-05-20 22:33:08 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-20 22:33:16 -- Channel created on Sun, 20 May 2012 22:33:08
2012-05-21 00:25:09 irc: disconnected from server
2012-05-21 09:00:41 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-21 09:00:41 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-21 09:00:41 -- Nicks #hansel: [@benbeltran]
2012-05-21 09:00:41 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-21 09:00:49 -- Channel created on Mon, 21 May 2012 09:00:41
2012-05-21 19:58:36 irc: disconnected from server
2012-05-21 20:41:20 --> benbeltran (~benbeltra@200.76.90.150) has joined #hansel
2012-05-21 20:41:20 -- Mode #hansel [+ns] by kornbluth.freenode.net
2012-05-21 20:41:20 -- Nicks #hansel: [@benbeltran]
2012-05-21 20:41:20 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-21 20:41:29 -- Channel created on Mon, 21 May 2012 20:41:20
2012-05-22 09:03:35 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-22 09:03:35 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-22 09:03:35 -- Nicks #hansel: [@benbeltran]
2012-05-22 09:03:35 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-22 09:03:37 -- Channel created on Tue, 22 May 2012 09:03:34
2012-05-22 19:21:59 irc: disconnected from server
2012-05-23 00:30:10 --> benbeltran (~benbeltra@200.76.90.218) has joined #hansel
2012-05-23 00:30:11 -- Mode #hansel [+ns] by holmes.freenode.net
2012-05-23 00:30:11 -- Nicks #hansel: [@benbeltran]
2012-05-23 00:30:11 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-23 00:30:18 -- Channel created on Wed, 23 May 2012 00:30:10
2012-05-23 08:41:33 irc: disconnected from server
2012-05-23 08:41:51 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-23 08:41:51 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-23 08:41:51 -- Nicks #hansel: [@benbeltran]
2012-05-23 08:41:51 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-23 08:41:59 -- Channel created on Wed, 23 May 2012 08:41:50
2012-05-23 21:56:04 irc: disconnected from server
2012-05-23 21:56:26 --> benbeltran (~benbeltra@200.76.90.246) has joined #hansel
2012-05-23 21:56:26 -- Mode #hansel [+ns] by pratchett.freenode.net
2012-05-23 21:56:26 -- Nicks #hansel: [@benbeltran]
2012-05-23 21:56:26 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-23 21:56:34 -- Channel created on Wed, 23 May 2012 21:56:25
2012-05-24 08:47:33 irc: disconnected from server
2012-05-24 08:47:50 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-24 08:47:50 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-24 08:47:50 -- Nicks #hansel: [@benbeltran]
2012-05-24 08:47:50 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-24 08:47:58 -- Channel created on Thu, 24 May 2012 08:47:49
2012-05-24 21:36:39 irc: disconnected from server
2012-05-25 09:03:58 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-25 09:03:59 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-25 09:03:59 -- Nicks #hansel: [@benbeltran]
2012-05-25 09:03:59 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-25 09:04:06 -- Channel created on Fri, 25 May 2012 09:03:56
2012-05-25 20:28:55 irc: disconnected from server
2012-05-25 20:29:09 --> benbeltran (~benbeltra@187-163-10-148.static.axtel.net) has joined #hansel
2012-05-25 20:29:09 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-25 20:29:09 -- Nicks #hansel: [@benbeltran]
2012-05-25 20:29:09 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-25 20:29:17 -- Channel created on Fri, 25 May 2012 20:29:10
2012-05-26 06:21:34 irc: disconnected from server
2012-05-27 01:53:41 --> benbeltran (~benbeltra@200.76.90.183) has joined #hansel
2012-05-27 01:53:41 -- Mode #hansel [+ns] by card.freenode.net
2012-05-27 01:53:41 -- Nicks #hansel: [@benbeltran]
2012-05-27 01:53:41 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-27 01:53:50 -- Channel created on Sun, 27 May 2012 01:53:41
2012-05-27 14:41:11 irc: disconnected from server
2012-05-27 14:41:33 --> benbeltran (~benbeltra@200.76.90.138) has joined #hansel
2012-05-27 14:41:33 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-27 14:41:33 -- Nicks #hansel: [@benbeltran]
2012-05-27 14:41:33 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-27 14:41:41 -- Channel created on Sun, 27 May 2012 14:41:33
2012-05-27 15:35:04 irc: disconnected from server
2012-05-27 15:35:29 --> benbeltran (~benbeltra@200.76.90.138) has joined #hansel
2012-05-27 15:35:29 -- Mode #hansel [+ns] by verne.freenode.net
2012-05-27 15:35:29 -- Nicks #hansel: [@benbeltran]
2012-05-27 15:35:29 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-27 15:35:37 -- Channel created on Sun, 27 May 2012 15:35:30
2012-05-27 16:04:02 irc: disconnected from server
2012-05-27 16:04:24 --> benbeltran (~benbeltra@200.76.90.138) has joined #hansel
2012-05-27 16:04:24 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-27 16:04:24 -- Nicks #hansel: [@benbeltran]
2012-05-27 16:04:24 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-27 16:04:24 -- Notice(zelazny.freenode.net): [freenode-info] if you're at a conference and other people are having trouble connecting, please mention it to staff: http://freenode.net/faq.shtml#gettinghelp
2012-05-27 16:04:32 -- Channel created on Sun, 27 May 2012 16:04:25
2012-05-27 16:13:37 irc: disconnected from server
2012-05-28 10:09:22 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-28 10:09:22 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-28 10:09:22 -- Nicks #hansel: [@benbeltran]
2012-05-28 10:09:22 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-28 10:09:22 -- Notice(zelazny.freenode.net): [freenode-info] help freenode weed out clonebots -- please register your IRC nick and auto-identify: http://freenode.net/faq.shtml#nicksetup
2012-05-28 10:09:26 -- Channel created on Mon, 28 May 2012 10:09:23
2012-05-28 19:26:18 irc: disconnected from server
2012-05-28 22:20:54 --> benbeltran (~benbeltra@200.76.90.246) has joined #hansel
2012-05-28 22:20:54 -- Mode #hansel [+ns] by wolfe.freenode.net
2012-05-28 22:20:54 -- Nicks #hansel: [@benbeltran]
2012-05-28 22:20:54 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-28 22:21:02 -- Channel created on Mon, 28 May 2012 22:20:54
2012-05-29 08:56:17 irc: disconnected from server
2012-05-29 08:56:35 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-29 08:56:35 -- Mode #hansel [+ns] by gibson.freenode.net
2012-05-29 08:56:35 -- Nicks #hansel: [@benbeltran]
2012-05-29 08:56:35 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-29 08:56:43 -- Channel created on Tue, 29 May 2012 08:56:47
2012-05-29 18:16:07 irc: disconnected from server
2012-05-29 20:28:55 --> benbeltran (~benbeltra@200.76.90.155) has joined #hansel
2012-05-29 20:28:55 -- Mode #hansel [+ns] by pratchett.freenode.net
2012-05-29 20:28:55 -- Nicks #hansel: [@benbeltran]
2012-05-29 20:28:55 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-29 20:29:04 -- Channel created on Tue, 29 May 2012 20:28:54
2012-05-29 21:22:40 irc: disconnected from server
2012-05-29 21:23:05 --> benbeltran (~benbeltra@200.76.90.155) has joined #hansel
2012-05-29 21:23:05 -- Mode #hansel [+ns] by hubbard.freenode.net
2012-05-29 21:23:05 -- Nicks #hansel: [@benbeltran]
2012-05-29 21:23:05 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-29 21:23:14 -- Channel created on Tue, 29 May 2012 21:23:05
2012-05-29 23:17:59 irc: disconnected from server
2012-05-29 23:18:21 --> benbeltran (~benbeltra@200.76.90.242) has joined #hansel
2012-05-29 23:18:22 -- Mode #hansel [+ns] by card.freenode.net
2012-05-29 23:18:22 -- Nicks #hansel: [@benbeltran]
2012-05-29 23:18:22 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-29 23:18:29 -- Channel created on Tue, 29 May 2012 23:18:22
2012-05-30 08:51:16 irc: disconnected from server
2012-05-30 08:51:33 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-30 08:51:34 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-30 08:51:34 -- Nicks #hansel: [@benbeltran]
2012-05-30 08:51:34 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-30 08:51:42 -- Channel created on Wed, 30 May 2012 08:51:33
2012-05-30 19:21:49 irc: disconnected from server
2012-05-30 23:44:34 --> benbeltran (~benbeltra@200.76.90.152) has joined #hansel
2012-05-30 23:44:34 -- Mode #hansel [+ns] by pratchett.freenode.net
2012-05-30 23:44:34 -- Nicks #hansel: [@benbeltran]
2012-05-30 23:44:34 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-30 23:44:43 -- Channel created on Wed, 30 May 2012 23:44:34
2012-05-31 00:12:57 irc: disconnected from server
2012-05-31 09:01:30 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-05-31 09:01:30 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-05-31 09:01:30 -- Nicks #hansel: [@benbeltran]
2012-05-31 09:01:30 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-05-31 09:01:38 -- Channel created on Thu, 31 May 2012 09:01:29
2012-05-31 22:03:46 irc: disconnected from server
2012-06-01 09:20:18 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-06-01 09:20:18 -- Mode #hansel [+ns] by holmes.freenode.net
2012-06-01 09:20:18 -- Nicks #hansel: [@benbeltran]
2012-06-01 09:20:18 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-01 09:20:26 -- Channel created on Fri, 01 Jun 2012 09:20:17
2012-06-01 19:26:23 irc: disconnected from server
2012-06-01 19:31:44 --> benbeltran (~benbeltra@189.169.132.250) has joined #hansel
2012-06-01 19:31:44 -- Mode #hansel [+ns] by card.freenode.net
2012-06-01 19:31:44 -- Nicks #hansel: [@benbeltran]
2012-06-01 19:31:44 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-01 19:31:52 -- Channel created on Fri, 01 Jun 2012 19:31:45
2012-06-02 14:24:22 irc: disconnected from server
2012-06-02 16:07:08 --> benbeltran (~benbeltra@200.76.90.142) has joined #hansel
2012-06-02 16:07:08 -- Mode #hansel [+ns] by lindbohm.freenode.net
2012-06-02 16:07:08 -- Nicks #hansel: [@benbeltran]
2012-06-02 16:07:08 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-02 16:07:16 -- Channel created on Sat, 02 Jun 2012 16:07:05
2012-06-02 22:43:33 irc: disconnected from server
2012-06-04 09:10:36 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-06-04 09:10:36 -- Mode #hansel [+ns] by verne.freenode.net
2012-06-04 09:10:36 -- Nicks #hansel: [@benbeltran]
2012-06-04 09:10:36 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-04 09:10:43 -- Channel created on Mon, 04 Jun 2012 09:10:29
2012-06-05 09:43:55 irc: disconnected from server
2012-06-05 09:44:12 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-06-05 09:44:12 -- Mode #hansel [+ns] by niven.freenode.net
2012-06-05 09:44:12 -- Nicks #hansel: [@benbeltran]
2012-06-05 09:44:12 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-05 09:44:18 -- Channel created on Tue, 05 Jun 2012 09:44:12
2012-06-06 08:00:05 irc: disconnected from server
2012-06-06 08:50:38 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-06-06 08:50:38 -- Mode #hansel [+ns] by hitchcock.freenode.net
2012-06-06 08:50:38 -- Nicks #hansel: [@benbeltran]
2012-06-06 08:50:38 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-06 08:50:38 -- Channel created on Wed, 06 Jun 2012 08:50:35
2012-06-06 15:18:11 irc: disconnected from server
2012-06-06 15:25:32 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-06-06 15:25:32 -- Mode #hansel [+ns] by kornbluth.freenode.net
2012-06-06 15:25:32 -- Nicks #hansel: [@benbeltran]
2012-06-06 15:25:32 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-06 15:25:38 -- Channel created on Wed, 06 Jun 2012 15:25:31
2012-06-06 19:28:32 irc: disconnected from server
2012-06-07 08:54:04 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-06-07 08:54:04 -- Mode #hansel [+ns] by barjavel.freenode.net
2012-06-07 08:54:04 -- Nicks #hansel: [@benbeltran]
2012-06-07 08:54:04 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-07 08:54:04 -- Channel created on Thu, 07 Jun 2012 08:54:02
2012-06-07 18:45:27 irc: disconnected from server
2012-06-08 09:26:16 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-06-08 09:26:16 -- Mode #hansel [+ns] by barjavel.freenode.net
2012-06-08 09:26:16 -- Nicks #hansel: [@benbeltran]
2012-06-08 09:26:16 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-08 09:26:16 -- Channel created on Fri, 08 Jun 2012 09:26:14
2012-06-08 15:49:44 irc: disconnected from server
2012-06-08 16:11:01 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-06-08 16:11:01 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-06-08 16:11:01 -- Nicks #hansel: [@benbeltran]
2012-06-08 16:11:01 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-08 16:11:08 -- Channel created on Fri, 08 Jun 2012 16:11:01
2012-06-09 10:32:38 irc: disconnected from server
2012-06-11 08:53:30 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-06-11 08:53:30 -- Mode #hansel [+ns] by hubbard.freenode.net
2012-06-11 08:53:30 -- Nicks #hansel: [@benbeltran]
2012-06-11 08:53:30 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-11 08:53:30 -- Channel created on Mon, 11 Jun 2012 08:53:20
2012-06-11 18:24:57 irc: disconnected from server
2012-06-12 09:18:46 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-06-12 09:18:46 -- Mode #hansel [+ns] by pratchett.freenode.net
2012-06-12 09:18:46 -- Nicks #hansel: [@benbeltran]
2012-06-12 09:18:46 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-12 09:18:52 -- Channel created on Tue, 12 Jun 2012 09:18:46
2012-06-12 13:03:03 irc: disconnected from server
2012-06-12 13:04:15 irc: disconnected from server
2012-06-12 13:05:27 --> benbeltran2 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-06-12 13:05:27 -- Nicks #hansel: [benbeltran1 benbeltran2]
2012-06-12 13:05:27 -- Channel #hansel: 2 nicks (0 ops, 0 halfops, 0 voices, 2 normals)
2012-06-12 13:05:33 -- Channel created on Tue, 12 Jun 2012 09:18:46
2012-06-12 13:07:39 <-- benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has quit (Ping timeout: 246 seconds)
2012-06-12 19:11:35 irc: disconnected from server
2012-06-12 19:22:20 --> benbeltran2 (~benbeltra@189.196.63.221) has joined #hansel
2012-06-12 19:22:20 -- Mode #hansel [+ns] by pratchett.freenode.net
2012-06-12 19:22:20 -- Nicks #hansel: [@benbeltran2]
2012-06-12 19:22:20 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-12 19:22:20 -- Channel created on Tue, 12 Jun 2012 19:22:19
2012-06-13 08:40:07 irc: disconnected from server
2012-06-13 08:40:27 --> benbeltran2 (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-06-13 08:40:27 -- Mode #hansel [+ns] by wolfe.freenode.net
2012-06-13 08:40:27 -- Nicks #hansel: [@benbeltran2]
2012-06-13 08:40:27 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-13 08:40:27 -- Channel created on Wed, 13 Jun 2012 08:40:24
2012-06-13 09:20:55 -- You are now known as benbeltran
2012-06-13 20:19:03 irc: disconnected from server
2012-06-14 09:07:37 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-06-14 09:07:37 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-06-14 09:07:37 -- Nicks #hansel: [@benbeltran]
2012-06-14 09:07:37 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-14 09:07:37 -- Channel created on Thu, 14 Jun 2012 09:07:35
2012-06-14 21:08:55 irc: disconnected from server
2012-06-15 09:24:00 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-06-15 09:24:00 -- Mode #hansel [+ns] by wolfe.freenode.net
2012-06-15 09:24:00 -- Nicks #hansel: [@benbeltran]
2012-06-15 09:24:00 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-15 09:24:06 -- Channel created on Fri, 15 Jun 2012 09:23:58
2012-06-16 18:21:09 irc: disconnected from server
2012-06-16 19:03:55 --> benbeltran (~benbeltra@200.76.82.250) has joined #hansel
2012-06-16 19:03:55 -- Mode #hansel [+ns] by barjavel.freenode.net
2012-06-16 19:03:55 -- Nicks #hansel: [@benbeltran]
2012-06-16 19:03:55 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-16 19:04:02 -- Channel created on Sat, 16 Jun 2012 19:03:52
2012-06-16 20:21:05 irc: disconnected from server
2012-06-17 14:22:54 --> benbeltran (~benbeltra@200.76.90.255) has joined #hansel
2012-06-17 14:22:54 -- Mode #hansel [+ns] by niven.freenode.net
2012-06-17 14:22:54 -- Nicks #hansel: [@benbeltran]
2012-06-17 14:22:54 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-17 14:22:54 -- Channel created on Sun, 17 Jun 2012 14:22:52
2012-06-17 14:29:59 irc: disconnected from server
2012-06-17 14:30:24 --> benbeltran (~benbeltra@200.76.82.129) has joined #hansel
2012-06-17 14:30:24 -- Mode #hansel [+ns] by kornbluth.freenode.net
2012-06-17 14:30:24 -- Nicks #hansel: [@benbeltran]
2012-06-17 14:30:24 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-17 14:30:32 -- Channel created on Sun, 17 Jun 2012 14:30:22
2012-06-17 18:39:17 irc: disconnected from server
2012-06-17 18:39:40 --> benbeltran (~benbeltra@200.76.82.129) has joined #hansel
2012-06-17 18:39:40 -- Mode #hansel [+ns] by asimov.freenode.net
2012-06-17 18:39:40 -- Nicks #hansel: [@benbeltran]
2012-06-17 18:39:40 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-17 18:39:41 -- Channel created on Sun, 17 Jun 2012 18:39:38
2012-06-17 18:58:34 irc: disconnected from server
2012-06-18 09:17:18 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-06-18 09:17:18 -- Mode #hansel [+ns] by adams.freenode.net
2012-06-18 09:17:18 -- Nicks #hansel: [@benbeltran]
2012-06-18 09:17:18 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-18 09:17:24 -- Channel created on Mon, 18 Jun 2012 09:17:14
2012-06-18 17:28:15 irc: disconnected from server
2012-06-19 09:07:29 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-06-19 09:07:29 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-06-19 09:07:29 -- Nicks #hansel: [@benbeltran]
2012-06-19 09:07:29 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-19 09:07:29 -- Channel created on Tue, 19 Jun 2012 09:07:27
2012-06-19 21:50:29 irc: disconnected from server
2012-06-19 21:50:53 --> benbeltran (~benbeltra@200.76.82.169) has joined #hansel
2012-06-19 21:50:53 -- Mode #hansel [+ns] by rajaniemi.freenode.net
2012-06-19 21:50:53 -- Nicks #hansel: [@benbeltran]
2012-06-19 21:50:53 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-19 21:50:53 -- Channel created on Tue, 19 Jun 2012 21:50:52
2012-06-20 07:43:28 irc: disconnected from server
2012-06-20 09:02:29 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-06-20 09:02:29 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-06-20 09:02:29 -- Nicks #hansel: [@benbeltran]
2012-06-20 09:02:29 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-20 09:02:29 -- Channel created on Wed, 20 Jun 2012 09:02:27
2012-06-20 20:05:10 irc: disconnected from server
2012-06-20 20:05:37 --> benbeltran (~benbeltra@200.77.5.199) has joined #hansel
2012-06-20 20:05:37 -- Mode #hansel [+ns] by pratchett.freenode.net
2012-06-20 20:05:37 -- Nicks #hansel: [@benbeltran]
2012-06-20 20:05:37 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-20 20:05:44 -- Channel created on Wed, 20 Jun 2012 20:05:38
2012-06-20 22:29:48 irc: disconnected from server
2012-06-21 08:37:06 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-06-21 08:37:06 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-06-21 08:37:06 -- Nicks #hansel: [@benbeltran]
2012-06-21 08:37:06 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-21 08:37:14 -- Channel created on Thu, 21 Jun 2012 08:37:05
2012-06-21 13:07:21 irc: disconnected from server
2012-06-21 13:07:41 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-06-21 13:07:41 -- Mode #hansel [+ns] by barjavel.freenode.net
2012-06-21 13:07:41 -- Nicks #hansel: [@benbeltran]
2012-06-21 13:07:41 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-21 13:07:47 -- Channel created on Thu, 21 Jun 2012 13:07:41
2012-06-22 09:24:54 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-06-22 09:24:54 -- Mode #hansel [+ns] by zelazny.freenode.net
2012-06-22 09:24:54 -- Nicks #hansel: [@benbeltran]
2012-06-22 09:24:54 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-22 09:24:56 -- Mode #hansel [+ns]
2012-06-22 09:24:56 -- Channel created on Fri, 22 Jun 2012 09:24:52
2012-06-22 10:37:26 irc: disconnected from server
2012-06-22 11:18:49 --> benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #hansel
2012-06-22 11:18:49 -- Mode #hansel [+ns] by sendak.freenode.net
2012-06-22 11:18:49 -- Nicks #hansel: [@benbeltran]
2012-06-22 11:18:49 -- Channel #hansel: 1 nicks (1 ops, 0 halfops, 0 voices, 0 normals)
2012-06-22 11:18:49 -- Notice(sendak.freenode.net): [freenode-info] channel trolls and no channel staff around to help? please check with freenode support: http://freenode.net/faq.shtml#gettinghelp
2012-06-22 11:18:52 -- Mode #hansel [+ns]
2012-06-22 11:18:52 -- Channel created on Fri, 22 Jun 2012 11:18:47
|