-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path1.5.0-DEV-ed177d17d6.log
1516 lines (1257 loc) · 62 KB
/
1.5.0-DEV-ed177d17d6.log
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
Julia Version 1.5.0-DEV.158
Commit ed177d17d6 (2020-01-27 16:45 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
CPU: Intel(R) Xeon(R) Silver 4114 CPU @ 2.20GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-8.0.1 (ORCJIT, skylake)
Environment:
JULIA_DEPOT_PATH = ::/usr/local/share/julia
JULIA_NUM_THREADS = 2
Resolving package versions...
Installed IniFile ──────────── v0.5.0
Installed Parsers ──────────── v0.3.10
Installed CodecZlib ────────── v0.6.0
Installed MbedTLS ──────────── v0.7.0
Installed TranscodingStreams ─ v0.9.5
Installed HTTP ─────────────── v0.8.8
Installed StackOverflow ────── v0.1.2
Installed JSON ─────────────── v0.21.0
Installed BinaryProvider ───── v0.5.8
Updating `~/.julia/environments/v1.5/Project.toml`
[1a8df32f] + StackOverflow v0.1.2
Updating `~/.julia/environments/v1.5/Manifest.toml`
[b99e7846] + BinaryProvider v0.5.8
[944b1d66] + CodecZlib v0.6.0
[cd3eb016] + HTTP v0.8.8
[83e8ac13] + IniFile v0.5.0
[682c06a0] + JSON v0.21.0
[739be429] + MbedTLS v0.7.0
[69de0a69] + Parsers v0.3.10
[1a8df32f] + StackOverflow v0.1.2
[3bb67fe8] + TranscodingStreams v0.9.5
[2a0f44e3] + Base64
[ade2ca70] + Dates
[8ba89e20] + Distributed
[b77e0a4c] + InteractiveUtils
[8f399da3] + Libdl
[56ddb016] + Logging
[d6f4376e] + Markdown
[a63ad114] + Mmap
[de0858da] + Printf
[9a3f8284] + Random
[ea8e919c] + SHA
[9e88b42a] + Serialization
[6462fe0b] + Sockets
[8dfed614] + Test
[4ec0a83e] + Unicode
Building MbedTLS ──→ `~/.julia/packages/MbedTLS/a1JFn/deps/build.log`
Updating `/tmp/jl_zRbjlY/Project.toml`
[no changes]
Updating `/tmp/jl_zRbjlY/Manifest.toml`
[no changes]
Building CodecZlib → `~/.julia/packages/CodecZlib/5t9zO/deps/build.log`
Updating `/tmp/jl_MIimD9/Project.toml`
[no changes]
Updating `/tmp/jl_MIimD9/Manifest.toml`
[no changes]
Testing StackOverflow
Updating `/tmp/jl_JM604J/Project.toml`
[no changes]
Updating `/tmp/jl_JM604J/Manifest.toml`
[no changes]
Running sandbox
Status `/tmp/jl_JM604J/Project.toml`
[944b1d66] CodecZlib v0.6.0
[cd3eb016] HTTP v0.8.8
[682c06a0] JSON v0.21.0
[1a8df32f] StackOverflow v0.1.2
[8dfed614] Test
rank silver
name Booster
badge_id 261
link https://stackoverflow.com/badges/261/booster
user Dict{String,Any}("accept_rate" => 80,"user_type" => "registered","display_name" => "Adil Akhter","reputation" => 182,"user_id" => 38543,"link" => "https://stackoverflow.com/users/38543/adil-akhter","profile_image" => "https://www.gravatar.com/avatar/59ef9df7afdd03d047c860af2456a64e?s=128&d=identicon&r=PG&f=1")
badge_type named
rank bronze
name Autobiographer
badge_id 9
link https://stackoverflow.com/badges/9/autobiographer
user Dict{String,Any}("user_type" => "registered","display_name" => "amin horri","reputation" => 1,"user_id" => 12796767,"link" => "https://stackoverflow.com/users/12796767/amin-horri","profile_image" => "https://lh3.googleusercontent.com/a-/AAuE7mB7WUrxv6YSJMM1MJsd_TbcgzJaiNnSBxMFbbx3=k-s128=k-s128")
badge_type named
rank bronze
name Autobiographer
badge_id 9
link https://stackoverflow.com/badges/9/autobiographer
user Dict{String,Any}("user_type" => "registered","display_name" => "van08740404","reputation" => 1,"user_id" => 12796832,"link" => "https://stackoverflow.com/users/12796832/van08740404","profile_image" => "https://i.stack.imgur.com/nSeKB.jpg?s=128&g=1")
badge_type named
rank bronze
name Autobiographer
badge_id 9
link https://stackoverflow.com/badges/9/autobiographer
user Dict{String,Any}("user_type" => "registered","display_name" => "Absolute Marketing","reputation" => 1,"user_id" => 12796835,"link" => "https://stackoverflow.com/users/12796835/absolute-marketing","profile_image" => "https://i.stack.imgur.com/ewtsv.png?s=128&g=1")
badge_type named
rank bronze
name Editor
badge_id 3
link https://stackoverflow.com/badges/3/editor
user Dict{String,Any}("user_type" => "registered","display_name" => "Android SD9201","reputation" => 1,"user_id" => 12639199,"link" => "https://stackoverflow.com/users/12639199/android-sd9201","profile_image" => "https://www.gravatar.com/avatar/2ca5346b5b3a5c0f5e8458b5a1b45f41?s=128&d=identicon&r=PG&f=1")
badge_type named
rank bronze
name Editor
badge_id 3
link https://stackoverflow.com/badges/3/editor
user Dict{String,Any}("user_type" => "registered","display_name" => "Ryan Gilbert","reputation" => 3,"user_id" => 8692107,"link" => "https://stackoverflow.com/users/8692107/ryan-gilbert","profile_image" => "https://www.gravatar.com/avatar/07538bce24185aa4e48d162b5b5b9770?s=128&d=identicon&r=PG&f=1")
badge_type named
rank bronze
name Editor
badge_id 3
link https://stackoverflow.com/badges/3/editor
user Dict{String,Any}("user_type" => "registered","display_name" => "shikha","reputation" => 1,"user_id" => 12791063,"link" => "https://stackoverflow.com/users/12791063/shikha","profile_image" => "https://www.gravatar.com/avatar/ef790b8c6e05158f9e6fb040a4b501b4?s=128&d=identicon&r=PG&f=1")
badge_type named
rank bronze
name Informed
badge_id 2600
link https://stackoverflow.com/badges/2600/informed
user Dict{String,Any}("user_type" => "registered","display_name" => "VH Abeyvickrama","reputation" => 1,"user_id" => 12783607,"link" => "https://stackoverflow.com/users/12783607/vh-abeyvickrama","profile_image" => "https://www.gravatar.com/avatar/29212b7f8bea28b8dded6211d4fe17d8?s=128&d=identicon&r=PG&f=1")
badge_type named
rank bronze
name Citizen Patrol
badge_id 8
link https://stackoverflow.com/badges/8/citizen-patrol
user Dict{String,Any}("user_type" => "registered","display_name" => "Anjali Shah","reputation" => 603,"user_id" => 10584330,"link" => "https://stackoverflow.com/users/10584330/anjali-shah","profile_image" => "https://i.stack.imgur.com/1I1jK.jpg?s=128&g=1")
badge_type named
rank bronze
name Informed
badge_id 2600
link https://stackoverflow.com/badges/2600/informed
user Dict{String,Any}("user_type" => "registered","display_name" => "YoungMin Kim","reputation" => 1,"user_id" => 6616813,"link" => "https://stackoverflow.com/users/6616813/youngmin-kim","profile_image" => "https://graph.facebook.com/10209021632726312/picture?type=large")
badge_type named
rank bronze
name Autobiographer
badge_id 9
link https://stackoverflow.com/badges/9/autobiographer
user Dict{String,Any}("user_type" => "registered","display_name" => "Huffman Gottlieb","reputation" => 1,"user_id" => 12789206,"link" => "https://stackoverflow.com/users/12789206/huffman-gottlieb","profile_image" => "https://www.gravatar.com/avatar/3c9efde882382aded990d0953c819d5b?s=128&d=identicon&r=PG&f=1")
badge_type named
rank bronze
name Autobiographer
badge_id 9
link https://stackoverflow.com/badges/9/autobiographer
user Dict{String,Any}("user_type" => "registered","display_name" => "Fildena 150 Mg","reputation" => 1,"user_id" => 12796794,"link" => "https://stackoverflow.com/users/12796794/fildena-150-mg","profile_image" => "https://i.stack.imgur.com/z46IH.jpg?s=128&g=1")
badge_type named
rank bronze
name Autobiographer
badge_id 9
link https://stackoverflow.com/badges/9/autobiographer
user Dict{String,Any}("user_type" => "registered","display_name" => "Xu Breum","reputation" => 1,"user_id" => 12796795,"link" => "https://stackoverflow.com/users/12796795/xu-breum","profile_image" => "https://www.gravatar.com/avatar/cbfdcc9c6862d3e6bdead740e38445c8?s=128&d=identicon&r=PG&f=1")
badge_type named
rank bronze
name Autobiographer
badge_id 9
link https://stackoverflow.com/badges/9/autobiographer
user Dict{String,Any}("user_type" => "registered","display_name" => "Gregory Shapiro","reputation" => 1,"user_id" => 12796800,"link" => "https://stackoverflow.com/users/12796800/gregory-shapiro","profile_image" => "https://www.gravatar.com/avatar/8c80a6fc77d9a265430b3e9db0d24efb?s=128&d=identicon&r=PG&f=1")
badge_type named
rank bronze
name Autobiographer
badge_id 9
link https://stackoverflow.com/badges/9/autobiographer
user Dict{String,Any}("user_type" => "registered","display_name" => "caldiswmiy","reputation" => 1,"user_id" => 12796808,"link" => "https://stackoverflow.com/users/12796808/caldiswmiy","profile_image" => "https://www.gravatar.com/avatar/294f689fb9cbc169aa79ae5e40b8e97f?s=128&d=identicon&r=PG&f=1")
badge_type named
rank bronze
name Autobiographer
badge_id 9
link https://stackoverflow.com/badges/9/autobiographer
user Dict{String,Any}("user_type" => "registered","display_name" => "Pollock Hassan","reputation" => 1,"user_id" => 12796490,"link" => "https://stackoverflow.com/users/12796490/pollock-hassan","profile_image" => "https://www.gravatar.com/avatar/8d560eba61d9df55cb29dba0685c9261?s=128&d=identicon&r=PG&f=1")
badge_type named
rank bronze
name Autobiographer
badge_id 9
link https://stackoverflow.com/badges/9/autobiographer
user Dict{String,Any}("user_type" => "registered","display_name" => "Harry Thomas","reputation" => 1,"user_id" => 12796784,"link" => "https://stackoverflow.com/users/12796784/harry-thomas","profile_image" => "https://www.gravatar.com/avatar/ccea3741686a00a9eafac273d1b3baa0?s=128&d=identicon&r=PG&f=1")
badge_type named
rank bronze
name Editor
badge_id 3
link https://stackoverflow.com/badges/3/editor
user Dict{String,Any}("user_type" => "registered","display_name" => "Suraj Rathore","reputation" => 9,"user_id" => 12787306,"link" => "https://stackoverflow.com/users/12787306/suraj-rathore","profile_image" => "https://graph.facebook.com/824810621020722/picture?type=large")
badge_type named
rank silver
name Enthusiast
badge_id 71
link https://stackoverflow.com/badges/71/enthusiast
user Dict{String,Any}("accept_rate" => 92,"user_type" => "registered","display_name" => "dijkstra","reputation" => 1008,"user_id" => 1644091,"link" => "https://stackoverflow.com/users/1644091/dijkstra","profile_image" => "https://www.gravatar.com/avatar/b0a5862dd1ea123604c78b12c62094d9?s=128&d=identicon&r=PG")
badge_type named
rank silver
name Necromancer
badge_id 17
link https://stackoverflow.com/badges/17/necromancer
user Dict{String,Any}("accept_rate" => 69,"user_type" => "registered","display_name" => "Ian Kemp","reputation" => 20054,"user_id" => 70345,"link" => "https://stackoverflow.com/users/70345/ian-kemp","profile_image" => "https://i.stack.imgur.com/pkw6V.png?s=128&g=1")
badge_type named
rank silver
name Necromancer
badge_id 17
link https://stackoverflow.com/badges/17/necromancer
user Dict{String,Any}("user_type" => "registered","display_name" => "honzakuzel1989","reputation" => 1662,"user_id" => 2013192,"link" => "https://stackoverflow.com/users/2013192/honzakuzel1989","profile_image" => "https://www.gravatar.com/avatar/f61664c28be6e3faeb34d1ba67c043e2?s=128&d=identicon&r=PG")
badge_type named
rank silver
name Notable Question
badge_id 27
link https://stackoverflow.com/badges/27/notable-question
user Dict{String,Any}("accept_rate" => 55,"user_type" => "registered","display_name" => "NoBullMan","reputation" => 1531,"user_id" => 1210350,"link" => "https://stackoverflow.com/users/1210350/nobullman","profile_image" => "https://i.stack.imgur.com/krY4V.jpg?s=128&g=1")
badge_type named
rank silver
name Notable Question
badge_id 27
link https://stackoverflow.com/badges/27/notable-question
user Dict{String,Any}("user_type" => "registered","display_name" => "Manohar Patil","reputation" => 167,"user_id" => 2128364,"link" => "https://stackoverflow.com/users/2128364/manohar-patil","profile_image" => "https://www.gravatar.com/avatar/5838cf64dd6917fc5691a0a36d1870af?s=128&d=identicon&r=PG")
badge_type named
rank bronze
name Peer Pressure
badge_id 38
link https://stackoverflow.com/badges/38/peer-pressure
user Dict{String,Any}("user_type" => "registered","display_name" => "Ranvir","reputation" => 60,"user_id" => 7999081,"link" => "https://stackoverflow.com/users/7999081/ranvir","profile_image" => "https://www.gravatar.com/avatar/2749352991508c175717b15eb2b66788?s=128&d=identicon&r=PG&f=1")
badge_type named
rank bronze
name Popular Question
badge_id 26
link https://stackoverflow.com/badges/26/popular-question
user Dict{String,Any}("accept_rate" => 0,"user_type" => "registered","display_name" => "user9434613","reputation" => 69,"user_id" => 9434613,"link" => "https://stackoverflow.com/users/9434613/user9434613","profile_image" => "https://www.gravatar.com/avatar/6d4858f5612ed281d01cd9d0cf41eb9f?s=128&d=identicon&r=PG&f=1")
badge_type named
rank bronze
name Popular Question
badge_id 26
link https://stackoverflow.com/badges/26/popular-question
user Dict{String,Any}("accept_rate" => 100,"user_type" => "registered","display_name" => "jamji","reputation" => 27,"user_id" => 4813751,"link" => "https://stackoverflow.com/users/4813751/jamji","profile_image" => "https://www.gravatar.com/avatar/7ec781d9ab222b3b3880ff719b041d05?s=128&d=identicon&r=PG&f=1")
badge_type named
rank bronze
name Popular Question
badge_id 26
link https://stackoverflow.com/badges/26/popular-question
user Dict{String,Any}("user_type" => "registered","display_name" => "Andy","reputation" => 11,"user_id" => 8825474,"link" => "https://stackoverflow.com/users/8825474/andy","profile_image" => "https://www.gravatar.com/avatar/d071457dfd38ae9e0815c2ec2303e514?s=128&d=identicon&r=PG&f=1")
badge_type named
rank bronze
name Popular Question
badge_id 26
link https://stackoverflow.com/badges/26/popular-question
user Dict{String,Any}("user_type" => "registered","display_name" => "user1383201","reputation" => 75,"user_id" => 1383201,"link" => "https://stackoverflow.com/users/1383201/user1383201","profile_image" => "https://www.gravatar.com/avatar/1411301e0103dace83b8ca3e6828a110?s=128&d=identicon&r=PG")
badge_type named
rank bronze
name Popular Question
badge_id 26
link https://stackoverflow.com/badges/26/popular-question
user Dict{String,Any}("accept_rate" => 100,"user_type" => "registered","display_name" => "jangles","reputation" => 142,"user_id" => 8142044,"link" => "https://stackoverflow.com/users/8142044/jangles","profile_image" => "https://www.gravatar.com/avatar/842112a82f3cd32bba526c15db7f00ef?s=128&d=identicon&r=PG&f=1")
badge_type named
rank bronze
name Popular Question
badge_id 26
link https://stackoverflow.com/badges/26/popular-question
user Dict{String,Any}("accept_rate" => 84,"user_type" => "registered","display_name" => "onedevteam.com","reputation" => 2788,"user_id" => 632224,"link" => "https://stackoverflow.com/users/632224/onedevteam-com","profile_image" => "https://www.gravatar.com/avatar/4b12f7b60da367c18721cc8918003bb2?s=128&d=identicon&r=PG")
badge_type named
StackOverflow.SiteInfo
new_active_users: Int64 14
total_users: Int64 11684633
badges_per_minute: Float64 5.69
total_badges: Int64 34389076
total_votes: Int64 149620774
total_comments: Int64 89843935
answers_per_minute: Float64 4.73
questions_per_minute: Float64 3.12
total_answers: Int64 28590774
total_accepted: Int64 9849464
total_unanswered: Int64 5582091
total_questions: Int64 18845588
name julia
count 6353
name julian-date
count 215
name julia-jump
count 176
name ijulia-notebook
count 104
name julia-studio
count 21
name julia-gpu
count 13
name juliadb
count 5
name julia-gen
count 1
name julia-pkg
count 1
last_modified_date : 1579795814
is_employee : false
reputation_change_month : 5738
user_id : 22656
creation_date : 1222430705
link : https://stackoverflow.com/users/22656/jon-skeet
location : Reading, United Kingdom
account_id : 11683
reputation_change_day : 110
reputation_change_week : 525
website_url : http://csharpindepth.com
reputation_change_quarter : 5738
accept_rate : 86
reputation : 1159810
profile_image : https://www.gravatar.com/avatar/6d8ebb117e8d83d74ea95fbdd0f87e13?s=128&d=identicon&r=PG
reputation_change_year : 5738
last_access_date : 1580162157
user_type : registered
display_name : Jon Skeet
badge_counts : Dict{String,Any}("silver" => 8341,"gold" => 737,"bronze" => 8685)
last_modified_date : 1580084718
is_employee : false
reputation_change_month : 6568
user_id : 6309
creation_date : 1221344553
link : https://stackoverflow.com/users/6309/vonc
location : France
account_id : 4243
reputation_change_day : 84
reputation_change_week : 507
website_url : http://careers.stackoverflow.com/vonc
reputation_change_quarter : 6568
accept_rate : 100
reputation : 925069
profile_image : https://www.gravatar.com/avatar/7aa22372b695ed2b26052c340f9097eb?s=128&d=identicon&r=PG
reputation_change_year : 6568
last_access_date : 1580193318
user_type : registered
display_name : VonC
badge_counts : Dict{String,Any}("silver" => 3115,"gold" => 362,"bronze" => 3671)
last_modified_date : 1580148005
is_employee : false
reputation_change_month : 4518
user_id : 157882
creation_date : 1250527322
link : https://stackoverflow.com/users/157882/balusc
location : Willemstad, Curaçao
account_id : 52822
reputation_change_day : 20
reputation_change_week : 281
website_url : http://balusc.omnifaces.org
reputation_change_quarter : 4518
accept_rate : 93
reputation : 910343
profile_image : https://www.gravatar.com/avatar/89927e2f4bde24991649b353a37678b9?s=128&d=identicon&r=PG
reputation_change_year : 4518
last_access_date : 1580168094
user_type : registered
display_name : BalusC
badge_counts : Dict{String,Any}("silver" => 3329,"gold" => 320,"bronze" => 3335)
last_modified_date : 1580149811
is_employee : false
reputation_change_month : 10476
user_id : 1144035
creation_date : 1326311637
link : https://stackoverflow.com/users/1144035/gordon-linoff
location : New York, United States
account_id : 1165580
reputation_change_day : 80
reputation_change_week : 964
website_url : http://www.data-miners.com
reputation_change_quarter : 10476
reputation : 908124
profile_image : https://www.gravatar.com/avatar/e514b017977ebf742a418cac697d8996?s=128&d=identicon&r=PG
reputation_change_year : 10476
last_access_date : 1580182319
user_type : registered
display_name : Gordon Linoff
badge_counts : Dict{String,Any}("silver" => 381,"gold" => 39,"bronze" => 491)
last_modified_date : 1579296009
is_employee : false
reputation_change_month : 3979
user_id : 29407
creation_date : 1224432467
link : https://stackoverflow.com/users/29407/darin-dimitrov
location : Sofia, Bulgaria
account_id : 14332
reputation_change_day : 30
reputation_change_week : 318
website_url : http://stackoverflow.com/search?q=user%3a29407&tab=newest
reputation_change_quarter : 3979
accept_rate : 86
reputation : 896062
profile_image : https://www.gravatar.com/avatar/e3a181e9cdd4757a8b416d93878770c5?s=128&d=identicon&r=PG
reputation_change_year : 3979
last_access_date : 1580142943
user_type : registered
display_name : Darin Dimitrov
badge_counts : Dict{String,Any}("silver" => 3099,"gold" => 236,"bronze" => 2803)
last_modified_date : 1579519822
is_employee : true
reputation_change_month : 4651
user_id : 23354
creation_date : 1222667162
link : https://stackoverflow.com/users/23354/marc-gravell
location : Forest of Dean, United Kingdom
account_id : 11975
reputation_change_day : 20
reputation_change_week : 305
website_url : http://blog.marcgravell.com
reputation_change_quarter : 4651
accept_rate : 100
reputation : 844326
profile_image : https://i.stack.imgur.com/3vbu5.jpg?s=128&g=1
reputation_change_year : 4651
last_access_date : 1580157379
user_type : moderator
display_name : Marc Gravell
badge_counts : Dict{String,Any}("silver" => 2279,"gold" => 220,"bronze" => 2658)
last_modified_date : 1580142901
is_employee : false
reputation_change_month : 4748
user_id : 115145
creation_date : 1243786808
link : https://stackoverflow.com/users/115145/commonsware
location : Pennsylvania, United States
account_id : 39846
reputation_change_day : 10
reputation_change_week : 235
website_url : https://commonsware.com
reputation_change_quarter : 4748
accept_rate : 84
reputation : 832269
profile_image : https://i.stack.imgur.com/wDnd8.png?s=128&g=1
reputation_change_year : 4748
last_access_date : 1580169562
user_type : registered
display_name : CommonsWare
badge_counts : Dict{String,Any}("silver" => 2036,"gold" => 152,"bronze" => 2068)
last_modified_date : 1579956601
is_employee : false
reputation_change_month : 2208
user_id : 17034
creation_date : 1221698729
link : https://stackoverflow.com/users/17034/hans-passant
location : Madison, WI
account_id : 9266
reputation_change_day : 20
reputation_change_week : 117
website_url :
reputation_change_quarter : 2208
reputation : 827640
profile_image : https://i.stack.imgur.com/Cii6b.png?s=128&g=1
reputation_change_year : 2208
last_access_date : 1580177144
user_type : registered
display_name : Hans Passant
badge_counts : Dict{String,Any}("silver" => 1436,"gold" => 120,"bronze" => 2220)
last_modified_date : 1580140524
is_employee : false
reputation_change_month : 5961
user_id : 100297
creation_date : 1241362437
link : https://stackoverflow.com/users/100297/martijn-pieters
location : Cambridge, UK
account_id : 35417
reputation_change_day : 110
reputation_change_week : 540
website_url : http://www.zopatista.com/
reputation_change_quarter : 5961
reputation : 788716
profile_image : https://www.gravatar.com/avatar/24780fb6df85a943c7aea0402c843737?s=128&d=identicon&r=PG
reputation_change_year : 5961
last_access_date : 1580168476
user_type : moderator
display_name : Martijn Pieters
badge_counts : Dict{String,Any}("silver" => 2907,"gold" => 186,"bronze" => 2588)
last_modified_date : 1580143813
is_employee : false
reputation_change_month : 6432
user_id : 157247
creation_date : 1250420422
link : https://stackoverflow.com/users/157247/t-j-crowder
location : United Kingdom
account_id : 52616
reputation_change_day : 50
reputation_change_week : 542
website_url : http://www.farsightsoftware.com
reputation_change_quarter : 6432
accept_rate : 91
reputation : 767927
profile_image : https://www.gravatar.com/avatar/ca3e484c121268e4c8302616b2395eb9?s=128&d=identicon&r=PG
reputation_change_year : 6432
last_access_date : 1580151110
user_type : registered
display_name : T.J. Crowder
badge_counts : Dict{String,Any}("silver" => 1404,"gold" => 139,"bronze" => 1463)
last_modified_date : 1579771813
is_employee : false
reputation_change_month : 4828
user_id : 893
creation_date : 1218356820
link : https://stackoverflow.com/users/893/greg-hewgill
location : Christchurch, New Zealand
account_id : 680
reputation_change_day : 10
reputation_change_week : 330
website_url : http://hewgill.com
reputation_change_quarter : 4828
accept_rate : 84
reputation : 737680
profile_image : https://www.gravatar.com/avatar/747ffa5da3538e66840ebc0548b8fd58?s=128&d=identicon&r=PG
reputation_change_year : 4828
last_access_date : 1580160921
user_type : registered
display_name : Greg Hewgill
badge_counts : Dict{String,Any}("silver" => 1051,"gold" => 160,"bronze" => 1201)
last_modified_date : 1579615519
is_employee : false
reputation_change_month : 4312
user_id : 34397
creation_date : 1225829805
link : https://stackoverflow.com/users/34397/slaks
location : New Jersey
account_id : 15988
reputation_change_day : 40
reputation_change_week : 300
website_url : https://SLaks.net
reputation_change_quarter : 4312
accept_rate : 87
reputation : 736074
profile_image : https://www.gravatar.com/avatar/7deca8ec973c3c0875e9a36e1e3e2c44?s=128&d=identicon&r=PG
reputation_change_year : 4312
last_access_date : 1579719843
user_type : registered
display_name : SLaks
badge_counts : Dict{String,Any}("silver" => 1723,"gold" => 156,"bronze" => 1831)
last_modified_date : 1580166305
is_employee : false
reputation_change_month : 5113
user_id : 19068
creation_date : 1221842906
link : https://stackoverflow.com/users/19068/quentin
location : United Kingdom
account_id : 10162
reputation_change_day : 30
reputation_change_week : 375
website_url :
reputation_change_quarter : 5113
reputation : 709079
profile_image : https://www.gravatar.com/avatar/1d2d3229ed1961d2bd81853242493247?s=128&d=identicon&r=PG
reputation_change_year : 5113
last_access_date : 1580168318
user_type : registered
display_name : Quentin
badge_counts : Dict{String,Any}("silver" => 958,"gold" => 86,"bronze" => 1108)
last_modified_date : 1579417818
is_employee : false
reputation_change_month : 4238
user_id : 14860
creation_date : 1221622605
link : https://stackoverflow.com/users/14860/paxdiablo
account_id : 8291
reputation_change_day : 20
reputation_change_week : 270
website_url :
reputation_change_quarter : 4238
accept_rate : 100
reputation : 693847
profile_image : https://i.stack.imgur.com/vXG1F.png?s=128&g=1
reputation_change_year : 4238
last_access_date : 1580184862
user_type : registered
display_name : paxdiablo
badge_counts : Dict{String,Any}("silver" => 1363,"gold" => 192,"bronze" => 1747)
last_modified_date : 1580142901
is_employee : false
reputation_change_month : 4360
user_id : 95810
creation_date : 1240625354
link : https://stackoverflow.com/users/95810/alex-martelli
location : Sunnyvale, CA
account_id : 34048
reputation_change_day : 30
reputation_change_week : 360
website_url : http://www.aleax.it
reputation_change_quarter : 4360
accept_rate : 80
reputation : 683642
profile_image : https://www.gravatar.com/avatar/e8d5fe90f1fe2148bf130cccd4dc311c?s=128&d=identicon&r=PG
reputation_change_year : 4360
last_access_date : 1580162231
user_type : registered
display_name : Alex Martelli
badge_counts : Dict{String,Any}("silver" => 1087,"gold" => 138,"bronze" => 1302)
last_modified_date : 1579615519
is_employee : false
reputation_change_month : 4010
user_id : 5445
creation_date : 1220976258
link : https://stackoverflow.com/users/5445/cms
location : Guatemala
account_id : 3748
reputation_change_day : 50
reputation_change_week : 290
website_url : http://codingspot.com
reputation_change_quarter : 4010
reputation : 649027
profile_image : https://www.gravatar.com/avatar/932fb89b9d4049cec5cba357bf0ae388?s=128&d=identicon&r=PG
reputation_change_year : 4010
last_access_date : 1580152018
user_type : registered
display_name : CMS
badge_counts : Dict{String,Any}("silver" => 869,"gold" => 168,"bronze" => 819)
last_modified_date : 1579615519
is_employee : false
reputation_change_month : 4197
user_id : 61974
creation_date : 1233672960
link : https://stackoverflow.com/users/61974/mark-byers
location : Denmark
account_id : 24377
reputation_change_day : 0
reputation_change_week : 260
website_url : http://careers.stackoverflow.com/markbyers/
reputation_change_quarter : 4197
reputation : 644654
profile_image : https://www.gravatar.com/avatar/ad240ed5cc406759f0fd72591dc8ca47?s=128&d=identicon&r=PG
reputation_change_year : 4197
last_access_date : 1580016538
user_type : registered
display_name : Mark Byers
badge_counts : Dict{String,Any}("silver" => 1428,"gold" => 144,"bronze" => 1366)
last_modified_date : 1580159122
is_employee : false
reputation_change_month : 1984
user_id : 335858
creation_date : 1273269250
link : https://stackoverflow.com/users/335858/dasblinkenlight
location : United States
account_id : 134022
reputation_change_day : 20
reputation_change_week : 140
website_url : http://stackoverflow.com/users/335858/dasblinkenlight
reputation_change_quarter : 1984
accept_rate : 81
reputation : 640514
profile_image : https://www.gravatar.com/avatar/4af3541c00d591e9a518b9c0b3b1190a?s=128&d=identicon&r=PG
reputation_change_year : 1984
last_access_date : 1580181855
user_type : registered
display_name : dasblinkenlight
badge_counts : Dict{String,Any}("silver" => 878,"gold" => 67,"bronze" => 1288)
last_modified_date : 1578648302
is_employee : false
reputation_change_month : 3536
user_id : 20862
creation_date : 1222135580
link : https://stackoverflow.com/users/20862/ignacio-vazquez-abrams
account_id : 10930
reputation_change_day : 20
reputation_change_week : 218
website_url :
reputation_change_quarter : 3536
accept_rate : 50
reputation : 632290
profile_image : https://www.gravatar.com/avatar/2343ae368d3241278581ce6c87f62a25?s=128&d=identicon&r=PG
reputation_change_year : 3536
last_access_date : 1546328601
user_type : registered
display_name : Ignacio Vazquez-Abrams
badge_counts : Dict{String,Any}("silver" => 1135,"gold" => 114,"bronze" => 1221)
last_modified_date : 1579863910
is_employee : false
reputation_change_month : 4599
user_id : 218196
creation_date : 1259104089
link : https://stackoverflow.com/users/218196/felix-kling
account_id : 76141
reputation_change_day : 40
reputation_change_week : 380
website_url : http://felix-kling.de
reputation_change_quarter : 4599
accept_rate : 100
reputation : 622080
profile_image : https://i.stack.imgur.com/4P5DY.jpg?s=128&g=1
reputation_change_year : 4599
last_access_date : 1580170560
user_type : registered
display_name : Felix Kling
badge_counts : Dict{String,Any}("silver" => 934,"gold" => 140,"bronze" => 999)
last_modified_date : 1579615519
is_employee : false
reputation_change_month : 3129
user_id : 13302
creation_date : 1221588555
link : https://stackoverflow.com/users/13302/marc-s
location : Bern, Switzerland
account_id : 7633
reputation_change_day : 30
reputation_change_week : 304
website_url :
reputation_change_quarter : 3129
accept_rate : 99
reputation : 621749
profile_image : https://www.gravatar.com/avatar/b4779212f57ff2e9549ea90a4499c2d7?s=128&d=identicon&r=PG
reputation_change_year : 3129
last_access_date : 1580192634
user_type : registered
display_name : marc_s
badge_counts : Dict{String,Any}("silver" => 1183,"gold" => 141,"bronze" => 1318)
last_modified_date : 1579727401
is_employee : false
reputation_change_month : 3380
user_id : 23283
creation_date : 1222642783
link : https://stackoverflow.com/users/23283/jaredpar
location : Redmond, WA
account_id : 11948
reputation_change_day : 20
reputation_change_week : 248
website_url : http://blog.paranoidcoding.com/
reputation_change_quarter : 3380
accept_rate : 100
reputation : 619484
profile_image : https://www.gravatar.com/avatar/529ba429a58902bef56c2fcb672d5ccb?s=128&d=identicon&r=PG
reputation_change_year : 3380
last_access_date : 1579306227
user_type : registered
display_name : JaredPar
badge_counts : Dict{String,Any}("silver" => 1129,"gold" => 129,"bronze" => 1379)
last_modified_date : 1577838234
is_employee : false
reputation_change_month : 4990
user_id : 190597
creation_date : 1255610900
link : https://stackoverflow.com/users/190597/unutbu
account_id : 64585
reputation_change_day : 60
reputation_change_week : 360
website_url :
reputation_change_quarter : 4990
accept_rate : 88
reputation : 617742
profile_image : https://www.gravatar.com/avatar/aabc98d5c6482ca0e1405ec97710f30a?s=128&d=identicon&r=PG&f=1
reputation_change_year : 4990
last_access_date : 1580053039
user_type : registered
display_name : unutbu
badge_counts : Dict{String,Any}("silver" => 1356,"gold" => 122,"bronze" => 1381)
last_modified_date : 1579026916
is_employee : false
reputation_change_month : 3415
user_id : 15168
creation_date : 1221633947
link : https://stackoverflow.com/users/15168/jonathan-leffler
location : Colorado, USA
account_id : 8423
reputation_change_day : 55
reputation_change_week : 205
website_url : https://stackoverflow.com/users/15168
reputation_change_quarter : 3415
accept_rate : 100
reputation : 612026
profile_image : https://i.stack.imgur.com/WtEI9.png?s=128&g=1
reputation_change_year : 3415
last_access_date : 1580193057
user_type : registered
display_name : Jonathan Leffler
badge_counts : Dict{String,Any}("silver" => 734,"gold" => 105,"bronze" => 1102)
last_modified_date : 1579296306
is_employee : false
reputation_change_month : 2846
user_id : 69083
creation_date : 1235161492
link : https://stackoverflow.com/users/69083/guffa
location : Virsbo, Sweden
account_id : 26521
reputation_change_day : 10
reputation_change_week : 108
website_url : http://www.guffa.com
reputation_change_quarter : 2846
reputation : 594233
profile_image : https://www.gravatar.com/avatar/1db0cdfd3fe268e270ec481a73046c2f?s=128&d=identicon&r=PG
reputation_change_year : 2846
last_access_date : 1580123284
user_type : registered
display_name : Guffa
badge_counts : Dict{String,Any}("silver" => 618,"gold" => 85,"bronze" => 905)
last_modified_date : 1579992917
is_employee : false
reputation_change_month : 3977
user_id : 571407
creation_date : 1294757277
link : https://stackoverflow.com/users/571407/jb-nizet
location : Saint-Etienne, France
account_id : 277416
reputation_change_day : 40
reputation_change_week : 220
website_url :
reputation_change_quarter : 3977
accept_rate : 100
reputation : 587996
profile_image : https://www.gravatar.com/avatar/2f0d9dec16bae1e06552af55ddefc11f?s=128&d=identicon&r=PG
reputation_change_year : 3977
last_access_date : 1580028223
user_type : registered
display_name : JB Nizet
badge_counts : Dict{String,Any}("silver" => 992,"gold" => 73,"bronze" => 1090)
last_modified_date : 1580046911
is_employee : false
reputation_change_month : 2909
user_id : 88656
creation_date : 1239204526
link : https://stackoverflow.com/users/88656/eric-lippert
location : Seattle, WA
account_id : 32093
reputation_change_day : 45
reputation_change_week : 206
website_url : http://ericlippert.com
reputation_change_quarter : 2909
reputation : 578500
profile_image : https://www.gravatar.com/avatar/6fbdff3ffb6f111d172759b4f05bea0e?s=128&d=identicon&r=PG
reputation_change_year : 2909
last_access_date : 1580192091
user_type : registered
display_name : Eric Lippert
badge_counts : Dict{String,Any}("silver" => 1120,"gold" => 156,"bronze" => 1997)
last_modified_date : 1580114708
is_employee : false
reputation_change_month : 3279
user_id : 548225
creation_date : 1292821840
link : https://stackoverflow.com/users/548225/anubhava
location : Bangalore, India
account_id : 262968
reputation_change_day : 30
reputation_change_week : 255
website_url : http://anubhava.wordpress.com
reputation_change_quarter : 3279
accept_rate : 90
reputation : 575955
profile_image : https://www.gravatar.com/avatar/dab08478b226280d4a30894c9a7ed719?s=128&d=identicon&r=PG
reputation_change_year : 3279
last_access_date : 1580172048
user_type : registered
display_name : anubhava
badge_counts : Dict{String,Any}("silver" => 379,"gold" => 50,"bronze" => 454)
last_modified_date : 1580116513
is_employee : false
reputation_change_month : 4295
user_id : 139985
creation_date : 1247815702
link : https://stackoverflow.com/users/139985/stephen-c
location : Australia
account_id : 47283
reputation_change_day : 0
reputation_change_week : 322
website_url : https://espaces.edu.au/vwrangler
reputation_change_quarter : 4295
accept_rate : 69
reputation : 572096
profile_image : https://www.gravatar.com/avatar/147c5a9cc1feec049c50da791ac7d144?s=128&d=identicon&r=PG
reputation_change_year : 4295
last_access_date : 1580192455
user_type : registered
display_name : Stephen C
badge_counts : Dict{String,Any}("silver" => 665,"gold" => 80,"bronze" => 1013)
last_modified_date : 1578430200
is_employee : false
reputation_change_month : 4338
user_id : 19563
creation_date : 1221903545
link : https://stackoverflow.com/users/19563/cb-bailey
location : United Kingdom
account_id : 10375
reputation_change_day : 30
reputation_change_week : 310
website_url :
reputation_change_quarter : 4338
reputation : 570708
profile_image : https://www.gravatar.com/avatar/a8db27c91db97757a829c7971fd62b84?s=128&d=identicon&r=PG