-
Notifications
You must be signed in to change notification settings - Fork 5
/
1.6.0-DEV-0669b64613.log
1582 lines (1315 loc) · 64.3 KB
/
1.6.0-DEV-0669b64613.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.1153
Commit 0669b64613 (2020-10-07 09:01 UTC)
Platform Info:
OS: Linux (x86_64-linux-gnu)
CPU: AMD EPYC 7502 32-Core Processor
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-10.0.1 (ORCJIT, znver2)
Environment:
JULIA_DEPOT_PATH = ::/usr/local/share/julia
JULIA_NUM_THREADS = 2
Resolving package versions...
Installed MbedTLS_jll ──────── v2.16.8+0
Installed IniFile ──────────── v0.5.0
Installed CodecZlib ────────── v0.6.0
Installed MbedTLS ──────────── v1.0.2
Installed Parsers ──────────── v1.0.11
Installed StackOverflow ────── v0.1.2
Installed BinaryProvider ───── v0.5.10
Installed HTTP ─────────────── v0.8.19
Installed JSON ─────────────── v0.21.1
Installed TranscodingStreams ─ v0.9.5
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.19
[83e8ac13] + IniFile v0.5.0
[682c06a0] + JSON v0.21.1
[739be429] + MbedTLS v1.0.2
[c8ffd9c3] + MbedTLS_jll v2.16.8+0
[69de0a69] + Parsers v1.0.11
[1a8df32f] + StackOverflow v0.1.2
[3bb67fe8] + TranscodingStreams v0.9.5
[56f22d72] + Artifacts
[2a0f44e3] + Base64
[ade2ca70] + Dates
[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
[fa267f1f] + TOML
[8dfed614] + Test
[cf7118a7] + UUIDs
[4ec0a83e] + Unicode
Building CodecZlib → `~/.julia/scratchspaces/44cfe95a-1eb2-52ea-b672-e2afdf69b78f/05916673a2627dd91b4969ff8ba6941bc85a960e/build.log`
Testing StackOverflow
Status `/tmp/jl_obiSGX/Project.toml`
[944b1d66] CodecZlib v0.6.0
[cd3eb016] HTTP v0.8.19
[682c06a0] JSON v0.21.1
[1a8df32f] StackOverflow v0.1.2
[8dfed614] Test
Status `/tmp/jl_obiSGX/Manifest.toml`
[b99e7846] BinaryProvider v0.5.10
[944b1d66] CodecZlib v0.6.0
[cd3eb016] HTTP v0.8.19
[83e8ac13] IniFile v0.5.0
[682c06a0] JSON v0.21.1
[739be429] MbedTLS v1.0.2
[c8ffd9c3] MbedTLS_jll v2.16.8+0
[69de0a69] Parsers v1.0.11
[1a8df32f] StackOverflow v0.1.2
[3bb67fe8] TranscodingStreams v0.9.5
[56f22d72] Artifacts
[2a0f44e3] Base64
[ade2ca70] Dates
[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
[fa267f1f] TOML
[8dfed614] Test
[cf7118a7] UUIDs
[4ec0a83e] Unicode
Testing Running tests...
rank bronze
name Informed
badge_id 2600
link https://stackoverflow.com/badges/2600/informed
user Dict{String, Any}("user_type" => "registered", "display_name" => "Bethany Beet", "reputation" => 1, "user_id" => 14407028, "link" => "https://stackoverflow.com/users/14407028/bethany-beet", "profile_image" => "https://lh3.googleusercontent.com/a-/AOh14GiC-bmK91Coorb-WGD5zBTDTbdlDUvBIX5i3VE3=k-s128")
badge_type named
rank silver
name nasm
badge_id 8174
link https://stackoverflow.com/badges/8174/nasm
user Dict{String, Any}("user_type" => "registered", "display_name" => "Jester", "reputation" => 51037, "user_id" => 547981, "link" => "https://stackoverflow.com/users/547981/jester", "profile_image" => "https://www.gravatar.com/avatar/90042f6f33a9f87769fac02096ceea68?s=128&d=identicon&r=PG")
badge_type tag_based
rank bronze
name Informed
badge_id 2600
link https://stackoverflow.com/badges/2600/informed
user Dict{String, Any}("user_type" => "registered", "display_name" => "Marlon Savian", "reputation" => 1, "user_id" => 11520614, "link" => "https://stackoverflow.com/users/11520614/marlon-savian", "profile_image" => "https://lh4.googleusercontent.com/-z61Cdul5xhg/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3rfwvwWxJMVQBNkXNDo_bst41xurpg/mo/photo.jpg?sz=128")
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" => "Irshal Firdeansyah", "reputation" => 1, "user_id" => 14407050, "link" => "https://stackoverflow.com/users/14407050/irshal-firdeansyah", "profile_image" => "https://lh3.googleusercontent.com/-3D_IZNBqYic/AAAAAAAAAAI/AAAAAAAAAAA/AMZuucnRs_LMLdkmEVPYKmH38m98toaPvQ/photo.jpg?sz=128")
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" => "R J ARUN RAJ", "reputation" => 1, "user_id" => 14407081, "link" => "https://stackoverflow.com/users/14407081/r-j-arun-raj", "profile_image" => "https://lh3.googleusercontent.com/a-/AOh14Gi-KmB92JlVw1Fh1VEqxcm7Gaywk3TMMcIM_21g=k-s128")
badge_type named
rank bronze
name Announcer
badge_id 260
link https://stackoverflow.com/badges/260/announcer
user Dict{String, Any}("user_type" => "registered", "display_name" => "Benedict", "reputation" => 21, "user_id" => 8350552, "link" => "https://stackoverflow.com/users/8350552/benedict", "profile_image" => "https://www.gravatar.com/avatar/19b17197f3b9829cf19c6297ebd87aab?s=128&d=identicon&r=PG&f=1")
badge_type named
rank bronze
name Announcer
badge_id 260
link https://stackoverflow.com/badges/260/announcer
user Dict{String, Any}("user_type" => "registered", "display_name" => "Bizley", "reputation" => 15317, "user_id" => 3364821, "link" => "https://stackoverflow.com/users/3364821/bizley", "profile_image" => "https://i.stack.imgur.com/xkn09.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" => "William Whitehouse", "reputation" => 1, "user_id" => 13195883, "link" => "https://stackoverflow.com/users/13195883/william-whitehouse", "profile_image" => "https://www.gravatar.com/avatar/416e4abc70d6d73f394847542756f2e6?s=128&d=identicon&r=PG")
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" => "Bethany Beet", "reputation" => 1, "user_id" => 14407028, "link" => "https://stackoverflow.com/users/14407028/bethany-beet", "profile_image" => "https://lh3.googleusercontent.com/a-/AOh14GiC-bmK91Coorb-WGD5zBTDTbdlDUvBIX5i3VE3=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" => "Tee1er", "reputation" => 3, "user_id" => 13673767, "link" => "https://stackoverflow.com/users/13673767/tee1er", "profile_image" => "https://www.gravatar.com/avatar/759776a0c75027e335cc327ecf9b72d9?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" => "Olzhas Kaliyev", "reputation" => 1, "user_id" => 5173233, "link" => "https://stackoverflow.com/users/5173233/olzhas-kaliyev", "profile_image" => "https://lh3.googleusercontent.com/-swgI54aQrks/AAAAAAAAAAI/AAAAAAAABu8/sVs--9iVq4s/photo.jpg?sz=128")
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" => "Jitendra Singh", "reputation" => 1, "user_id" => 14245829, "link" => "https://stackoverflow.com/users/14245829/jitendra-singh", "profile_image" => "https://i.stack.imgur.com/8Btdp.jpg?s=128&g=1")
badge_type named
rank bronze
name Cleanup
badge_id 4
link https://stackoverflow.com/badges/4/cleanup
user Dict{String, Any}("user_type" => "registered", "display_name" => "iAm312", "reputation" => 1, "user_id" => 14406867, "link" => "https://stackoverflow.com/users/14406867/iam312", "profile_image" => "https://www.gravatar.com/avatar/3978b1686f49c367752e462acaab9654?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" => "Hong", "reputation" => 3, "user_id" => 14360328, "link" => "https://stackoverflow.com/users/14360328/hong", "profile_image" => "https://lh3.googleusercontent.com/a-/AOh14GhrH3GNR5TyO91dZCHQoQxekCXpLceNKKi5Wqy4Tg=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" => "Tuyen Pham", "reputation" => 23, "user_id" => 13897150, "link" => "https://stackoverflow.com/users/13897150/tuyen-pham", "profile_image" => "https://lh3.googleusercontent.com/a-/AOh14GiaCKwKX-lFf-YWE0MDMXyA1cE2E1HSnQv8YZC6=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" => "TheLighthouse", "reputation" => 1, "user_id" => 3937883, "link" => "https://stackoverflow.com/users/3937883/thelighthouse", "profile_image" => "https://i.stack.imgur.com/HtEQP.jpg?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" => "RaghavendraUdyavar", "reputation" => 1, "user_id" => 2767178, "link" => "https://stackoverflow.com/users/2767178/raghavendraudyavar", "profile_image" => "https://i.stack.imgur.com/Io18u.jpg?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" => "dan morcov", "reputation" => 1, "user_id" => 13672915, "link" => "https://stackoverflow.com/users/13672915/dan-morcov", "profile_image" => "https://lh3.googleusercontent.com/a-/AOh14Gh5oWUIPifWxur1Wdn-1eh2ulWs1jFmg3dqMfzBCA=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" => "manas", "reputation" => 1, "user_id" => 14021473, "link" => "https://stackoverflow.com/users/14021473/manas", "profile_image" => "https://www.gravatar.com/avatar/c9b74e153e3c53545ea0b34251e2423d?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" => "hllizi", "reputation" => 11, "user_id" => 11515343, "link" => "https://stackoverflow.com/users/11515343/hllizi", "profile_image" => "https://i.stack.imgur.com/5q4UM.png?s=128&g=1")
badge_type named
rank silver
name Guru
badge_id 18
link https://stackoverflow.com/badges/18/guru
user Dict{String, Any}("accept_rate" => 92, "user_type" => "registered", "display_name" => "Otiel", "reputation" => 16932, "user_id" => 825024, "link" => "https://stackoverflow.com/users/825024/otiel", "profile_image" => "https://i.stack.imgur.com/bK9gD.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" => 60, "user_type" => "registered", "display_name" => "shadowz1337", "reputation" => 649, "user_id" => 1441275, "link" => "https://stackoverflow.com/users/1441275/shadowz1337", "profile_image" => "https://www.gravatar.com/avatar/78f08fceb6ed561317ee1d7a6c01727b?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}("user_type" => "registered", "display_name" => "Pruthvi Kumar", "reputation" => 733, "user_id" => 10019687, "link" => "https://stackoverflow.com/users/10019687/pruthvi-kumar", "profile_image" => "https://lh6.googleusercontent.com/-McrhoAjt2tk/AAAAAAAAAAI/AAAAAAAAAA0/PQRkg7lAC5k/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}("accept_rate" => 90, "user_type" => "registered", "display_name" => "herbertD", "reputation" => 9049, "user_id" => 354459, "link" => "https://stackoverflow.com/users/354459/herbertd", "profile_image" => "https://i.stack.imgur.com/PoA5H.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" => 40, "user_type" => "registered", "display_name" => "WebMaster", "reputation" => 171, "user_id" => 6447123, "link" => "https://stackoverflow.com/users/6447123/webmaster", "profile_image" => "https://www.gravatar.com/avatar/cb6d318ae88dbb05329d0b6602fe83ab?s=128&d=identicon&r=PG&f=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" => 86, "user_type" => "registered", "display_name" => "Matt Bearson", "reputation" => 228, "user_id" => 4871485, "link" => "https://stackoverflow.com/users/4871485/matt-bearson", "profile_image" => "https://www.gravatar.com/avatar/5c271727f104d4529022959d573f6109?s=128&d=identicon&r=PG&f=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" => 47, "user_type" => "registered", "display_name" => "Joseph", "reputation" => 756, "user_id" => 351637, "link" => "https://stackoverflow.com/users/351637/joseph", "profile_image" => "https://www.gravatar.com/avatar/a3d4557beb96483e18f2ba66a810d346?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}("user_type" => "registered", "display_name" => "Jose Alfredo Sanchez Diaz", "reputation" => 11, "user_id" => 9138745, "link" => "https://stackoverflow.com/users/9138745/jose-alfredo-sanchez-diaz", "profile_image" => "https://lh4.googleusercontent.com/-qMUi1Y378Vo/AAAAAAAAAAI/AAAAAAAAMFk/Uk24zhYChWo/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}("accept_rate" => 67, "user_type" => "registered", "display_name" => "user3097695", "reputation" => 647, "user_id" => 3097695, "link" => "https://stackoverflow.com/users/3097695/user3097695", "profile_image" => "https://www.gravatar.com/avatar/1face89812ba0d7b55d1da3eb94634df?s=128&d=identicon&r=PG&f=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" => "HeitorSaldanha", "reputation" => 13, "user_id" => 3608304, "link" => "https://stackoverflow.com/users/3608304/heitorsaldanha", "profile_image" => "https://graph.facebook.com/1742268303/picture?type=large")
badge_type named
StackOverflow.SiteInfo
new_active_users: Int64 15
total_users: Int64 13210492
badges_per_minute: Float64 5.86
total_badges: Int64 37532575
total_votes: Int64 162109821
total_comments: Int64 96096781
answers_per_minute: Float64 4.73
questions_per_minute: Float64 3.16
total_answers: Int64 30327647
total_accepted: Int64 10469946
total_unanswered: Int64 6101340
total_questions: Int64 20246030
name julia
count 7423
name julian-date
count 235
name julia-jump
count 216
name ijulia-notebook
count 131
name julia-studio
count 27
name julia-gpu
count 21
name julia-flux
count 13
name julia-dataframe
count 11
name julia-pkg
count 9
name juliadb
count 8
name julia-plots
count 6
name julia-1.x
count 3
name julia-gen
count 1
last_modified_date : 1601853300
is_employee : false
reputation_change_month : 1465
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 : 805
website_url : http://csharpindepth.com
reputation_change_quarter : 1465
accept_rate : 86
reputation : 1212658
profile_image : https://www.gravatar.com/avatar/6d8ebb117e8d83d74ea95fbdd0f87e13?s=128&d=identicon&r=PG
reputation_change_year : 58133
last_access_date : 1602068041
user_type : registered
display_name : Jon Skeet
badge_counts : Dict{String, Any}("silver" => 8563, "gold" => 773, "bronze" => 8824)
last_modified_date : 1602070203
is_employee : false
reputation_change_month : 2467
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 : 150
reputation_change_week : 1415
website_url : http://www.data-miners.com
reputation_change_quarter : 2467
reputation : 1018623
profile_image : https://www.gravatar.com/avatar/e514b017977ebf742a418cac697d8996?s=128&d=identicon&r=PG
reputation_change_year : 120507
last_access_date : 1602070757
user_type : registered
display_name : Gordon Linoff
badge_counts : Dict{String, Any}("silver" => 434, "gold" => 47, "bronze" => 556)
last_modified_date : 1601709304
is_employee : false
reputation_change_month : 1910
user_id : 6309
creation_date : 1221344553
link : https://stackoverflow.com/users/6309/vonc
location : France
account_id : 4243
reputation_change_day : 245
reputation_change_week : 1250
website_url : http://careers.stackoverflow.com/vonc
reputation_change_quarter : 1910
accept_rate : 100
reputation : 987738
profile_image : https://www.gravatar.com/avatar/7aa22372b695ed2b26052c340f9097eb?s=128&d=identicon&r=PG
reputation_change_year : 68985
last_access_date : 1602070149
user_type : registered
display_name : VonC
badge_counts : Dict{String, Any}("silver" => 3404, "gold" => 408, "bronze" => 4002)
last_modified_date : 1601979000
is_employee : false
reputation_change_month : 1066
user_id : 157882
creation_date : 1250527322
link : https://stackoverflow.com/users/157882/balusc
location : Willemstad, Curaçao
account_id : 52822
reputation_change_day : 100
reputation_change_week : 636
website_url : https://balusc.omnifaces.org
reputation_change_quarter : 1066
accept_rate : 93
reputation : 954942
profile_image : https://www.gravatar.com/avatar/89927e2f4bde24991649b353a37678b9?s=128&d=identicon&r=PG
reputation_change_year : 48948
last_access_date : 1602064084
user_type : registered
display_name : BalusC
badge_counts : Dict{String, Any}("silver" => 3419, "gold" => 343, "bronze" => 3406)
last_modified_date : 1602060602
is_employee : false
reputation_change_month : 854
user_id : 29407
creation_date : 1224432467
link : https://stackoverflow.com/users/29407/darin-dimitrov
location : Sofia, Bulgaria
account_id : 14332
reputation_change_day : 58
reputation_change_week : 456
website_url : http://stackoverflow.com/search?q=user%3a29407&tab=newest
reputation_change_quarter : 854
accept_rate : 86
reputation : 931467
profile_image : https://www.gravatar.com/avatar/e3a181e9cdd4757a8b416d93878770c5?s=128&d=identicon&r=PG
reputation_change_year : 39184
last_access_date : 1602052074
user_type : registered
display_name : Darin Dimitrov
badge_counts : Dict{String, Any}("silver" => 3156, "gold" => 250, "bronze" => 2844)
last_modified_date : 1602063901
is_employee : true
reputation_change_month : 1035
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 : 100
reputation_change_week : 630
website_url : http://blog.marcgravell.com
reputation_change_quarter : 1035
accept_rate : 100
reputation : 889499
profile_image : https://i.stack.imgur.com/CrVFH.png?s=128&g=1
reputation_change_year : 49679
last_access_date : 1602069644
user_type : moderator
display_name : Marc Gravell
badge_counts : Dict{String, Any}("silver" => 2359, "gold" => 227, "bronze" => 2722)
last_modified_date : 1601898700
is_employee : false
reputation_change_month : 1146
user_id : 115145
creation_date : 1243786808
link : https://stackoverflow.com/users/115145/commonsware
location : Pennsylvania, United States
account_id : 39846
reputation_change_day : 110
reputation_change_week : 716
website_url : https://commonsware.com
reputation_change_quarter : 1146
accept_rate : 84
reputation : 874332
profile_image : https://i.stack.imgur.com/wDnd8.png?s=128&g=1
reputation_change_year : 46448
last_access_date : 1602068504
user_type : registered
display_name : CommonsWare
badge_counts : Dict{String, Any}("silver" => 2137, "gold" => 161, "bronze" => 2163)
last_modified_date : 1602014101
is_employee : false
reputation_change_month : 493
user_id : 17034
creation_date : 1221698729
link : https://stackoverflow.com/users/17034/hans-passant
location : Madison, WI
account_id : 9266
reputation_change_day : 70
reputation_change_week : 284
website_url :
reputation_change_quarter : 493
reputation : 852576
profile_image : https://i.stack.imgur.com/Cii6b.png?s=128&g=1
reputation_change_year : 27078
last_access_date : 1602069495
user_type : registered
display_name : Hans Passant
badge_counts : Dict{String, Any}("silver" => 1498, "gold" => 126, "bronze" => 2307)
last_modified_date : 1602065700
is_employee : false
reputation_change_month : 1393
user_id : 100297
creation_date : 1241362437
link : https://stackoverflow.com/users/100297/martijn-pieters
location : Cambridge, UK
account_id : 35417
reputation_change_day : 201
reputation_change_week : 792
website_url : http://www.zopatista.com/
reputation_change_quarter : 1393
reputation : 841040
profile_image : https://www.gravatar.com/avatar/24780fb6df85a943c7aea0402c843737?s=128&d=identicon&r=PG
reputation_change_year : 58040
last_access_date : 1602067810
user_type : moderator
display_name : Martijn Pieters
badge_counts : Dict{String, Any}("silver" => 3227, "gold" => 214, "bronze" => 2814)
last_modified_date : 1601894100
is_employee : false
reputation_change_month : 1546
user_id : 157247
creation_date : 1250420422
link : https://stackoverflow.com/users/157247/t-j-crowder
location : United Kingdom
account_id : 52616
reputation_change_day : 130
reputation_change_week : 765
website_url : https://thenewtoys.dev
reputation_change_quarter : 1546
accept_rate : 91
reputation : 827154
profile_image : https://i.stack.imgur.com/4HovX.jpg?s=128&g=1
reputation_change_year : 65296
last_access_date : 1602070631
user_type : registered
display_name : T.J. Crowder
badge_counts : Dict{String, Any}("silver" => 1513, "gold" => 154, "bronze" => 1556)
last_modified_date : 1602006901
is_employee : false
reputation_change_month : 1220
user_id : 893
creation_date : 1218356820
link : https://stackoverflow.com/users/893/greg-hewgill
location : Christchurch, New Zealand
account_id : 680
reputation_change_day : 150
reputation_change_week : 700
website_url : http://hewgill.com
reputation_change_quarter : 1220
accept_rate : 84
reputation : 785082
profile_image : https://www.gravatar.com/avatar/747ffa5da3538e66840ebc0548b8fd58?s=128&d=identicon&r=PG
reputation_change_year : 51806
last_access_date : 1602041956
user_type : registered
display_name : Greg Hewgill
badge_counts : Dict{String, Any}("silver" => 1084, "gold" => 168, "bronze" => 1223)
last_modified_date : 1601658301
is_employee : false
reputation_change_month : 826
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 : 538
website_url : https://SLaks.net
reputation_change_quarter : 826
accept_rate : 87
reputation : 771678
profile_image : https://www.gravatar.com/avatar/7deca8ec973c3c0875e9a36e1e3e2c44?s=128&d=identicon&r=PG
reputation_change_year : 39712
last_access_date : 1595269224
user_type : registered
display_name : SLaks
badge_counts : Dict{String, Any}("silver" => 1773, "gold" => 161, "bronze" => 1865)
last_modified_date : 1602033301
is_employee : false
reputation_change_month : 1183
user_id : 19068
creation_date : 1221842906
link : https://stackoverflow.com/users/19068/quentin
location : United Kingdom
account_id : 10162
reputation_change_day : 62
reputation_change_week : 576
website_url :
reputation_change_quarter : 1183
reputation : 756582
profile_image : https://www.gravatar.com/avatar/1d2d3229ed1961d2bd81853242493247?s=128&d=identicon&r=PG
reputation_change_year : 52470
last_access_date : 1602070612
user_type : registered
display_name : Quentin
badge_counts : Dict{String, Any}("silver" => 1020, "gold" => 93, "bronze" => 1157)
last_modified_date : 1601972402
is_employee : false
reputation_change_month : 1138
user_id : 14860
creation_date : 1221622605
link : https://stackoverflow.com/users/14860/paxdiablo
account_id : 8291
reputation_change_day : 70
reputation_change_week : 605
website_url :
reputation_change_quarter : 1138
accept_rate : 100
reputation : 738233
profile_image : https://i.stack.imgur.com/vXG1F.png?s=128&g=1
reputation_change_year : 48466
last_access_date : 1602051205
user_type : registered
display_name : paxdiablo
badge_counts : Dict{String, Any}("silver" => 1426, "gold" => 199, "bronze" => 1795)
last_modified_date : 1601350501
is_employee : false
reputation_change_month : 5736
user_id : 95810
creation_date : 1240625354
link : https://stackoverflow.com/users/95810/alex-martelli
location : Sunnyvale, CA
account_id : 34048
reputation_change_day : 80
reputation_change_week : 650
website_url : http://www.aleax.it
reputation_change_quarter : 15534
accept_rate : 80
reputation : 725863
profile_image : https://www.gravatar.com/avatar/e8d5fe90f1fe2148bf130cccd4dc311c?s=128&d=identicon&r=PG
reputation_change_year : 46337
last_access_date : 1601932908
user_type : registered
display_name : Alex Martelli
badge_counts : Dict{String, Any}("silver" => 1130, "gold" => 148, "bronze" => 1325)
last_modified_date : 1602060303
is_employee : false
reputation_change_month : 896
user_id : 5445
creation_date : 1220976258
link : https://stackoverflow.com/users/5445/christian-c-salvad%c3%b3
location : Guatemala
account_id : 3748
reputation_change_day : 58
reputation_change_week : 416
website_url : http://codingspot.com
reputation_change_quarter : 896
reputation : 689828
profile_image : https://www.gravatar.com/avatar/932fb89b9d4049cec5cba357bf0ae388?s=128&d=identicon&r=PG
reputation_change_year : 44615
last_access_date : 1602047261
user_type : registered
display_name : Christian C. Salvadó
badge_counts : Dict{String, Any}("silver" => 888, "gold" => 171, "bronze" => 827)
last_modified_date : 1601489100
is_employee : false
reputation_change_month : 5440
user_id : 61974
creation_date : 1233672960
link : https://stackoverflow.com/users/61974/mark-byers
location : Denmark
account_id : 24377
reputation_change_day : 50
reputation_change_week : 490
website_url : http://careers.stackoverflow.com/markbyers/
reputation_change_quarter : 15172
reputation : 684720
profile_image : https://www.gravatar.com/avatar/ad240ed5cc406759f0fd72591dc8ca47?s=128&d=identicon&r=PG
reputation_change_year : 44085
last_access_date : 1591965406
user_type : registered
display_name : Mark Byers
badge_counts : Dict{String, Any}("silver" => 1469, "gold" => 155, "bronze" => 1388)
last_modified_date : 1601298600
is_employee : false
reputation_change_month : 4686
user_id : 20862
creation_date : 1222135580
link : https://stackoverflow.com/users/20862/ignacio-vazquez-abrams
account_id : 10930
reputation_change_day : 40
reputation_change_week : 428
website_url :
reputation_change_quarter : 12995
accept_rate : 50
reputation : 668648
profile_image : https://www.gravatar.com/avatar/2343ae368d3241278581ce6c87f62a25?s=128&d=identicon&r=PG
reputation_change_year : 39798
last_access_date : 1546328601
user_type : registered
display_name : Ignacio Vazquez-Abrams
badge_counts : Dict{String, Any}("silver" => 1194, "gold" => 127, "bronze" => 1253)
last_modified_date : 1601457900
is_employee : false
reputation_change_month : 6512
user_id : 218196
creation_date : 1259104089
link : https://stackoverflow.com/users/218196/felix-kling
account_id : 76141
reputation_change_day : 80
reputation_change_week : 568
website_url : http://felix-kling.de
reputation_change_quarter : 16999
accept_rate : 100
reputation : 667487
profile_image : https://i.stack.imgur.com/4P5DY.jpg?s=128&g=1
reputation_change_year : 49717
last_access_date : 1602070356
user_type : registered
display_name : Felix Kling
badge_counts : Dict{String, Any}("silver" => 970, "gold" => 152, "bronze" => 1035)
last_modified_date : 1601201400
is_employee : false
reputation_change_month : 7126
user_id : 190597
creation_date : 1255610900
link : https://stackoverflow.com/users/190597/unutbu
account_id : 64585
reputation_change_day : 190
reputation_change_week : 780
website_url :
reputation_change_quarter : 19130
accept_rate : 88
reputation : 667193
profile_image : https://www.gravatar.com/avatar/aabc98d5c6482ca0e1405ec97710f30a?s=128&d=identicon&r=PG&f=1
reputation_change_year : 54140
last_access_date : 1601731097
user_type : registered
display_name : unutbu
badge_counts : Dict{String, Any}("silver" => 1486, "gold" => 138, "bronze" => 1477)
last_modified_date : 1601838601
is_employee : false
reputation_change_month : 310
user_id : 335858
creation_date : 1273269250
link : https://stackoverflow.com/users/335858/sergey-kalinichenko
location : United States
account_id : 134022
reputation_change_day : 30
reputation_change_week : 160
website_url : http://stackoverflow.com/users/335858/dasblinkenlight
reputation_change_quarter : 310
accept_rate : 81
reputation : 659297
profile_image : https://www.gravatar.com/avatar/4af3541c00d591e9a518b9c0b3b1190a?s=128&d=identicon&r=PG
reputation_change_year : 20657
last_access_date : 1602032387
user_type : registered
display_name : Sergey Kalinichenko
badge_counts : Dict{String, Any}("silver" => 947, "gold" => 69, "bronze" => 1356)
last_modified_date : 1602062401
is_employee : false
reputation_change_month : 1094
user_id : 13302
creation_date : 1221588555
link : https://stackoverflow.com/users/13302/marc-s
location : Bern, Switzerland
account_id : 7633
reputation_change_day : 10
reputation_change_week : 331
website_url :
reputation_change_quarter : 1094
accept_rate : 99
reputation : 651535
profile_image : https://www.gravatar.com/avatar/b4779212f57ff2e9549ea90a4499c2d7?s=128&d=identicon&r=PG
reputation_change_year : 32817
last_access_date : 1602070461
user_type : registered
display_name : marc_s
badge_counts : Dict{String, Any}("silver" => 1227, "gold" => 146, "bronze" => 1355)
last_modified_date : 1601399400
is_employee : false
reputation_change_month : 3836
user_id : 23283
creation_date : 1222642783
link : https://stackoverflow.com/users/23283/jaredpar
location : Redmond, WA
account_id : 11948
reputation_change_day : 98
reputation_change_week : 438
website_url : http://blog.paranoidcoding.com/
reputation_change_quarter : 10558
accept_rate : 100
reputation : 649049
profile_image : https://www.gravatar.com/avatar/529ba429a58902bef56c2fcb672d5ccb?s=128&d=identicon&r=PG
reputation_change_year : 32857
last_access_date : 1601995080
user_type : registered
display_name : JaredPar
badge_counts : Dict{String, Any}("silver" => 1162, "gold" => 133, "bronze" => 1396)
last_modified_date : 1601636402
is_employee : false
reputation_change_month : 876
user_id : 15168
creation_date : 1221633947
link : https://stackoverflow.com/users/15168/jonathan-leffler
location : Colorado, USA
account_id : 8423
reputation_change_day : 65
reputation_change_week : 385
website_url : https://stackoverflow.com/users/15168
reputation_change_quarter : 876
accept_rate : 100
reputation : 642281
profile_image : https://i.stack.imgur.com/WtEI9.png?s=128&g=1
reputation_change_year : 33592
last_access_date : 1602049766
user_type : registered
display_name : Jonathan Leffler
badge_counts : Dict{String, Any}("silver" => 777, "gold" => 111, "bronze" => 1149)
last_modified_date : 1601984100
is_employee : false
reputation_change_month : 468
user_id : 69083
creation_date : 1235161492
link : https://stackoverflow.com/users/69083/guffa
location : Virsbo, Sweden
account_id : 26521
reputation_change_day : 40
reputation_change_week : 298
website_url : http://www.guffa.com
reputation_change_quarter : 468
reputation : 619266
profile_image : https://www.gravatar.com/avatar/1db0cdfd3fe268e270ec481a73046c2f?s=128&d=identicon&r=PG
reputation_change_year : 27817
last_access_date : 1601975996
user_type : registered
display_name : Guffa
badge_counts : Dict{String, Any}("silver" => 652, "gold" => 90, "bronze" => 926)
last_modified_date : 1601658301
is_employee : false
reputation_change_month : 994
user_id : 548225
creation_date : 1292821840
link : https://stackoverflow.com/users/548225/anubhava
location : Bangalore, India
account_id : 262968
reputation_change_day : 80
reputation_change_week : 467
website_url : http://anubhava.wordpress.com
reputation_change_quarter : 994
accept_rate : 90
reputation : 616563
profile_image : https://www.gravatar.com/avatar/dab08478b226280d4a30894c9a7ed719?s=128&d=identicon&r=PG
reputation_change_year : 43737
last_access_date : 1602069642
user_type : registered
display_name : anubhava
badge_counts : Dict{String, Any}("silver" => 423, "gold" => 52, "bronze" => 504)
last_modified_date : 1601398200
is_employee : false
reputation_change_month : 3236
user_id : 571407
creation_date : 1294757277
link : https://stackoverflow.com/users/571407/jb-nizet
location : Saint-Etienne, France
account_id : 277416
reputation_change_day : 10
reputation_change_week : 290
website_url :
reputation_change_quarter : 8727
accept_rate : 100
reputation : 613572
profile_image : https://www.gravatar.com/avatar/2f0d9dec16bae1e06552af55ddefc11f?s=128&d=identicon&r=PG
reputation_change_year : 29513
last_access_date : 1598086966
user_type : registered
display_name : JB Nizet
badge_counts : Dict{String, Any}("silver" => 1067, "gold" => 78, "bronze" => 1141)
last_modified_date : 1601722200
is_employee : false
reputation_change_month : 990
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 : 550
website_url :
reputation_change_quarter : 990
reputation : 611701
profile_image : https://www.gravatar.com/avatar/a8db27c91db97757a829c7971fd62b84?s=128&d=identicon&r=PG
reputation_change_year : 45181
last_access_date : 1602064571