-
Notifications
You must be signed in to change notification settings - Fork 5
/
1.6.0-DEV-cbd854b0f4.log
1579 lines (1316 loc) · 64.2 KB
/
1.6.0-DEV-cbd854b0f4.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.6.0-DEV.185
Commit cbd854b0f4 (2020-06-06 13:20 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-9.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 MbedTLS_jll ──────── v2.16.0+2
Installed CodecZlib ────────── v0.6.0
Installed Parsers ──────────── v1.0.5
Installed TranscodingStreams ─ v0.9.5
Installed StackOverflow ────── v0.1.2
Installed BinaryProvider ───── v0.5.10
Installed JSON ─────────────── v0.21.0
Installed MbedTLS ──────────── v1.0.2
Installed HTTP ─────────────── v0.8.15
Updating `~/.julia/environments/v1.6/Project.toml`
[1a8df32f] + StackOverflow v0.1.2
Updating `~/.julia/environments/v1.6/Manifest.toml`
[b99e7846] + BinaryProvider v0.5.10
[944b1d66] + CodecZlib v0.6.0
[cd3eb016] + HTTP v0.8.15
[83e8ac13] + IniFile v0.5.0
[682c06a0] + JSON v0.21.0
[739be429] + MbedTLS v1.0.2
[c8ffd9c3] + MbedTLS_jll v2.16.0+2
[69de0a69] + Parsers v1.0.5
[1a8df32f] + StackOverflow v0.1.2
[3bb67fe8] + TranscodingStreams v0.9.5
[2a0f44e3] + Base64
[ade2ca70] + Dates
[8ba89e20] + Distributed
[b77e0a4c] + InteractiveUtils
[76f85450] + LibGit2
[8f399da3] + Libdl
[56ddb016] + Logging
[d6f4376e] + Markdown
[a63ad114] + Mmap
[44cfe95a] + Pkg
[de0858da] + Printf
[3fa0cd96] + REPL
[9a3f8284] + Random
[ea8e919c] + SHA
[9e88b42a] + Serialization
[6462fe0b] + Sockets
[8dfed614] + Test
[cf7118a7] + UUIDs
[4ec0a83e] + Unicode
Building CodecZlib → `~/.julia/packages/CodecZlib/5t9zO/deps/build.log`
Testing StackOverflow
Status `/tmp/jl_RZsKNr/Project.toml`
[944b1d66] CodecZlib v0.6.0
[cd3eb016] HTTP v0.8.15
[682c06a0] JSON v0.21.0
[1a8df32f] StackOverflow v0.1.2
[8dfed614] Test
Status `/tmp/jl_RZsKNr/Manifest.toml`
[b99e7846] BinaryProvider v0.5.10
[944b1d66] CodecZlib v0.6.0
[cd3eb016] HTTP v0.8.15
[83e8ac13] IniFile v0.5.0
[682c06a0] JSON v0.21.0
[739be429] MbedTLS v1.0.2
[c8ffd9c3] MbedTLS_jll v2.16.0+2
[69de0a69] Parsers v1.0.5
[1a8df32f] StackOverflow v0.1.2
[3bb67fe8] TranscodingStreams v0.9.5
[2a0f44e3] Base64
[ade2ca70] Dates
[8ba89e20] Distributed
[b77e0a4c] InteractiveUtils
[76f85450] LibGit2
[8f399da3] Libdl
[56ddb016] Logging
[d6f4376e] Markdown
[a63ad114] Mmap
[44cfe95a] Pkg
[de0858da] Printf
[3fa0cd96] REPL
[9a3f8284] Random
[ea8e919c] SHA
[9e88b42a] Serialization
[6462fe0b] Sockets
[8dfed614] Test
[cf7118a7] UUIDs
[4ec0a83e] Unicode
rank bronze
name Informed
badge_id 2600
link https://stackoverflow.com/badges/2600/informed
user Dict{String,Any}("user_type" => "registered","display_name" => "MURAT","reputation" => 1,"user_id" => 13696512,"link" => "https://stackoverflow.com/users/13696512/murat","profile_image" => "https://www.gravatar.com/avatar/a9761132670e9aa86527aec3d8eecb23?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" => "Dario Piotrowicz","reputation" => 1,"user_id" => 13693818,"link" => "https://stackoverflow.com/users/13693818/dario-piotrowicz","profile_image" => "https://lh3.googleusercontent.com/a-/AOh14GjlkMm9ROfeGGi5aRvgr3hjX8Lk-rY5X5lalp3c=k-s128")
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" => "windowswoed","reputation" => 1,"user_id" => 10174654,"link" => "https://stackoverflow.com/users/10174654/windowswoed","profile_image" => "https://www.gravatar.com/avatar/27ad43af37754fd52a6b7ee72bd0c774?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" => "Зоран Шефот Богоевски","reputation" => 1,"user_id" => 5170180,"link" => "https://stackoverflow.com/users/5170180/%d0%97%d0%be%d1%80%d0%b0%d0%bd-%d0%a8%d0%b5%d1%84%d0%be%d1%82-%d0%91%d0%be%d0%b3%d0%be%d0%b5%d0%b2%d1%81%d0%ba%d0%b8","profile_image" => "https://graph.facebook.com/10153099734901795/picture?type=large")
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" => "Hovik_K","reputation" => 1,"user_id" => 13215842,"link" => "https://stackoverflow.com/users/13215842/hovik-k","profile_image" => "https://www.gravatar.com/avatar/e3b8b10cddb58c4ee6f692809e2f3913?s=128&d=identicon&r=PG&f=1")
badge_type named
rank silver
name Guru
badge_id 18
link https://stackoverflow.com/badges/18/guru
user Dict{String,Any}("accept_rate" => 91,"user_type" => "registered","display_name" => "Ryan Q","reputation" => 7403,"user_id" => 1261865,"link" => "https://stackoverflow.com/users/1261865/ryan-q","profile_image" => "https://www.gravatar.com/avatar/ee0bd3db87145958108bf9c9b24d8c1e?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" => 88,"user_type" => "registered","display_name" => "Nat","reputation" => 1987,"user_id" => 552916,"link" => "https://stackoverflow.com/users/552916/nat","profile_image" => "https://www.gravatar.com/avatar/fcca405d06a2d277d78f9b079a9601f2?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}("user_type" => "registered","display_name" => "Ali Zarezade","reputation" => 681,"user_id" => 8750040,"link" => "https://stackoverflow.com/users/8750040/ali-zarezade","profile_image" => "https://lh6.googleusercontent.com/-P02BfcSAqII/AAAAAAAAAAI/AAAAAAAAAC0/P3nmUIf0aVM/photo.jpg?sz=128")
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" => "amp.dev","reputation" => 69,"user_id" => 11675102,"link" => "https://stackoverflow.com/users/11675102/amp-dev","profile_image" => "https://lh4.googleusercontent.com/-nUA-uy7XZ64/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3reua8RsTMa6v6DJPQdjhxdf7kSzHA/mo/photo.jpg?sz=128")
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" => "Rohit Nishad","reputation" => 415,"user_id" => 12247829,"link" => "https://stackoverflow.com/users/12247829/rohit-nishad","profile_image" => "https://i.stack.imgur.com/s9jYM.png?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}("accept_rate" => 76,"user_type" => "registered","display_name" => "max_max_mir","reputation" => 738,"user_id" => 3508752,"link" => "https://stackoverflow.com/users/3508752/max-max-mir","profile_image" => "https://i.stack.imgur.com/S4Ink.png?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}("accept_rate" => 74,"user_type" => "registered","display_name" => "George Dontas","reputation" => 26310,"user_id" => 170792,"link" => "https://stackoverflow.com/users/170792/george-dontas","profile_image" => "https://i.stack.imgur.com/iNGb0.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" => "leed25d","reputation" => 613,"user_id" => 325686,"link" => "https://stackoverflow.com/users/325686/leed25d","profile_image" => "https://www.gravatar.com/avatar/804e372703b9c9b48fc9d006cdf63612?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}("user_type" => "registered","display_name" => "Kristoff","reputation" => 141,"user_id" => 5036387,"link" => "https://stackoverflow.com/users/5036387/kristoff","profile_image" => "https://www.gravatar.com/avatar/2635cfeaf71dc032e312b69ef1453c66?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" => "Eric R.","reputation" => 124,"user_id" => 8577302,"link" => "https://stackoverflow.com/users/8577302/eric-r","profile_image" => "https://graph.facebook.com/388022591617094/picture?type=large")
badge_type named
rank bronze
name Revival
badge_id 837
link https://stackoverflow.com/badges/837/revival
user Dict{String,Any}("user_type" => "registered","display_name" => "Serg S","reputation" => 21,"user_id" => 8382927,"link" => "https://stackoverflow.com/users/8382927/serg-s","profile_image" => "https://www.gravatar.com/avatar/8094cfd0b056350a18949a781e36a5cf?s=128&d=identicon&r=PG&f=1")
badge_type named
rank bronze
name Scholar
badge_id 10
link https://stackoverflow.com/badges/10/scholar
user Dict{String,Any}("user_type" => "registered","display_name" => "Dududu","reputation" => 3,"user_id" => 13643585,"link" => "https://stackoverflow.com/users/13643585/dududu","profile_image" => "https://lh3.googleusercontent.com/a-/AOh14GgP-hZ4in_3AXxwnNan-_e779tsylKZ3CJFDagG5Q=k-s128")
badge_type named
rank bronze
name Scholar
badge_id 10
link https://stackoverflow.com/badges/10/scholar
user Dict{String,Any}("user_type" => "registered","display_name" => "Damino","reputation" => 39,"user_id" => 8281109,"link" => "https://stackoverflow.com/users/8281109/damino","profile_image" => "https://lh4.googleusercontent.com/-NfOPiHjVfxI/AAAAAAAAAAI/AAAAAAAAAfY/kwB0PnyUtNM/photo.jpg?sz=128")
badge_type named
rank bronze
name Student
badge_id 2
link https://stackoverflow.com/badges/2/student
user Dict{String,Any}("user_type" => "registered","display_name" => "Mustafa Sakalli","reputation" => 13,"user_id" => 12664894,"link" => "https://stackoverflow.com/users/12664894/mustafa-sakalli","profile_image" => "https://www.gravatar.com/avatar/4c3590cf7032124c07985b96c746b38a?s=128&d=identicon&r=PG&f=1")
badge_type named
rank bronze
name Student
badge_id 2
link https://stackoverflow.com/badges/2/student
user Dict{String,Any}("user_type" => "registered","display_name" => "YellowKyu","reputation" => 11,"user_id" => 13696441,"link" => "https://stackoverflow.com/users/13696441/yellowkyu","profile_image" => "https://www.gravatar.com/avatar/67a8107eda820321a10b97e159cf13f2?s=128&d=identicon&r=PG&f=1")
badge_type named
rank bronze
name Teacher
badge_id 1
link https://stackoverflow.com/badges/1/teacher
user Dict{String,Any}("user_type" => "registered","display_name" => "violetleaf","reputation" => 59,"user_id" => 11632705,"link" => "https://stackoverflow.com/users/11632705/violetleaf","profile_image" => "https://i.stack.imgur.com/n6C5c.jpg?s=128&g=1")
badge_type named
rank silver
name Yearling
badge_id 13
link https://stackoverflow.com/badges/13/yearling
user Dict{String,Any}("user_type" => "registered","display_name" => "Gaurav Sharma","reputation" => 1389,"user_id" => 4982171,"link" => "https://stackoverflow.com/users/4982171/gaurav-sharma","profile_image" => "https://graph.facebook.com/983384985006971/picture?type=large")
badge_type named
rank silver
name Yearling
badge_id 13
link https://stackoverflow.com/badges/13/yearling
user Dict{String,Any}("user_type" => "registered","display_name" => "jerryurenaa","reputation" => 369,"user_id" => 11611288,"link" => "https://stackoverflow.com/users/11611288/jerryurenaa","profile_image" => "https://graph.facebook.com/432283524263015/picture?type=large")
badge_type named
rank silver
name Yearling
badge_id 13
link https://stackoverflow.com/badges/13/yearling
user Dict{String,Any}("accept_rate" => 85,"user_type" => "registered","display_name" => "blundin","reputation" => 1403,"user_id" => 338435,"link" => "https://stackoverflow.com/users/338435/blundin","profile_image" => "https://www.gravatar.com/avatar/e761970fce27ad7d5beaeae3b751f5e4?s=128&d=identicon&r=PG")
badge_type named
rank silver
name Yearling
badge_id 13
link https://stackoverflow.com/badges/13/yearling
user Dict{String,Any}("user_type" => "registered","display_name" => "Qeole","reputation" => 3401,"user_id" => 3716552,"link" => "https://stackoverflow.com/users/3716552/qeole","profile_image" => "https://i.stack.imgur.com/078Ob.jpg?s=128&g=1")
badge_type named
rank silver
name Yearling
badge_id 13
link https://stackoverflow.com/badges/13/yearling
user Dict{String,Any}("accept_rate" => 89,"user_type" => "registered","display_name" => "Ryand.Johnson","reputation" => 1854,"user_id" => 786536,"link" => "https://stackoverflow.com/users/786536/ryand-johnson","profile_image" => "https://www.gravatar.com/avatar/4e62963023c6069d7dd8b3546bfa3468?s=128&d=identicon&r=PG")
badge_type named
rank silver
name Yearling
badge_id 13
link https://stackoverflow.com/badges/13/yearling
user Dict{String,Any}("accept_rate" => 30,"user_type" => "registered","display_name" => "sabiland","reputation" => 1806,"user_id" => 44964,"link" => "https://stackoverflow.com/users/44964/sabiland","profile_image" => "https://www.gravatar.com/avatar/0a6fc5372dbffc5598c7ad38955634cd?s=128&d=identicon&r=PG")
badge_type named
rank silver
name Yearling
badge_id 13
link https://stackoverflow.com/badges/13/yearling
user Dict{String,Any}("accept_rate" => 100,"user_type" => "registered","display_name" => "Tung","reputation" => 16007,"user_id" => 786542,"link" => "https://stackoverflow.com/users/786542/tung","profile_image" => "https://i.stack.imgur.com/dOO4N.jpg?s=128&g=1")
badge_type named
rank silver
name Yearling
badge_id 13
link https://stackoverflow.com/badges/13/yearling
user Dict{String,Any}("user_type" => "registered","display_name" => "Buffalo Collector","reputation" => 510,"user_id" => 11611283,"link" => "https://stackoverflow.com/users/11611283/buffalo-collector","profile_image" => "https://i.stack.imgur.com/iCMGs.png?s=128&g=1")
badge_type named
rank bronze
name Nice Answer
badge_id 23
link https://stackoverflow.com/badges/23/nice-answer
user Dict{String,Any}("accept_rate" => 100,"user_type" => "registered","display_name" => "Marius","reputation" => 44958,"user_id" => 1222578,"link" => "https://stackoverflow.com/users/1222578/marius","profile_image" => "https://www.gravatar.com/avatar/daae63146dbed42f50cd56f7268c6260?s=128&d=identicon&r=PG")
badge_type named
StackOverflow.SiteInfo
new_active_users: Int64 18
total_users: Int64 12529373
badges_per_minute: Float64 5.78
total_badges: Int64 36016035
total_votes: Int64 156240544
total_comments: Int64 93373163
answers_per_minute: Float64 4.74
questions_per_minute: Float64 3.15
total_answers: Int64 29520001
total_accepted: Int64 10181668
total_unanswered: Int64 5872100
total_questions: Int64 19608387
name julia
count 6907
name julian-date
count 221
name julia-jump
count 191
name ijulia-notebook
count 119
name julia-studio
count 22
name julia-gpu
count 20
name julia-flux
count 8
name juliadb
count 7
name julia-pkg
count 5
name julia-1.x
count 3
name julia-gen
count 1
last_modified_date : 1591352104
is_employee : false
reputation_change_month : 1260
user_id : 22656
creation_date : 1222430705
link : https://stackoverflow.com/users/22656/jon-skeet
location : Reading, United Kingdom
account_id : 11683
reputation_change_day : 200
reputation_change_week : 1460
website_url : http://csharpindepth.com
reputation_change_quarter : 13907
accept_rate : 86
reputation : 1187163
profile_image : https://www.gravatar.com/avatar/6d8ebb117e8d83d74ea95fbdd0f87e13?s=128&d=identicon&r=PG
reputation_change_year : 32784
last_access_date : 1591468199
user_type : registered
display_name : Jon Skeet
badge_counts : Dict{String,Any}("silver" => 8452,"gold" => 758,"bronze" => 8751)
last_modified_date : 1591473301
is_employee : false
reputation_change_month : 2655
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 : 350
reputation_change_week : 3005
website_url : http://www.data-miners.com
reputation_change_quarter : 30461
reputation : 966423
profile_image : https://www.gravatar.com/avatar/e514b017977ebf742a418cac697d8996?s=128&d=identicon&r=PG
reputation_change_year : 68527
last_access_date : 1591478472
user_type : registered
display_name : Gordon Linoff
badge_counts : Dict{String,Any}("silver" => 411,"gold" => 40,"bronze" => 528)
last_modified_date : 1591236300
is_employee : false
reputation_change_month : 1550
user_id : 6309
creation_date : 1221344553
link : https://stackoverflow.com/users/6309/vonc
location : France
account_id : 4243
reputation_change_day : 230
reputation_change_week : 1740
website_url : http://careers.stackoverflow.com/vonc
reputation_change_quarter : 16022
accept_rate : 100
reputation : 957105
profile_image : https://www.gravatar.com/avatar/7aa22372b695ed2b26052c340f9097eb?s=128&d=identicon&r=PG
reputation_change_year : 38496
last_access_date : 1591478455
user_type : registered
display_name : VonC
badge_counts : Dict{String,Any}("silver" => 3261,"gold" => 388,"bronze" => 3833)
last_modified_date : 1591376400
is_employee : false
reputation_change_month : 1189
user_id : 157882
creation_date : 1250527322
link : https://stackoverflow.com/users/157882/balusc
location : Willemstad, Curaçao
account_id : 52822
reputation_change_day : 190
reputation_change_week : 1288
website_url : https://balusc.omnifaces.org
reputation_change_quarter : 12481
accept_rate : 93
reputation : 934250
profile_image : https://www.gravatar.com/avatar/89927e2f4bde24991649b353a37678b9?s=128&d=identicon&r=PG
reputation_change_year : 28320
last_access_date : 1591398440
user_type : registered
display_name : BalusC
badge_counts : Dict{String,Any}("silver" => 3375,"gold" => 330,"bronze" => 3375)
last_modified_date : 1590878400
is_employee : false
reputation_change_month : 5255
user_id : 29407
creation_date : 1224432467
link : https://stackoverflow.com/users/29407/darin-dimitrov
location : Sofia, Bulgaria
account_id : 14332
reputation_change_day : 20
reputation_change_week : 1038
website_url : http://stackoverflow.com/search?q=user%3a29407&tab=newest
reputation_change_quarter : 9617
accept_rate : 86
reputation : 915123
profile_image : https://www.gravatar.com/avatar/e3a181e9cdd4757a8b416d93878770c5?s=128&d=identicon&r=PG
reputation_change_year : 22910
last_access_date : 1591374897
user_type : registered
display_name : Darin Dimitrov
badge_counts : Dict{String,Any}("silver" => 3128,"gold" => 242,"bronze" => 2829)
last_modified_date : 1591440901
is_employee : true
reputation_change_month : 1095
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 : 70
reputation_change_week : 1175
website_url : http://blog.marcgravell.com
reputation_change_quarter : 11804
accept_rate : 100
reputation : 868221
profile_image : https://i.stack.imgur.com/CrVFH.png?s=128&g=1
reputation_change_year : 28461
last_access_date : 1591478331
user_type : moderator
display_name : Marc Gravell
badge_counts : Dict{String,Any}("silver" => 2319,"gold" => 226,"bronze" => 2691)
last_modified_date : 1591387214
is_employee : false
reputation_change_month : 1109
user_id : 115145
creation_date : 1243786808
link : https://stackoverflow.com/users/115145/commonsware
location : Pennsylvania, United States
account_id : 39846
reputation_change_day : 130
reputation_change_week : 1318
website_url : https://commonsware.com
reputation_change_quarter : 12279
accept_rate : 84
reputation : 855291
profile_image : https://i.stack.imgur.com/wDnd8.png?s=128&g=1
reputation_change_year : 27529
last_access_date : 1591478140
user_type : registered
display_name : CommonsWare
badge_counts : Dict{String,Any}("silver" => 2096,"gold" => 156,"bronze" => 2117)
last_modified_date : 1591095305
is_employee : false
reputation_change_month : 684
user_id : 17034
creation_date : 1221698729
link : https://stackoverflow.com/users/17034/hans-passant
location : Madison, WI
account_id : 9266
reputation_change_day : 49
reputation_change_week : 744
website_url :
reputation_change_quarter : 7739
reputation : 841416
profile_image : https://i.stack.imgur.com/Cii6b.png?s=128&g=1
reputation_change_year : 15927
last_access_date : 1591472928
user_type : registered
display_name : Hans Passant
badge_counts : Dict{String,Any}("silver" => 1469,"gold" => 122,"bronze" => 2269)
last_modified_date : 1591212603
is_employee : false
reputation_change_month : 1231
user_id : 100297
creation_date : 1241362437
link : https://stackoverflow.com/users/100297/martijn-pieters
location : Cambridge, UK
account_id : 35417
reputation_change_day : 200
reputation_change_week : 1431
website_url : http://www.zopatista.com/
reputation_change_quarter : 13607
reputation : 815816
profile_image : https://www.gravatar.com/avatar/24780fb6df85a943c7aea0402c843737?s=128&d=identicon&r=PG
reputation_change_year : 32908
last_access_date : 1591465569
user_type : moderator
display_name : Martijn Pieters
badge_counts : Dict{String,Any}("silver" => 3094,"gold" => 199,"bronze" => 2721)
last_modified_date : 1591365001
is_employee : false
reputation_change_month : 1501
user_id : 157247
creation_date : 1250420422
link : https://stackoverflow.com/users/157247/t-j-crowder
location : United Kingdom
account_id : 52616
reputation_change_day : 245
reputation_change_week : 1647
website_url : http://www.farsightsoftware.com
reputation_change_quarter : 15866
accept_rate : 91
reputation : 798877
profile_image : https://i.stack.imgur.com/Wx4Ih.png?s=128&g=1
reputation_change_year : 37172
last_access_date : 1591466374
user_type : registered
display_name : T.J. Crowder
badge_counts : Dict{String,Any}("silver" => 1457,"gold" => 149,"bronze" => 1508)
last_modified_date : 1590255300
is_employee : false
reputation_change_month : 7077
user_id : 893
creation_date : 1218356820
link : https://stackoverflow.com/users/893/greg-hewgill
location : Christchurch, New Zealand
account_id : 680
reputation_change_day : 138
reputation_change_week : 1242
website_url : http://hewgill.com
reputation_change_quarter : 12835
accept_rate : 84
reputation : 762450
profile_image : https://www.gravatar.com/avatar/747ffa5da3538e66840ebc0548b8fd58?s=128&d=identicon&r=PG
reputation_change_year : 29450
last_access_date : 1591446575
user_type : registered
display_name : Greg Hewgill
badge_counts : Dict{String,Any}("silver" => 1066,"gold" => 164,"bronze" => 1211)
last_modified_date : 1590249900
is_employee : false
reputation_change_month : 5370
user_id : 34397
creation_date : 1225829805
link : https://stackoverflow.com/users/34397/slaks
location : New Jersey
account_id : 15988
reputation_change_day : 60
reputation_change_week : 1060
website_url : https://SLaks.net
reputation_change_quarter : 9838
accept_rate : 87
reputation : 754634
profile_image : https://www.gravatar.com/avatar/7deca8ec973c3c0875e9a36e1e3e2c44?s=128&d=identicon&r=PG
reputation_change_year : 22762
last_access_date : 1590580771
user_type : registered
display_name : SLaks
badge_counts : Dict{String,Any}("silver" => 1752,"gold" => 159,"bronze" => 1848)
last_modified_date : 1591458910
is_employee : false
reputation_change_month : 1240
user_id : 19068
creation_date : 1221842906
link : https://stackoverflow.com/users/19068/quentin
location : United Kingdom
account_id : 10162
reputation_change_day : 150
reputation_change_week : 1308
website_url :
reputation_change_quarter : 12912
reputation : 733664
profile_image : https://www.gravatar.com/avatar/1d2d3229ed1961d2bd81853242493247?s=128&d=identicon&r=PG
reputation_change_year : 29610
last_access_date : 1591478416
user_type : registered
display_name : Quentin
badge_counts : Dict{String,Any}("silver" => 986,"gold" => 90,"bronze" => 1132)
last_modified_date : 1591236300
is_employee : false
reputation_change_month : 1054
user_id : 14860
creation_date : 1221622605
link : https://stackoverflow.com/users/14860/paxdiablo
account_id : 8291
reputation_change_day : 134
reputation_change_week : 1164
website_url :
reputation_change_quarter : 11984
accept_rate : 100
reputation : 717047
profile_image : https://i.stack.imgur.com/vXG1F.png?s=128&g=1
reputation_change_year : 27310
last_access_date : 1591477611
user_type : registered
display_name : paxdiablo
badge_counts : Dict{String,Any}("silver" => 1391,"gold" => 196,"bronze" => 1772)
last_modified_date : 1590568800
is_employee : false
reputation_change_month : 6576
user_id : 95810
creation_date : 1240625354
link : https://stackoverflow.com/users/95810/alex-martelli
location : Sunnyvale, CA
account_id : 34048
reputation_change_day : 76
reputation_change_week : 1102
website_url : http://www.aleax.it
reputation_change_quarter : 12138
accept_rate : 80
reputation : 706162
profile_image : https://www.gravatar.com/avatar/e8d5fe90f1fe2148bf130cccd4dc311c?s=128&d=identicon&r=PG
reputation_change_year : 26768
last_access_date : 1591209820
user_type : registered
display_name : Alex Martelli
badge_counts : Dict{String,Any}("silver" => 1110,"gold" => 142,"bronze" => 1315)
last_modified_date : 1590746702
is_employee : false
reputation_change_month : 6108
user_id : 5445
creation_date : 1220976258
link : https://stackoverflow.com/users/5445/cms
location : Guatemala
account_id : 3748
reputation_change_day : 62
reputation_change_week : 1072
website_url : http://codingspot.com
reputation_change_quarter : 11130
reputation : 670727
profile_image : https://www.gravatar.com/avatar/932fb89b9d4049cec5cba357bf0ae388?s=128&d=identicon&r=PG
reputation_change_year : 25632
last_access_date : 1591418598
user_type : registered
display_name : CMS
badge_counts : Dict{String,Any}("silver" => 879,"gold" => 168,"bronze" => 822)
last_modified_date : 1590607800
is_employee : false
reputation_change_month : 5896
user_id : 61974
creation_date : 1233672960
link : https://stackoverflow.com/users/61974/mark-byers
location : Denmark
account_id : 24377
reputation_change_day : 110
reputation_change_week : 1040
website_url : http://careers.stackoverflow.com/markbyers/
reputation_change_quarter : 11002
reputation : 665898
profile_image : https://www.gravatar.com/avatar/ad240ed5cc406759f0fd72591dc8ca47?s=128&d=identicon&r=PG
reputation_change_year : 25333
last_access_date : 1590337238
user_type : registered
display_name : Mark Byers
badge_counts : Dict{String,Any}("silver" => 1450,"gold" => 151,"bronze" => 1373)
last_modified_date : 1590255300
is_employee : false
reputation_change_month : 5781
user_id : 20862
creation_date : 1222135580
link : https://stackoverflow.com/users/20862/ignacio-vazquez-abrams
account_id : 10930
reputation_change_day : 50
reputation_change_week : 889
website_url :
reputation_change_quarter : 10569
accept_rate : 50
reputation : 651942
profile_image : https://www.gravatar.com/avatar/2343ae368d3241278581ce6c87f62a25?s=128&d=identicon&r=PG
reputation_change_year : 23138
last_access_date : 1546328601
user_type : registered
display_name : Ignacio Vazquez-Abrams
badge_counts : Dict{String,Any}("silver" => 1168,"gold" => 123,"bronze" => 1239)
last_modified_date : 1590955500
is_employee : false
reputation_change_month : 2915
user_id : 335858
creation_date : 1273269250
link : https://stackoverflow.com/users/335858/dasblinkenlight
location : United States
account_id : 134022
reputation_change_day : 50
reputation_change_week : 456
website_url : http://stackoverflow.com/users/335858/dasblinkenlight
reputation_change_quarter : 5512
accept_rate : 81
reputation : 650675
profile_image : https://www.gravatar.com/avatar/4af3541c00d591e9a518b9c0b3b1190a?s=128&d=identicon&r=PG
reputation_change_year : 12065
last_access_date : 1591453932
user_type : registered
display_name : dasblinkenlight
badge_counts : Dict{String,Any}("silver" => 918,"gold" => 69,"bronze" => 1318)
last_modified_date : 1591110600
is_employee : false
reputation_change_month : 1080
user_id : 218196
creation_date : 1259104089
link : https://stackoverflow.com/users/218196/felix-kling
account_id : 76141
reputation_change_day : 90
reputation_change_week : 1280
website_url : http://felix-kling.de
reputation_change_quarter : 12369
accept_rate : 100
reputation : 646034
profile_image : https://i.stack.imgur.com/4P5DY.jpg?s=128&g=1
reputation_change_year : 28354
last_access_date : 1591473770
user_type : registered
display_name : Felix Kling
badge_counts : Dict{String,Any}("silver" => 957,"gold" => 145,"bronze" => 1018)
last_modified_date : 1590497401
is_employee : false
reputation_change_month : 7374
user_id : 190597
creation_date : 1255610900
link : https://stackoverflow.com/users/190597/unutbu
account_id : 64585
reputation_change_day : 198
reputation_change_week : 1413
website_url :
reputation_change_quarter : 13139
accept_rate : 88
reputation : 643361
profile_image : https://www.gravatar.com/avatar/aabc98d5c6482ca0e1405ec97710f30a?s=128&d=identicon&r=PG&f=1
reputation_change_year : 30358
last_access_date : 1591144507
user_type : registered
display_name : unutbu
badge_counts : Dict{String,Any}("silver" => 1438,"gold" => 129,"bronze" => 1435)
last_modified_date : 1591444201
is_employee : false
reputation_change_month : 795
user_id : 13302
creation_date : 1221588555
link : https://stackoverflow.com/users/13302/marc-s
location : Bern, Switzerland
account_id : 7633
reputation_change_day : 20
reputation_change_week : 831
website_url :
reputation_change_quarter : 8031
accept_rate : 99
reputation : 637530
profile_image : https://www.gravatar.com/avatar/b4779212f57ff2e9549ea90a4499c2d7?s=128&d=identicon&r=PG
reputation_change_year : 18890
last_access_date : 1591476844
user_type : registered
display_name : marc_s
badge_counts : Dict{String,Any}("silver" => 1207,"gold" => 144,"bronze" => 1341)
last_modified_date : 1590577500
is_employee : false
reputation_change_month : 4292
user_id : 23283
creation_date : 1222642783
link : https://stackoverflow.com/users/23283/jaredpar
location : Redmond, WA
account_id : 11948
reputation_change_day : 40
reputation_change_week : 748
website_url : http://blog.paranoidcoding.com/
reputation_change_quarter : 8093
accept_rate : 100
reputation : 635661
profile_image : https://www.gravatar.com/avatar/529ba429a58902bef56c2fcb672d5ccb?s=128&d=identicon&r=PG
reputation_change_year : 19529
last_access_date : 1591197861
user_type : registered
display_name : JaredPar
badge_counts : Dict{String,Any}("silver" => 1147,"gold" => 131,"bronze" => 1389)
last_modified_date : 1591303201
is_employee : false
reputation_change_month : 793
user_id : 15168
creation_date : 1221633947
link : https://stackoverflow.com/users/15168/jonathan-leffler
location : Colorado, USA
account_id : 8423
reputation_change_day : 68
reputation_change_week : 904
website_url : https://stackoverflow.com/users/15168
reputation_change_quarter : 8515
accept_rate : 100
reputation : 629085
profile_image : https://i.stack.imgur.com/WtEI9.png?s=128&g=1
reputation_change_year : 20426
last_access_date : 1591447707
user_type : registered
display_name : Jonathan Leffler
badge_counts : Dict{String,Any}("silver" => 757,"gold" => 108,"bronze" => 1125)
last_modified_date : 1590661800
is_employee : false
reputation_change_month : 3910
user_id : 69083
creation_date : 1235161492
link : https://stackoverflow.com/users/69083/guffa
location : Virsbo, Sweden
account_id : 26521
reputation_change_day : 80
reputation_change_week : 788
website_url : http://www.guffa.com
reputation_change_quarter : 7058
reputation : 607660
profile_image : https://www.gravatar.com/avatar/1db0cdfd3fe268e270ec481a73046c2f?s=128&d=identicon&r=PG
reputation_change_year : 16233
last_access_date : 1591170970
user_type : registered
display_name : Guffa
badge_counts : Dict{String,Any}("silver" => 643,"gold" => 86,"bronze" => 913)
last_modified_date : 1590684000
is_employee : false
reputation_change_month : 3849
user_id : 571407
creation_date : 1294757277
link : https://stackoverflow.com/users/571407/jb-nizet
location : Saint-Etienne, France
account_id : 277416
reputation_change_day : 80
reputation_change_week : 703
website_url :
reputation_change_quarter : 7392
accept_rate : 100
reputation : 602133
profile_image : https://www.gravatar.com/avatar/2f0d9dec16bae1e06552af55ddefc11f?s=128&d=identicon&r=PG
reputation_change_year : 18094
last_access_date : 1591468501
user_type : registered
display_name : JB Nizet
badge_counts : Dict{String,Any}("silver" => 1033,"gold" => 75,"bronze" => 1114)
last_modified_date : 1591294200
is_employee : false
reputation_change_month : 1075
user_id : 548225
creation_date : 1292821840
link : https://stackoverflow.com/users/548225/anubhava
location : Bangalore, India
account_id : 262968
reputation_change_day : 125
reputation_change_week : 1155
website_url : http://anubhava.wordpress.com
reputation_change_quarter : 11064
accept_rate : 90
reputation : 597085
profile_image : https://www.gravatar.com/avatar/dab08478b226280d4a30894c9a7ed719?s=128&d=identicon&r=PG
reputation_change_year : 24359
last_access_date : 1591465430
user_type : registered
display_name : anubhava
badge_counts : Dict{String,Any}("silver" => 400,"gold" => 50,"bronze" => 480)
last_modified_date : 1590995100
is_employee : false
reputation_change_month : 978
user_id : 19563
creation_date : 1221903545
link : https://stackoverflow.com/users/19563/cb-bailey
location : United Kingdom
account_id : 10375
reputation_change_day : 60
reputation_change_week : 1066
website_url :
reputation_change_quarter : 11126
reputation : 592160
profile_image : https://www.gravatar.com/avatar/a8db27c91db97757a829c7971fd62b84?s=128&d=identicon&r=PG
reputation_change_year : 25690
last_access_date : 1590505940
user_type : registered
display_name : CB Bailey
badge_counts : Dict{String,Any}("silver" => 589,"gold" => 88,"bronze" => 626)
last_modified_date : 1590001800
is_employee : false
reputation_change_month : 2847
user_id : 88656
creation_date : 1239204526
link : https://stackoverflow.com/users/88656/eric-lippert