-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path1.6.0-DEV-22b5d93b2b.log
1578 lines (1311 loc) · 63.1 KB
/
1.6.0-DEV-22b5d93b2b.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.1069
Commit 22b5d93b2b (2020-09-28 17:33 UTC)
Platform Info:
OS: Linux (x86_64-linux-gnu)
CPU: Intel(R) Xeon(R) Silver 4114 CPU @ 2.20GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-10.0.1 (ORCJIT, skylake-avx512)
Environment:
JULIA_DEPOT_PATH = ::/usr/local/share/julia
JULIA_NUM_THREADS = 2
Resolving package versions...
Installed IniFile ──────────── v0.5.0
Installed CodecZlib ────────── v0.6.0
Installed MbedTLS ──────────── v1.0.2
Installed TranscodingStreams ─ v0.9.5
Installed StackOverflow ────── v0.1.2
Installed BinaryProvider ───── v0.5.10
Installed HTTP ─────────────── v0.8.19
Installed JSON ─────────────── v0.21.1
Installed MbedTLS_jll ──────── v2.16.8+0
Installed Parsers ──────────── v1.0.10
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.10
[1a8df32f] + StackOverflow v0.1.2
[3bb67fe8] + TranscodingStreams v0.9.5
[56f22d72] + Artifacts
[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
[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_3yHtDO/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_3yHtDO/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.10
[1a8df32f] StackOverflow v0.1.2
[3bb67fe8] TranscodingStreams v0.9.5
[56f22d72] Artifacts
[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
[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" => "Mr. Knockward", "reputation" => 1, "user_id" => 14345716, "link" => "https://stackoverflow.com/users/14345716/mr-knockward", "profile_image" => "https://www.gravatar.com/avatar/c38e0b91c008703f81858db2c962aad2?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" => "LazyCoder", "reputation" => 1, "user_id" => 2805534, "link" => "https://stackoverflow.com/users/2805534/lazycoder", "profile_image" => "https://i.stack.imgur.com/y4KiO.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" => "s2axkuo514", "reputation" => 1, "user_id" => 14356929, "link" => "https://stackoverflow.com/users/14356929/s2axkuo514", "profile_image" => "https://www.gravatar.com/avatar/968e20cd82ec38959305a6c361eed277?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" => "arne", "reputation" => 9, "user_id" => 14101452, "link" => "https://stackoverflow.com/users/14101452/arne", "profile_image" => "https://www.gravatar.com/avatar/b97c65bdc9c8adb91478060284a11205?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" => "Vousk", "reputation" => 49, "user_id" => 14080345, "link" => "https://stackoverflow.com/users/14080345/vousk", "profile_image" => "https://www.gravatar.com/avatar/f8b32b2816a4713ed0110772558a3f0b?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" => "swasweng", "reputation" => 1, "user_id" => 3532156, "link" => "https://stackoverflow.com/users/3532156/swasweng", "profile_image" => "https://www.gravatar.com/avatar/e787782d7a0f5184167ff3aaf8a8c551?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" => "Cameron Alaniz", "reputation" => 1, "user_id" => 14356726, "link" => "https://stackoverflow.com/users/14356726/cameron-alaniz", "profile_image" => "https://graph.facebook.com/1747287385421170/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" => "rishi", "reputation" => 11, "user_id" => 14356245, "link" => "https://stackoverflow.com/users/14356245/rishi", "profile_image" => "https://www.gravatar.com/avatar/27d3077cbb5763251134be66017a47b0?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" => "SirTain", "reputation" => 51, "user_id" => 11820384, "link" => "https://stackoverflow.com/users/11820384/sirtain", "profile_image" => "https://lh5.googleusercontent.com/-9pI7Gc3LZfM/AAAAAAAAAAI/AAAAAAAAAAA/mhISfFxRkPw/photo.jpg?sz=128")
badge_type named
rank silver
name Enthusiast
badge_id 71
link https://stackoverflow.com/badges/71/enthusiast
user Dict{String, Any}("user_type" => "registered", "display_name" => "Nika Mgaloblishvili", "reputation" => 1, "user_id" => 11427130, "link" => "https://stackoverflow.com/users/11427130/nika-mgaloblishvili", "profile_image" => "https://www.gravatar.com/avatar/f14289e629bf9dc2541993689023e251?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" => 44, "user_type" => "registered", "display_name" => "user2205916", "reputation" => 1927, "user_id" => 2205916, "link" => "https://stackoverflow.com/users/2205916/user2205916", "profile_image" => "https://www.gravatar.com/avatar/b94c32f9f3d58691775c304526abe634?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" => 87, "user_type" => "registered", "display_name" => "fyngyrz", "reputation" => 1699, "user_id" => 599484, "link" => "https://stackoverflow.com/users/599484/fyngyrz", "profile_image" => "https://www.gravatar.com/avatar/38907a1ff475a70dc71663370685a1a1?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" => 40, "user_type" => "registered", "display_name" => "Chatura Dilan", "reputation" => 1199, "user_id" => 587083, "link" => "https://stackoverflow.com/users/587083/chatura-dilan", "profile_image" => "https://www.gravatar.com/avatar/87d68c2a004b3087e8b27c47d8bdb0be?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" => 82, "user_type" => "registered", "display_name" => "Moshe", "reputation" => 2136, "user_id" => 5783481, "link" => "https://stackoverflow.com/users/5783481/moshe", "profile_image" => "https://i.stack.imgur.com/y9vRE.png?s=128&g=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" => "hiennt", "reputation" => 812, "user_id" => 347310, "link" => "https://stackoverflow.com/users/347310/hiennt", "profile_image" => "https://i.stack.imgur.com/yS8v3.jpg?s=128&g=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" => "Portalfl0w", "reputation" => 1, "user_id" => 6852202, "link" => "https://stackoverflow.com/users/6852202/portalfl0w", "profile_image" => "https://www.gravatar.com/avatar/486af0a78b9996eab110279ffdd40a04?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" => "asd", "reputation" => 151, "user_id" => 5182778, "link" => "https://stackoverflow.com/users/5182778/asd", "profile_image" => "https://www.gravatar.com/avatar/fe165ff91015729c26d1f462d2e9c678?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" => "tsy5176", "reputation" => 11, "user_id" => 14306989, "link" => "https://stackoverflow.com/users/14306989/tsy5176", "profile_image" => "https://www.gravatar.com/avatar/fce74c5861868f791bc9d3315253de10?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" => "julesd", "reputation" => 43, "user_id" => 9869252, "link" => "https://stackoverflow.com/users/9869252/julesd", "profile_image" => "https://www.gravatar.com/avatar/4e60c87890344d1bc179d3f656ab22bb?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" => "Sanjeev Vishwakarma", "reputation" => 3, "user_id" => 14084038, "link" => "https://stackoverflow.com/users/14084038/sanjeev-vishwakarma", "profile_image" => "https://lh3.googleusercontent.com/a-/AOh14GgSc42puzoM_n9Bi0_XxeDZXgiiYyear01huYPAdQ=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" => "JustBoredAsFck", "reputation" => 11, "user_id" => 14356151, "link" => "https://stackoverflow.com/users/14356151/justboredasfck", "profile_image" => "https://i.stack.imgur.com/jkv83.png?s=128&g=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" => "Bryce S", "reputation" => 3, "user_id" => 14356280, "link" => "https://stackoverflow.com/users/14356280/bryce-s", "profile_image" => "https://lh3.googleusercontent.com/a-/AOh14GhnSOPKryGxAfE3DdhDwQ-Cs4yvjiCM6E53J3nrDQ=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" => "asd", "reputation" => 151, "user_id" => 5182778, "link" => "https://stackoverflow.com/users/5182778/asd", "profile_image" => "https://www.gravatar.com/avatar/fe165ff91015729c26d1f462d2e9c678?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" => "asd", "reputation" => 151, "user_id" => 5182778, "link" => "https://stackoverflow.com/users/5182778/asd", "profile_image" => "https://www.gravatar.com/avatar/fe165ff91015729c26d1f462d2e9c678?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" => "Andrew P", "reputation" => 11, "user_id" => 13013934, "link" => "https://stackoverflow.com/users/13013934/andrew-p", "profile_image" => "https://www.gravatar.com/avatar/c75d4c2e2bfc654f167c6a34c1cc0f48?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" => "Luis Fernando Dos Prazeres ", "reputation" => 11, "user_id" => 14356838, "link" => "https://stackoverflow.com/users/14356838/luis-fernando-dos-prazeres", "profile_image" => "https://lh3.googleusercontent.com/a-/AOh14GjvwzMA9Xnuk_t6_JVMJhU0Gw4Unxrl5E3RWeua=k-s128")
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" => "Kreo021", "reputation" => 11, "user_id" => 14356864, "link" => "https://stackoverflow.com/users/14356864/kreo021", "profile_image" => "https://www.gravatar.com/avatar/aefc13013c5dd666924e15c8bd5ff0fc?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" => "kwinsler", "reputation" => 11, "user_id" => 14271692, "link" => "https://stackoverflow.com/users/14271692/kwinsler", "profile_image" => "https://www.gravatar.com/avatar/46d17e133b4a9da4bb4587616f951ee9?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" => "Sam Nicole Peterson", "reputation" => 11, "user_id" => 11336179, "link" => "https://stackoverflow.com/users/11336179/sam-nicole-peterson", "profile_image" => "https://lh4.googleusercontent.com/-9C6em30oPH4/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3rfjs76xc-DK-G4HuiNOSHIsfYHq5Q/mo/photo.jpg?sz=128")
badge_type named
rank bronze
name Supporter
badge_id 6
link https://stackoverflow.com/badges/6/supporter
user Dict{String, Any}("user_type" => "registered", "display_name" => "asd", "reputation" => 151, "user_id" => 5182778, "link" => "https://stackoverflow.com/users/5182778/asd", "profile_image" => "https://www.gravatar.com/avatar/fe165ff91015729c26d1f462d2e9c678?s=128&d=identicon&r=PG&f=1")
badge_type named
StackOverflow.SiteInfo
new_active_users: Int64 14
total_users: Int64 13161846
badges_per_minute: Float64 5.85
total_badges: Int64 37434855
total_votes: Int64 161698294
total_comments: Int64 95894142
answers_per_minute: Float64 4.73
questions_per_minute: Float64 3.16
total_answers: Int64 30274445
total_accepted: Int64 10451235
total_unanswered: Int64 6086331
total_questions: Int64 20201349
name julia
count 7381
name julian-date
count 233
name julia-jump
count 212
name ijulia-notebook
count 131
name julia-studio
count 27
name julia-gpu
count 21
name julia-flux
count 13
name julia-dataframe
count 10
name julia-pkg
count 9
name juliadb
count 7
name julia-plots
count 6
name julia-1.x
count 3
name julia-gen
count 1
last_modified_date : 1601298600
is_employee : false
reputation_change_month : 5771
user_id : 22656
creation_date : 1222430705
link : https://stackoverflow.com/users/22656/jon-skeet
location : Reading, United Kingdom
account_id : 11683
reputation_change_day : 190
reputation_change_week : 390
website_url : http://csharpindepth.com
reputation_change_quarter : 18539
accept_rate : 86
reputation : 1210768
profile_image : https://www.gravatar.com/avatar/6d8ebb117e8d83d74ea95fbdd0f87e13?s=128&d=identicon&r=PG
reputation_change_year : 56243
last_access_date : 1601320427
user_type : registered
display_name : Jon Skeet
badge_counts : Dict{String, Any}("silver" => 8558, "gold" => 772, "bronze" => 8821)
last_modified_date : 1601244601
is_employee : false
reputation_change_month : 10774
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 : 238
reputation_change_week : 571
website_url : http://www.data-miners.com
reputation_change_quarter : 37606
reputation : 1015130
profile_image : https://www.gravatar.com/avatar/e514b017977ebf742a418cac697d8996?s=128&d=identicon&r=PG
reputation_change_year : 117074
last_access_date : 1601245551
user_type : registered
display_name : Gordon Linoff
badge_counts : Dict{String, Any}("silver" => 433, "gold" => 47, "bronze" => 554)
last_modified_date : 1601305501
is_employee : false
reputation_change_month : 6707
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 : 490
website_url : http://careers.stackoverflow.com/vonc
reputation_change_quarter : 22267
accept_rate : 100
reputation : 985355
profile_image : https://www.gravatar.com/avatar/7aa22372b695ed2b26052c340f9097eb?s=128&d=identicon&r=PG
reputation_change_year : 66630
last_access_date : 1601319904
user_type : registered
display_name : VonC
badge_counts : Dict{String, Any}("silver" => 3396, "gold" => 405, "bronze" => 3993)
last_modified_date : 1601217302
is_employee : false
reputation_change_month : 4397
user_id : 157882
creation_date : 1250527322
link : https://stackoverflow.com/users/157882/balusc
location : Willemstad, Curaçao
account_id : 52822
reputation_change_day : 150
reputation_change_week : 280
website_url : https://balusc.omnifaces.org
reputation_change_quarter : 14792
accept_rate : 93
reputation : 953445
profile_image : https://www.gravatar.com/avatar/89927e2f4bde24991649b353a37678b9?s=128&d=identicon&r=PG
reputation_change_year : 47450
last_access_date : 1601307358
user_type : registered
display_name : BalusC
badge_counts : Dict{String, Any}("silver" => 3419, "gold" => 342, "bronze" => 3405)
last_modified_date : 1600826700
is_employee : false
reputation_change_month : 3519
user_id : 29407
creation_date : 1224432467
link : https://stackoverflow.com/users/29407/darin-dimitrov
location : Sofia, Bulgaria
account_id : 14332
reputation_change_day : 98
reputation_change_week : 198
website_url : http://stackoverflow.com/search?q=user%3a29407&tab=newest
reputation_change_quarter : 11802
accept_rate : 86
reputation : 930248
profile_image : https://www.gravatar.com/avatar/e3a181e9cdd4757a8b416d93878770c5?s=128&d=identicon&r=PG
reputation_change_year : 37985
last_access_date : 1600616505
user_type : registered
display_name : Darin Dimitrov
badge_counts : Dict{String, Any}("silver" => 3153, "gold" => 250, "bronze" => 2843)
last_modified_date : 1601211605
is_employee : true
reputation_change_month : 4614
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 : 150
reputation_change_week : 236
website_url : http://blog.marcgravell.com
reputation_change_quarter : 15230
accept_rate : 100
reputation : 888104
profile_image : https://i.stack.imgur.com/CrVFH.png?s=128&g=1
reputation_change_year : 48294
last_access_date : 1601320039
user_type : moderator
display_name : Marc Gravell
badge_counts : Dict{String, Any}("silver" => 2356, "gold" => 227, "bronze" => 2720)
last_modified_date : 1601298600
is_employee : false
reputation_change_month : 3567
user_id : 115145
creation_date : 1243786808
link : https://stackoverflow.com/users/115145/commonsware
location : Pennsylvania, United States
account_id : 39846
reputation_change_day : 128
reputation_change_week : 268
website_url : https://commonsware.com
reputation_change_quarter : 13462
accept_rate : 84
reputation : 872829
profile_image : https://i.stack.imgur.com/wDnd8.png?s=128&g=1
reputation_change_year : 44944
last_access_date : 1601318506
user_type : registered
display_name : CommonsWare
badge_counts : Dict{String, Any}("silver" => 2134, "gold" => 161, "bronze" => 2161)
last_modified_date : 1601301901
is_employee : false
reputation_change_month : 2337
user_id : 17034
creation_date : 1221698729
link : https://stackoverflow.com/users/17034/hans-passant
location : Madison, WI
account_id : 9266
reputation_change_day : 53
reputation_change_week : 144
website_url :
reputation_change_quarter : 8042
reputation : 851897
profile_image : https://i.stack.imgur.com/Cii6b.png?s=128&g=1
reputation_change_year : 26408
last_access_date : 1601319365
user_type : registered
display_name : Hans Passant
badge_counts : Dict{String, Any}("silver" => 1496, "gold" => 124, "bronze" => 2306)
last_modified_date : 1601318101
is_employee : false
reputation_change_month : 5916
user_id : 100297
creation_date : 1241362437
link : https://stackoverflow.com/users/100297/martijn-pieters
location : Cambridge, UK
account_id : 35417
reputation_change_day : 210
reputation_change_week : 390
website_url : http://www.zopatista.com/
reputation_change_quarter : 18485
reputation : 839239
profile_image : https://www.gravatar.com/avatar/24780fb6df85a943c7aea0402c843737?s=128&d=identicon&r=PG
reputation_change_year : 56238
last_access_date : 1601319890
user_type : moderator
display_name : Martijn Pieters
badge_counts : Dict{String, Any}("silver" => 3220, "gold" => 212, "bronze" => 2810)
last_modified_date : 1601298600
is_employee : false
reputation_change_month : 6274
user_id : 157247
creation_date : 1250420422
link : https://stackoverflow.com/users/157247/t-j-crowder
location : United Kingdom
account_id : 52616
reputation_change_day : 220
reputation_change_week : 480
website_url : https://thenewtoys.dev
reputation_change_quarter : 20503
accept_rate : 91
reputation : 825089
profile_image : https://i.stack.imgur.com/4HovX.jpg?s=128&g=1
reputation_change_year : 63240
last_access_date : 1601314484
user_type : registered
display_name : T.J. Crowder
badge_counts : Dict{String, Any}("silver" => 1512, "gold" => 153, "bronze" => 1554)
last_modified_date : 1601298600
is_employee : false
reputation_change_month : 5028
user_id : 893
creation_date : 1218356820
link : https://stackoverflow.com/users/893/greg-hewgill
location : Christchurch, New Zealand
account_id : 680
reputation_change_day : 180
reputation_change_week : 280
website_url : http://hewgill.com
reputation_change_quarter : 16156
accept_rate : 84
reputation : 783462
profile_image : https://www.gravatar.com/avatar/747ffa5da3538e66840ebc0548b8fd58?s=128&d=identicon&r=PG
reputation_change_year : 50206
last_access_date : 1601200741
user_type : registered
display_name : Greg Hewgill
badge_counts : Dict{String, Any}("silver" => 1084, "gold" => 167, "bronze" => 1222)
last_modified_date : 1601117401
is_employee : false
reputation_change_month : 4020
user_id : 34397
creation_date : 1225829805
link : https://stackoverflow.com/users/34397/slaks
location : New Jersey
account_id : 15988
reputation_change_day : 108
reputation_change_week : 118
website_url : https://SLaks.net
reputation_change_quarter : 12513
accept_rate : 87
reputation : 770574
profile_image : https://www.gravatar.com/avatar/7deca8ec973c3c0875e9a36e1e3e2c44?s=128&d=identicon&r=PG
reputation_change_year : 38614
last_access_date : 1595269224
user_type : registered
display_name : SLaks
badge_counts : Dict{String, Any}("silver" => 1771, "gold" => 161, "bronze" => 1863)
last_modified_date : 1601319901
is_employee : false
reputation_change_month : 5097
user_id : 19068
creation_date : 1221842906
link : https://stackoverflow.com/users/19068/quentin
location : United Kingdom
account_id : 10162
reputation_change_day : 255
reputation_change_week : 442
website_url :
reputation_change_quarter : 16521
reputation : 754919
profile_image : https://www.gravatar.com/avatar/1d2d3229ed1961d2bd81853242493247?s=128&d=identicon&r=PG
reputation_change_year : 50805
last_access_date : 1601317004
user_type : registered
display_name : Quentin
badge_counts : Dict{String, Any}("silver" => 1016, "gold" => 92, "bronze" => 1155)
last_modified_date : 1601298600
is_employee : false
reputation_change_month : 4731
user_id : 14860
creation_date : 1221622605
link : https://stackoverflow.com/users/14860/paxdiablo
account_id : 8291
reputation_change_day : 185
reputation_change_week : 285
website_url :
reputation_change_quarter : 15358
accept_rate : 100
reputation : 736695
profile_image : https://i.stack.imgur.com/vXG1F.png?s=128&g=1
reputation_change_year : 46928
last_access_date : 1601281298
user_type : registered
display_name : paxdiablo
badge_counts : Dict{String, Any}("silver" => 1424, "gold" => 199, "bronze" => 1793)
last_modified_date : 1600826700
is_employee : false
reputation_change_month : 4392
user_id : 95810
creation_date : 1240625354
link : https://stackoverflow.com/users/95810/alex-martelli
location : Sunnyvale, CA
account_id : 34048
reputation_change_day : 170
reputation_change_week : 366
website_url : http://www.aleax.it
reputation_change_quarter : 14190
accept_rate : 80
reputation : 724519
profile_image : https://www.gravatar.com/avatar/e8d5fe90f1fe2148bf130cccd4dc311c?s=128&d=identicon&r=PG
reputation_change_year : 44993
last_access_date : 1600898244
user_type : registered
display_name : Alex Martelli
badge_counts : Dict{String, Any}("silver" => 1126, "gold" => 148, "bronze" => 1324)
last_modified_date : 1600332600
is_employee : false
reputation_change_month : 3948
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 : 130
reputation_change_week : 230
website_url : http://codingspot.com
reputation_change_quarter : 13792
reputation : 688542
profile_image : https://www.gravatar.com/avatar/932fb89b9d4049cec5cba357bf0ae388?s=128&d=identicon&r=PG
reputation_change_year : 43339
last_access_date : 1601317663
user_type : registered
display_name : Christian C. Salvadó
badge_counts : Dict{String, Any}("silver" => 886, "gold" => 171, "bronze" => 826)
last_modified_date : 1601111700
is_employee : false
reputation_change_month : 4184
user_id : 61974
creation_date : 1233672960
link : https://stackoverflow.com/users/61974/mark-byers
location : Denmark
account_id : 24377
reputation_change_day : 200
reputation_change_week : 300
website_url : http://careers.stackoverflow.com/markbyers/
reputation_change_quarter : 13916
reputation : 683454
profile_image : https://www.gravatar.com/avatar/ad240ed5cc406759f0fd72591dc8ca47?s=128&d=identicon&r=PG
reputation_change_year : 42819
last_access_date : 1591965406
user_type : registered
display_name : Mark Byers
badge_counts : Dict{String, Any}("silver" => 1468, "gold" => 155, "bronze" => 1388)
last_modified_date : 1601298600
is_employee : false
reputation_change_month : 3612
user_id : 20862
creation_date : 1222135580
link : https://stackoverflow.com/users/20862/ignacio-vazquez-abrams
account_id : 10930
reputation_change_day : 100
reputation_change_week : 148
website_url :
reputation_change_quarter : 11921
accept_rate : 50
reputation : 667574
profile_image : https://www.gravatar.com/avatar/2343ae368d3241278581ce6c87f62a25?s=128&d=identicon&r=PG
reputation_change_year : 38724
last_access_date : 1546328601
user_type : registered
display_name : Ignacio Vazquez-Abrams
badge_counts : Dict{String, Any}("silver" => 1191, "gold" => 127, "bronze" => 1250)
last_modified_date : 1600945800
is_employee : false
reputation_change_month : 5069
user_id : 218196
creation_date : 1259104089
link : https://stackoverflow.com/users/218196/felix-kling
account_id : 76141
reputation_change_day : 160
reputation_change_week : 280
website_url : http://felix-kling.de
reputation_change_quarter : 15556
accept_rate : 100
reputation : 666044
profile_image : https://i.stack.imgur.com/4P5DY.jpg?s=128&g=1
reputation_change_year : 48274
last_access_date : 1601298014
user_type : registered
display_name : Felix Kling
badge_counts : Dict{String, Any}("silver" => 968, "gold" => 151, "bronze" => 1032)
last_modified_date : 1601201400
is_employee : false
reputation_change_month : 5378
user_id : 190597
creation_date : 1255610900
link : https://stackoverflow.com/users/190597/unutbu
account_id : 64585
reputation_change_day : 200
reputation_change_week : 370
website_url :
reputation_change_quarter : 17382
accept_rate : 88
reputation : 665445
profile_image : https://www.gravatar.com/avatar/aabc98d5c6482ca0e1405ec97710f30a?s=128&d=identicon&r=PG&f=1
reputation_change_year : 52392
last_access_date : 1601150377
user_type : registered
display_name : unutbu
badge_counts : Dict{String, Any}("silver" => 1483, "gold" => 138, "bronze" => 1473)
last_modified_date : 1600826700
is_employee : false
reputation_change_month : 1953
user_id : 335858
creation_date : 1273269250
link : https://stackoverflow.com/users/335858/dasblinkenlight
location : United States
account_id : 134022
reputation_change_day : 40
reputation_change_week : 90
website_url : http://stackoverflow.com/users/335858/dasblinkenlight
reputation_change_quarter : 6331
accept_rate : 81
reputation : 658822
profile_image : https://www.gravatar.com/avatar/4af3541c00d591e9a518b9c0b3b1190a?s=128&d=identicon&r=PG
reputation_change_year : 20192
last_access_date : 1601306517
user_type : registered
display_name : dasblinkenlight
badge_counts : Dict{String, Any}("silver" => 945, "gold" => 69, "bronze" => 1355)
last_modified_date : 1600702200
is_employee : false
reputation_change_month : 2884
user_id : 13302
creation_date : 1221588555
link : https://stackoverflow.com/users/13302/marc-s
location : Bern, Switzerland
account_id : 7633
reputation_change_day : 220
reputation_change_week : 229
website_url :
reputation_change_quarter : 9533
accept_rate : 99
reputation : 650101
profile_image : https://www.gravatar.com/avatar/b4779212f57ff2e9549ea90a4499c2d7?s=128&d=identicon&r=PG
reputation_change_year : 31421
last_access_date : 1601317455
user_type : registered
display_name : marc_s
badge_counts : Dict{String, Any}("silver" => 1225, "gold" => 146, "bronze" => 1355)
last_modified_date : 1601020501
is_employee : false
reputation_change_month : 2848
user_id : 23283
creation_date : 1222642783
link : https://stackoverflow.com/users/23283/jaredpar
location : Redmond, WA
account_id : 11948
reputation_change_day : 70
reputation_change_week : 140
website_url : http://blog.paranoidcoding.com/
reputation_change_quarter : 9570
accept_rate : 100
reputation : 648061
profile_image : https://www.gravatar.com/avatar/529ba429a58902bef56c2fcb672d5ccb?s=128&d=identicon&r=PG
reputation_change_year : 31869
last_access_date : 1601301856
user_type : registered
display_name : JaredPar
badge_counts : Dict{String, Any}("silver" => 1160, "gold" => 133, "bronze" => 1395)
last_modified_date : 1601140200
is_employee : false
reputation_change_month : 3134
user_id : 15168
creation_date : 1221633947
link : https://stackoverflow.com/users/15168/jonathan-leffler
location : Colorado, USA
account_id : 8423
reputation_change_day : 120
reputation_change_week : 195
website_url : https://stackoverflow.com/users/15168
reputation_change_quarter : 9566
accept_rate : 100
reputation : 641215
profile_image : https://i.stack.imgur.com/WtEI9.png?s=128&g=1
reputation_change_year : 32526
last_access_date : 1601316064
user_type : registered
display_name : Jonathan Leffler
badge_counts : Dict{String, Any}("silver" => 777, "gold" => 111, "bronze" => 1149)
last_modified_date : 1600103101
is_employee : false
reputation_change_month : 2617
user_id : 69083
creation_date : 1235161492
link : https://stackoverflow.com/users/69083/guffa
location : Virsbo, Sweden
account_id : 26521
reputation_change_day : 50
reputation_change_week : 90
website_url : http://www.guffa.com
reputation_change_quarter : 8404
reputation : 618598
profile_image : https://www.gravatar.com/avatar/1db0cdfd3fe268e270ec481a73046c2f?s=128&d=identicon&r=PG
reputation_change_year : 27149
last_access_date : 1601283476
user_type : registered
display_name : Guffa
badge_counts : Dict{String, Any}("silver" => 651, "gold" => 90, "bronze" => 926)
last_modified_date : 1601289000
is_employee : false
reputation_change_month : 4657
user_id : 548225
creation_date : 1292821840
link : https://stackoverflow.com/users/548225/anubhava
location : Bangalore, India
account_id : 262968
reputation_change_day : 170
reputation_change_week : 315
website_url : http://anubhava.wordpress.com
reputation_change_quarter : 14088
accept_rate : 90
reputation : 615104
profile_image : https://www.gravatar.com/avatar/dab08478b226280d4a30894c9a7ed719?s=128&d=identicon&r=PG
reputation_change_year : 42288
last_access_date : 1601318291
user_type : registered
display_name : anubhava
badge_counts : Dict{String, Any}("silver" => 422, "gold" => 52, "bronze" => 503)
last_modified_date : 1600790700
is_employee : false
reputation_change_month : 2478
user_id : 571407
creation_date : 1294757277
link : https://stackoverflow.com/users/571407/jb-nizet
location : Saint-Etienne, France
account_id : 277416
reputation_change_day : 140
reputation_change_week : 190
website_url :
reputation_change_quarter : 7969
accept_rate : 100
reputation : 612814
profile_image : https://www.gravatar.com/avatar/2f0d9dec16bae1e06552af55ddefc11f?s=128&d=identicon&r=PG
reputation_change_year : 28755
last_access_date : 1598086966
user_type : registered
display_name : JB Nizet
badge_counts : Dict{String, Any}("silver" => 1064, "gold" => 78, "bronze" => 1138)
last_modified_date : 1601118600
is_employee : false
reputation_change_month : 4168
user_id : 19563
creation_date : 1221903545
link : https://stackoverflow.com/users/19563/cb-bailey
location : United Kingdom
account_id : 10375
reputation_change_day : 200
reputation_change_week : 290
website_url :
reputation_change_quarter : 14111
reputation : 610341
profile_image : https://www.gravatar.com/avatar/a8db27c91db97757a829c7971fd62b84?s=128&d=identicon&r=PG