-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathopensource-default.json
5096 lines (5085 loc) · 250 KB
/
opensource-default.json
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
[
{
"id": 56073187,
"node_id": "MDEwOlJlcG9zaXRvcnk1NjA3MzE4Nw==",
"name": "houbb.github.io",
"full_name": "houbb/houbb.github.io",
"private": false,
"owner": {
"login": "houbb",
"id": 18375710,
"node_id": "MDQ6VXNlcjE4Mzc1NzEw",
"avatar_url": "https://avatars.githubusercontent.com/u/18375710?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/houbb",
"html_url": "https://github.com/houbb",
"followers_url": "https://api.github.com/users/houbb/followers",
"following_url": "https://api.github.com/users/houbb/following{/other_user}",
"gists_url": "https://api.github.com/users/houbb/gists{/gist_id}",
"starred_url": "https://api.github.com/users/houbb/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/houbb/subscriptions",
"organizations_url": "https://api.github.com/users/houbb/orgs",
"repos_url": "https://api.github.com/users/houbb/repos",
"events_url": "https://api.github.com/users/houbb/events{/privacy}",
"received_events_url": "https://api.github.com/users/houbb/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/houbb/houbb.github.io",
"description": "🧀The blog for github pages.",
"fork": false,
"url": "https://api.github.com/repos/houbb/houbb.github.io",
"forks_url": "https://api.github.com/repos/houbb/houbb.github.io/forks",
"keys_url": "https://api.github.com/repos/houbb/houbb.github.io/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/houbb/houbb.github.io/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/houbb/houbb.github.io/teams",
"hooks_url": "https://api.github.com/repos/houbb/houbb.github.io/hooks",
"issue_events_url": "https://api.github.com/repos/houbb/houbb.github.io/issues/events{/number}",
"events_url": "https://api.github.com/repos/houbb/houbb.github.io/events",
"assignees_url": "https://api.github.com/repos/houbb/houbb.github.io/assignees{/user}",
"branches_url": "https://api.github.com/repos/houbb/houbb.github.io/branches{/branch}",
"tags_url": "https://api.github.com/repos/houbb/houbb.github.io/tags",
"blobs_url": "https://api.github.com/repos/houbb/houbb.github.io/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/houbb/houbb.github.io/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/houbb/houbb.github.io/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/houbb/houbb.github.io/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/houbb/houbb.github.io/statuses/{sha}",
"languages_url": "https://api.github.com/repos/houbb/houbb.github.io/languages",
"stargazers_url": "https://api.github.com/repos/houbb/houbb.github.io/stargazers",
"contributors_url": "https://api.github.com/repos/houbb/houbb.github.io/contributors",
"subscribers_url": "https://api.github.com/repos/houbb/houbb.github.io/subscribers",
"subscription_url": "https://api.github.com/repos/houbb/houbb.github.io/subscription",
"commits_url": "https://api.github.com/repos/houbb/houbb.github.io/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/houbb/houbb.github.io/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/houbb/houbb.github.io/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/houbb/houbb.github.io/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/houbb/houbb.github.io/contents/{+path}",
"compare_url": "https://api.github.com/repos/houbb/houbb.github.io/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/houbb/houbb.github.io/merges",
"archive_url": "https://api.github.com/repos/houbb/houbb.github.io/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/houbb/houbb.github.io/downloads",
"issues_url": "https://api.github.com/repos/houbb/houbb.github.io/issues{/number}",
"pulls_url": "https://api.github.com/repos/houbb/houbb.github.io/pulls{/number}",
"milestones_url": "https://api.github.com/repos/houbb/houbb.github.io/milestones{/number}",
"notifications_url": "https://api.github.com/repos/houbb/houbb.github.io/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/houbb/houbb.github.io/labels{/name}",
"releases_url": "https://api.github.com/repos/houbb/houbb.github.io/releases{/id}",
"deployments_url": "https://api.github.com/repos/houbb/houbb.github.io/deployments",
"created_at": "2016-04-12T15:02:08Z",
"updated_at": "2025-03-31T14:14:27Z",
"pushed_at": "2025-03-31T14:14:24Z",
"git_url": "git://github.com/houbb/houbb.github.io.git",
"ssh_url": "[email protected]:houbb/houbb.github.io.git",
"clone_url": "https://github.com/houbb/houbb.github.io.git",
"svn_url": "https://github.com/houbb/houbb.github.io",
"homepage": "https://houbb.github.io/",
"size": 173215,
"stargazers_count": 35,
"watchers_count": 35,
"language": "JavaScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"has_discussions": false,
"forks_count": 13,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 3,
"license": {
"key": "apache-2.0",
"name": "Apache License 2.0",
"spdx_id": "Apache-2.0",
"url": "https://api.github.com/licenses/apache-2.0",
"node_id": "MDc6TGljZW5zZTI="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"blog",
"github",
"github-pages",
"jekyll",
"study"
],
"visibility": "public",
"forks": 13,
"open_issues": 3,
"watchers": 35,
"default_branch": "master"
},
{
"id": 957992734,
"node_id": "R_kgDOORnPHg",
"name": "tools",
"full_name": "houbb/tools",
"private": false,
"owner": {
"login": "houbb",
"id": 18375710,
"node_id": "MDQ6VXNlcjE4Mzc1NzEw",
"avatar_url": "https://avatars.githubusercontent.com/u/18375710?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/houbb",
"html_url": "https://github.com/houbb",
"followers_url": "https://api.github.com/users/houbb/followers",
"following_url": "https://api.github.com/users/houbb/following{/other_user}",
"gists_url": "https://api.github.com/users/houbb/gists{/gist_id}",
"starred_url": "https://api.github.com/users/houbb/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/houbb/subscriptions",
"organizations_url": "https://api.github.com/users/houbb/orgs",
"repos_url": "https://api.github.com/users/houbb/repos",
"events_url": "https://api.github.com/users/houbb/events{/privacy}",
"received_events_url": "https://api.github.com/users/houbb/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/houbb/tools",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/houbb/tools",
"forks_url": "https://api.github.com/repos/houbb/tools/forks",
"keys_url": "https://api.github.com/repos/houbb/tools/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/houbb/tools/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/houbb/tools/teams",
"hooks_url": "https://api.github.com/repos/houbb/tools/hooks",
"issue_events_url": "https://api.github.com/repos/houbb/tools/issues/events{/number}",
"events_url": "https://api.github.com/repos/houbb/tools/events",
"assignees_url": "https://api.github.com/repos/houbb/tools/assignees{/user}",
"branches_url": "https://api.github.com/repos/houbb/tools/branches{/branch}",
"tags_url": "https://api.github.com/repos/houbb/tools/tags",
"blobs_url": "https://api.github.com/repos/houbb/tools/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/houbb/tools/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/houbb/tools/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/houbb/tools/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/houbb/tools/statuses/{sha}",
"languages_url": "https://api.github.com/repos/houbb/tools/languages",
"stargazers_url": "https://api.github.com/repos/houbb/tools/stargazers",
"contributors_url": "https://api.github.com/repos/houbb/tools/contributors",
"subscribers_url": "https://api.github.com/repos/houbb/tools/subscribers",
"subscription_url": "https://api.github.com/repos/houbb/tools/subscription",
"commits_url": "https://api.github.com/repos/houbb/tools/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/houbb/tools/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/houbb/tools/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/houbb/tools/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/houbb/tools/contents/{+path}",
"compare_url": "https://api.github.com/repos/houbb/tools/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/houbb/tools/merges",
"archive_url": "https://api.github.com/repos/houbb/tools/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/houbb/tools/downloads",
"issues_url": "https://api.github.com/repos/houbb/tools/issues{/number}",
"pulls_url": "https://api.github.com/repos/houbb/tools/pulls{/number}",
"milestones_url": "https://api.github.com/repos/houbb/tools/milestones{/number}",
"notifications_url": "https://api.github.com/repos/houbb/tools/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/houbb/tools/labels{/name}",
"releases_url": "https://api.github.com/repos/houbb/tools/releases{/id}",
"deployments_url": "https://api.github.com/repos/houbb/tools/deployments",
"created_at": "2025-03-31T13:20:35Z",
"updated_at": "2025-03-31T13:45:43Z",
"pushed_at": "2025-03-31T13:45:40Z",
"git_url": "git://github.com/houbb/tools.git",
"ssh_url": "[email protected]:houbb/tools.git",
"clone_url": "https://github.com/houbb/tools.git",
"svn_url": "https://github.com/houbb/tools",
"homepage": null,
"size": 0,
"stargazers_count": 0,
"watchers_count": 0,
"language": "HTML",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main"
},
{
"id": 957904449,
"node_id": "R_kgDOORh2QQ",
"name": "jk-other",
"full_name": "houbb/jk-other",
"private": false,
"owner": {
"login": "houbb",
"id": 18375710,
"node_id": "MDQ6VXNlcjE4Mzc1NzEw",
"avatar_url": "https://avatars.githubusercontent.com/u/18375710?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/houbb",
"html_url": "https://github.com/houbb",
"followers_url": "https://api.github.com/users/houbb/followers",
"following_url": "https://api.github.com/users/houbb/following{/other_user}",
"gists_url": "https://api.github.com/users/houbb/gists{/gist_id}",
"starred_url": "https://api.github.com/users/houbb/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/houbb/subscriptions",
"organizations_url": "https://api.github.com/users/houbb/orgs",
"repos_url": "https://api.github.com/users/houbb/repos",
"events_url": "https://api.github.com/users/houbb/events{/privacy}",
"received_events_url": "https://api.github.com/users/houbb/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/houbb/jk-other",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/houbb/jk-other",
"forks_url": "https://api.github.com/repos/houbb/jk-other/forks",
"keys_url": "https://api.github.com/repos/houbb/jk-other/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/houbb/jk-other/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/houbb/jk-other/teams",
"hooks_url": "https://api.github.com/repos/houbb/jk-other/hooks",
"issue_events_url": "https://api.github.com/repos/houbb/jk-other/issues/events{/number}",
"events_url": "https://api.github.com/repos/houbb/jk-other/events",
"assignees_url": "https://api.github.com/repos/houbb/jk-other/assignees{/user}",
"branches_url": "https://api.github.com/repos/houbb/jk-other/branches{/branch}",
"tags_url": "https://api.github.com/repos/houbb/jk-other/tags",
"blobs_url": "https://api.github.com/repos/houbb/jk-other/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/houbb/jk-other/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/houbb/jk-other/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/houbb/jk-other/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/houbb/jk-other/statuses/{sha}",
"languages_url": "https://api.github.com/repos/houbb/jk-other/languages",
"stargazers_url": "https://api.github.com/repos/houbb/jk-other/stargazers",
"contributors_url": "https://api.github.com/repos/houbb/jk-other/contributors",
"subscribers_url": "https://api.github.com/repos/houbb/jk-other/subscribers",
"subscription_url": "https://api.github.com/repos/houbb/jk-other/subscription",
"commits_url": "https://api.github.com/repos/houbb/jk-other/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/houbb/jk-other/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/houbb/jk-other/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/houbb/jk-other/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/houbb/jk-other/contents/{+path}",
"compare_url": "https://api.github.com/repos/houbb/jk-other/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/houbb/jk-other/merges",
"archive_url": "https://api.github.com/repos/houbb/jk-other/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/houbb/jk-other/downloads",
"issues_url": "https://api.github.com/repos/houbb/jk-other/issues{/number}",
"pulls_url": "https://api.github.com/repos/houbb/jk-other/pulls{/number}",
"milestones_url": "https://api.github.com/repos/houbb/jk-other/milestones{/number}",
"notifications_url": "https://api.github.com/repos/houbb/jk-other/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/houbb/jk-other/labels{/name}",
"releases_url": "https://api.github.com/repos/houbb/jk-other/releases{/id}",
"deployments_url": "https://api.github.com/repos/houbb/jk-other/deployments",
"created_at": "2025-03-31T10:35:52Z",
"updated_at": "2025-03-31T10:44:52Z",
"pushed_at": "2025-03-31T10:46:52Z",
"git_url": "git://github.com/houbb/jk-other.git",
"ssh_url": "[email protected]:houbb/jk-other.git",
"clone_url": "https://github.com/houbb/jk-other.git",
"svn_url": "https://github.com/houbb/jk-other",
"homepage": null,
"size": 67268,
"stargazers_count": 0,
"watchers_count": 0,
"language": "TypeScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main"
},
{
"id": 957895771,
"node_id": "R_kgDOORhUWw",
"name": "jk-ai",
"full_name": "houbb/jk-ai",
"private": false,
"owner": {
"login": "houbb",
"id": 18375710,
"node_id": "MDQ6VXNlcjE4Mzc1NzEw",
"avatar_url": "https://avatars.githubusercontent.com/u/18375710?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/houbb",
"html_url": "https://github.com/houbb",
"followers_url": "https://api.github.com/users/houbb/followers",
"following_url": "https://api.github.com/users/houbb/following{/other_user}",
"gists_url": "https://api.github.com/users/houbb/gists{/gist_id}",
"starred_url": "https://api.github.com/users/houbb/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/houbb/subscriptions",
"organizations_url": "https://api.github.com/users/houbb/orgs",
"repos_url": "https://api.github.com/users/houbb/repos",
"events_url": "https://api.github.com/users/houbb/events{/privacy}",
"received_events_url": "https://api.github.com/users/houbb/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/houbb/jk-ai",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/houbb/jk-ai",
"forks_url": "https://api.github.com/repos/houbb/jk-ai/forks",
"keys_url": "https://api.github.com/repos/houbb/jk-ai/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/houbb/jk-ai/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/houbb/jk-ai/teams",
"hooks_url": "https://api.github.com/repos/houbb/jk-ai/hooks",
"issue_events_url": "https://api.github.com/repos/houbb/jk-ai/issues/events{/number}",
"events_url": "https://api.github.com/repos/houbb/jk-ai/events",
"assignees_url": "https://api.github.com/repos/houbb/jk-ai/assignees{/user}",
"branches_url": "https://api.github.com/repos/houbb/jk-ai/branches{/branch}",
"tags_url": "https://api.github.com/repos/houbb/jk-ai/tags",
"blobs_url": "https://api.github.com/repos/houbb/jk-ai/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/houbb/jk-ai/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/houbb/jk-ai/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/houbb/jk-ai/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/houbb/jk-ai/statuses/{sha}",
"languages_url": "https://api.github.com/repos/houbb/jk-ai/languages",
"stargazers_url": "https://api.github.com/repos/houbb/jk-ai/stargazers",
"contributors_url": "https://api.github.com/repos/houbb/jk-ai/contributors",
"subscribers_url": "https://api.github.com/repos/houbb/jk-ai/subscribers",
"subscription_url": "https://api.github.com/repos/houbb/jk-ai/subscription",
"commits_url": "https://api.github.com/repos/houbb/jk-ai/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/houbb/jk-ai/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/houbb/jk-ai/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/houbb/jk-ai/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/houbb/jk-ai/contents/{+path}",
"compare_url": "https://api.github.com/repos/houbb/jk-ai/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/houbb/jk-ai/merges",
"archive_url": "https://api.github.com/repos/houbb/jk-ai/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/houbb/jk-ai/downloads",
"issues_url": "https://api.github.com/repos/houbb/jk-ai/issues{/number}",
"pulls_url": "https://api.github.com/repos/houbb/jk-ai/pulls{/number}",
"milestones_url": "https://api.github.com/repos/houbb/jk-ai/milestones{/number}",
"notifications_url": "https://api.github.com/repos/houbb/jk-ai/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/houbb/jk-ai/labels{/name}",
"releases_url": "https://api.github.com/repos/houbb/jk-ai/releases{/id}",
"deployments_url": "https://api.github.com/repos/houbb/jk-ai/deployments",
"created_at": "2025-03-31T10:15:41Z",
"updated_at": "2025-03-31T10:31:36Z",
"pushed_at": "2025-03-31T10:33:35Z",
"git_url": "git://github.com/houbb/jk-ai.git",
"ssh_url": "[email protected]:houbb/jk-ai.git",
"clone_url": "https://github.com/houbb/jk-ai.git",
"svn_url": "https://github.com/houbb/jk-ai",
"homepage": null,
"size": 64543,
"stargazers_count": 0,
"watchers_count": 0,
"language": "TypeScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main"
},
{
"id": 957879019,
"node_id": "R_kgDOORgS6w",
"name": "jk-middle",
"full_name": "houbb/jk-middle",
"private": false,
"owner": {
"login": "houbb",
"id": 18375710,
"node_id": "MDQ6VXNlcjE4Mzc1NzEw",
"avatar_url": "https://avatars.githubusercontent.com/u/18375710?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/houbb",
"html_url": "https://github.com/houbb",
"followers_url": "https://api.github.com/users/houbb/followers",
"following_url": "https://api.github.com/users/houbb/following{/other_user}",
"gists_url": "https://api.github.com/users/houbb/gists{/gist_id}",
"starred_url": "https://api.github.com/users/houbb/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/houbb/subscriptions",
"organizations_url": "https://api.github.com/users/houbb/orgs",
"repos_url": "https://api.github.com/users/houbb/repos",
"events_url": "https://api.github.com/users/houbb/events{/privacy}",
"received_events_url": "https://api.github.com/users/houbb/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/houbb/jk-middle",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/houbb/jk-middle",
"forks_url": "https://api.github.com/repos/houbb/jk-middle/forks",
"keys_url": "https://api.github.com/repos/houbb/jk-middle/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/houbb/jk-middle/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/houbb/jk-middle/teams",
"hooks_url": "https://api.github.com/repos/houbb/jk-middle/hooks",
"issue_events_url": "https://api.github.com/repos/houbb/jk-middle/issues/events{/number}",
"events_url": "https://api.github.com/repos/houbb/jk-middle/events",
"assignees_url": "https://api.github.com/repos/houbb/jk-middle/assignees{/user}",
"branches_url": "https://api.github.com/repos/houbb/jk-middle/branches{/branch}",
"tags_url": "https://api.github.com/repos/houbb/jk-middle/tags",
"blobs_url": "https://api.github.com/repos/houbb/jk-middle/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/houbb/jk-middle/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/houbb/jk-middle/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/houbb/jk-middle/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/houbb/jk-middle/statuses/{sha}",
"languages_url": "https://api.github.com/repos/houbb/jk-middle/languages",
"stargazers_url": "https://api.github.com/repos/houbb/jk-middle/stargazers",
"contributors_url": "https://api.github.com/repos/houbb/jk-middle/contributors",
"subscribers_url": "https://api.github.com/repos/houbb/jk-middle/subscribers",
"subscription_url": "https://api.github.com/repos/houbb/jk-middle/subscription",
"commits_url": "https://api.github.com/repos/houbb/jk-middle/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/houbb/jk-middle/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/houbb/jk-middle/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/houbb/jk-middle/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/houbb/jk-middle/contents/{+path}",
"compare_url": "https://api.github.com/repos/houbb/jk-middle/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/houbb/jk-middle/merges",
"archive_url": "https://api.github.com/repos/houbb/jk-middle/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/houbb/jk-middle/downloads",
"issues_url": "https://api.github.com/repos/houbb/jk-middle/issues{/number}",
"pulls_url": "https://api.github.com/repos/houbb/jk-middle/pulls{/number}",
"milestones_url": "https://api.github.com/repos/houbb/jk-middle/milestones{/number}",
"notifications_url": "https://api.github.com/repos/houbb/jk-middle/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/houbb/jk-middle/labels{/name}",
"releases_url": "https://api.github.com/repos/houbb/jk-middle/releases{/id}",
"deployments_url": "https://api.github.com/repos/houbb/jk-middle/deployments",
"created_at": "2025-03-31T09:38:04Z",
"updated_at": "2025-03-31T09:52:50Z",
"pushed_at": "2025-03-31T09:54:55Z",
"git_url": "git://github.com/houbb/jk-middle.git",
"ssh_url": "[email protected]:houbb/jk-middle.git",
"clone_url": "https://github.com/houbb/jk-middle.git",
"svn_url": "https://github.com/houbb/jk-middle",
"homepage": null,
"size": 66566,
"stargazers_count": 0,
"watchers_count": 0,
"language": "TypeScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main"
},
{
"id": 957861173,
"node_id": "R_kgDOORfNNQ",
"name": "jk-it",
"full_name": "houbb/jk-it",
"private": false,
"owner": {
"login": "houbb",
"id": 18375710,
"node_id": "MDQ6VXNlcjE4Mzc1NzEw",
"avatar_url": "https://avatars.githubusercontent.com/u/18375710?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/houbb",
"html_url": "https://github.com/houbb",
"followers_url": "https://api.github.com/users/houbb/followers",
"following_url": "https://api.github.com/users/houbb/following{/other_user}",
"gists_url": "https://api.github.com/users/houbb/gists{/gist_id}",
"starred_url": "https://api.github.com/users/houbb/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/houbb/subscriptions",
"organizations_url": "https://api.github.com/users/houbb/orgs",
"repos_url": "https://api.github.com/users/houbb/repos",
"events_url": "https://api.github.com/users/houbb/events{/privacy}",
"received_events_url": "https://api.github.com/users/houbb/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/houbb/jk-it",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/houbb/jk-it",
"forks_url": "https://api.github.com/repos/houbb/jk-it/forks",
"keys_url": "https://api.github.com/repos/houbb/jk-it/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/houbb/jk-it/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/houbb/jk-it/teams",
"hooks_url": "https://api.github.com/repos/houbb/jk-it/hooks",
"issue_events_url": "https://api.github.com/repos/houbb/jk-it/issues/events{/number}",
"events_url": "https://api.github.com/repos/houbb/jk-it/events",
"assignees_url": "https://api.github.com/repos/houbb/jk-it/assignees{/user}",
"branches_url": "https://api.github.com/repos/houbb/jk-it/branches{/branch}",
"tags_url": "https://api.github.com/repos/houbb/jk-it/tags",
"blobs_url": "https://api.github.com/repos/houbb/jk-it/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/houbb/jk-it/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/houbb/jk-it/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/houbb/jk-it/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/houbb/jk-it/statuses/{sha}",
"languages_url": "https://api.github.com/repos/houbb/jk-it/languages",
"stargazers_url": "https://api.github.com/repos/houbb/jk-it/stargazers",
"contributors_url": "https://api.github.com/repos/houbb/jk-it/contributors",
"subscribers_url": "https://api.github.com/repos/houbb/jk-it/subscribers",
"subscription_url": "https://api.github.com/repos/houbb/jk-it/subscription",
"commits_url": "https://api.github.com/repos/houbb/jk-it/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/houbb/jk-it/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/houbb/jk-it/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/houbb/jk-it/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/houbb/jk-it/contents/{+path}",
"compare_url": "https://api.github.com/repos/houbb/jk-it/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/houbb/jk-it/merges",
"archive_url": "https://api.github.com/repos/houbb/jk-it/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/houbb/jk-it/downloads",
"issues_url": "https://api.github.com/repos/houbb/jk-it/issues{/number}",
"pulls_url": "https://api.github.com/repos/houbb/jk-it/pulls{/number}",
"milestones_url": "https://api.github.com/repos/houbb/jk-it/milestones{/number}",
"notifications_url": "https://api.github.com/repos/houbb/jk-it/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/houbb/jk-it/labels{/name}",
"releases_url": "https://api.github.com/repos/houbb/jk-it/releases{/id}",
"deployments_url": "https://api.github.com/repos/houbb/jk-it/deployments",
"created_at": "2025-03-31T08:59:35Z",
"updated_at": "2025-03-31T09:30:42Z",
"pushed_at": "2025-03-31T09:32:45Z",
"git_url": "git://github.com/houbb/jk-it.git",
"ssh_url": "[email protected]:houbb/jk-it.git",
"clone_url": "https://github.com/houbb/jk-it.git",
"svn_url": "https://github.com/houbb/jk-it",
"homepage": null,
"size": 68193,
"stargazers_count": 0,
"watchers_count": 0,
"language": "TypeScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main"
},
{
"id": 232232349,
"node_id": "MDEwOlJlcG9zaXRvcnkyMzIyMzIzNDk=",
"name": "sensitive-word",
"full_name": "houbb/sensitive-word",
"private": false,
"owner": {
"login": "houbb",
"id": 18375710,
"node_id": "MDQ6VXNlcjE4Mzc1NzEw",
"avatar_url": "https://avatars.githubusercontent.com/u/18375710?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/houbb",
"html_url": "https://github.com/houbb",
"followers_url": "https://api.github.com/users/houbb/followers",
"following_url": "https://api.github.com/users/houbb/following{/other_user}",
"gists_url": "https://api.github.com/users/houbb/gists{/gist_id}",
"starred_url": "https://api.github.com/users/houbb/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/houbb/subscriptions",
"organizations_url": "https://api.github.com/users/houbb/orgs",
"repos_url": "https://api.github.com/users/houbb/repos",
"events_url": "https://api.github.com/users/houbb/events{/privacy}",
"received_events_url": "https://api.github.com/users/houbb/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/houbb/sensitive-word",
"description": " 👮♂️The sensitive word tool for java.(敏感词/违禁词/违法词/脏词。基于 DFA 算法实现的高性能 java 敏感词过滤工具框架。内置支持单词标签分类分级。请勿发布涉及政治、广告、营销、翻墙、违反国家法律法规等内容。高性能敏感词检测过滤组件,附带繁体简体互换,支持全角半角互换,汉字转拼音,模糊搜索等功能。)",
"fork": false,
"url": "https://api.github.com/repos/houbb/sensitive-word",
"forks_url": "https://api.github.com/repos/houbb/sensitive-word/forks",
"keys_url": "https://api.github.com/repos/houbb/sensitive-word/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/houbb/sensitive-word/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/houbb/sensitive-word/teams",
"hooks_url": "https://api.github.com/repos/houbb/sensitive-word/hooks",
"issue_events_url": "https://api.github.com/repos/houbb/sensitive-word/issues/events{/number}",
"events_url": "https://api.github.com/repos/houbb/sensitive-word/events",
"assignees_url": "https://api.github.com/repos/houbb/sensitive-word/assignees{/user}",
"branches_url": "https://api.github.com/repos/houbb/sensitive-word/branches{/branch}",
"tags_url": "https://api.github.com/repos/houbb/sensitive-word/tags",
"blobs_url": "https://api.github.com/repos/houbb/sensitive-word/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/houbb/sensitive-word/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/houbb/sensitive-word/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/houbb/sensitive-word/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/houbb/sensitive-word/statuses/{sha}",
"languages_url": "https://api.github.com/repos/houbb/sensitive-word/languages",
"stargazers_url": "https://api.github.com/repos/houbb/sensitive-word/stargazers",
"contributors_url": "https://api.github.com/repos/houbb/sensitive-word/contributors",
"subscribers_url": "https://api.github.com/repos/houbb/sensitive-word/subscribers",
"subscription_url": "https://api.github.com/repos/houbb/sensitive-word/subscription",
"commits_url": "https://api.github.com/repos/houbb/sensitive-word/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/houbb/sensitive-word/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/houbb/sensitive-word/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/houbb/sensitive-word/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/houbb/sensitive-word/contents/{+path}",
"compare_url": "https://api.github.com/repos/houbb/sensitive-word/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/houbb/sensitive-word/merges",
"archive_url": "https://api.github.com/repos/houbb/sensitive-word/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/houbb/sensitive-word/downloads",
"issues_url": "https://api.github.com/repos/houbb/sensitive-word/issues{/number}",
"pulls_url": "https://api.github.com/repos/houbb/sensitive-word/pulls{/number}",
"milestones_url": "https://api.github.com/repos/houbb/sensitive-word/milestones{/number}",
"notifications_url": "https://api.github.com/repos/houbb/sensitive-word/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/houbb/sensitive-word/labels{/name}",
"releases_url": "https://api.github.com/repos/houbb/sensitive-word/releases{/id}",
"deployments_url": "https://api.github.com/repos/houbb/sensitive-word/deployments",
"created_at": "2020-01-07T03:10:44Z",
"updated_at": "2025-03-31T03:18:14Z",
"pushed_at": "2025-02-17T04:56:29Z",
"git_url": "git://github.com/houbb/sensitive-word.git",
"ssh_url": "[email protected]:houbb/sensitive-word.git",
"clone_url": "https://github.com/houbb/sensitive-word.git",
"svn_url": "https://github.com/houbb/sensitive-word",
"homepage": "https://houbb.github.io/opensource/sensitive-word",
"size": 5625,
"stargazers_count": 4900,
"watchers_count": 4900,
"language": "Java",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 667,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 5,
"license": {
"key": "apache-2.0",
"name": "Apache License 2.0",
"spdx_id": "Apache-2.0",
"url": "https://api.github.com/licenses/apache-2.0",
"node_id": "MDc6TGljZW5zZTI="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"dfa",
"dirty-word",
"filter",
"java",
"nlp",
"pinyin",
"search",
"sensitive",
"sensitive-word",
"sensitive-word-filter",
"string-matching",
"textfliter",
"trie-tree"
],
"visibility": "public",
"forks": 667,
"open_issues": 5,
"watchers": 4900,
"default_branch": "master"
},
{
"id": 120892548,
"node_id": "MDEwOlJlcG9zaXRvcnkxMjA4OTI1NDg=",
"name": "opencc4j",
"full_name": "houbb/opencc4j",
"private": false,
"owner": {
"login": "houbb",
"id": 18375710,
"node_id": "MDQ6VXNlcjE4Mzc1NzEw",
"avatar_url": "https://avatars.githubusercontent.com/u/18375710?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/houbb",
"html_url": "https://github.com/houbb",
"followers_url": "https://api.github.com/users/houbb/followers",
"following_url": "https://api.github.com/users/houbb/following{/other_user}",
"gists_url": "https://api.github.com/users/houbb/gists{/gist_id}",
"starred_url": "https://api.github.com/users/houbb/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/houbb/subscriptions",
"organizations_url": "https://api.github.com/users/houbb/orgs",
"repos_url": "https://api.github.com/users/houbb/repos",
"events_url": "https://api.github.com/users/houbb/events{/privacy}",
"received_events_url": "https://api.github.com/users/houbb/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/houbb/opencc4j",
"description": "🇨🇳Open Chinese Convert is an opensource project for conversion between Traditional Chinese and Simplified Chinese.(java 中文繁简体转换)",
"fork": false,
"url": "https://api.github.com/repos/houbb/opencc4j",
"forks_url": "https://api.github.com/repos/houbb/opencc4j/forks",
"keys_url": "https://api.github.com/repos/houbb/opencc4j/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/houbb/opencc4j/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/houbb/opencc4j/teams",
"hooks_url": "https://api.github.com/repos/houbb/opencc4j/hooks",
"issue_events_url": "https://api.github.com/repos/houbb/opencc4j/issues/events{/number}",
"events_url": "https://api.github.com/repos/houbb/opencc4j/events",
"assignees_url": "https://api.github.com/repos/houbb/opencc4j/assignees{/user}",
"branches_url": "https://api.github.com/repos/houbb/opencc4j/branches{/branch}",
"tags_url": "https://api.github.com/repos/houbb/opencc4j/tags",
"blobs_url": "https://api.github.com/repos/houbb/opencc4j/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/houbb/opencc4j/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/houbb/opencc4j/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/houbb/opencc4j/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/houbb/opencc4j/statuses/{sha}",
"languages_url": "https://api.github.com/repos/houbb/opencc4j/languages",
"stargazers_url": "https://api.github.com/repos/houbb/opencc4j/stargazers",
"contributors_url": "https://api.github.com/repos/houbb/opencc4j/contributors",
"subscribers_url": "https://api.github.com/repos/houbb/opencc4j/subscribers",
"subscription_url": "https://api.github.com/repos/houbb/opencc4j/subscription",
"commits_url": "https://api.github.com/repos/houbb/opencc4j/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/houbb/opencc4j/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/houbb/opencc4j/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/houbb/opencc4j/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/houbb/opencc4j/contents/{+path}",
"compare_url": "https://api.github.com/repos/houbb/opencc4j/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/houbb/opencc4j/merges",
"archive_url": "https://api.github.com/repos/houbb/opencc4j/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/houbb/opencc4j/downloads",
"issues_url": "https://api.github.com/repos/houbb/opencc4j/issues{/number}",
"pulls_url": "https://api.github.com/repos/houbb/opencc4j/pulls{/number}",
"milestones_url": "https://api.github.com/repos/houbb/opencc4j/milestones{/number}",
"notifications_url": "https://api.github.com/repos/houbb/opencc4j/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/houbb/opencc4j/labels{/name}",
"releases_url": "https://api.github.com/repos/houbb/opencc4j/releases{/id}",
"deployments_url": "https://api.github.com/repos/houbb/opencc4j/deployments",
"created_at": "2018-02-09T10:32:12Z",
"updated_at": "2025-03-30T14:16:37Z",
"pushed_at": "2023-06-07T04:37:37Z",
"git_url": "git://github.com/houbb/opencc4j.git",
"ssh_url": "[email protected]:houbb/opencc4j.git",
"clone_url": "https://github.com/houbb/opencc4j.git",
"svn_url": "https://github.com/houbb/opencc4j",
"homepage": "https://houbb.github.io/opensource/opencc4j",
"size": 847,
"stargazers_count": 496,
"watchers_count": 496,
"language": "Java",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 74,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 15,
"license": {
"key": "apache-2.0",
"name": "Apache License 2.0",
"spdx_id": "Apache-2.0",
"url": "https://api.github.com/licenses/apache-2.0",
"node_id": "MDc6TGljZW5zZTI="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
"chinese",
"dfa",
"java",
"java7",
"nlp",
"opencc",
"simple-tranditional",
"trie",
"trie-tree"
],
"visibility": "public",
"forks": 74,
"open_issues": 15,
"watchers": 496,
"default_branch": "master"
},
{
"id": 957384175,
"node_id": "R_kgDOORCF7w",
"name": "vpress",
"full_name": "houbb/vpress",
"private": false,
"owner": {
"login": "houbb",
"id": 18375710,
"node_id": "MDQ6VXNlcjE4Mzc1NzEw",
"avatar_url": "https://avatars.githubusercontent.com/u/18375710?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/houbb",
"html_url": "https://github.com/houbb",
"followers_url": "https://api.github.com/users/houbb/followers",
"following_url": "https://api.github.com/users/houbb/following{/other_user}",
"gists_url": "https://api.github.com/users/houbb/gists{/gist_id}",
"starred_url": "https://api.github.com/users/houbb/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/houbb/subscriptions",
"organizations_url": "https://api.github.com/users/houbb/orgs",
"repos_url": "https://api.github.com/users/houbb/repos",
"events_url": "https://api.github.com/users/houbb/events{/privacy}",
"received_events_url": "https://api.github.com/users/houbb/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/houbb/vpress",
"description": "vue press blogs. 基于 vue blog 的技术博客",
"fork": false,
"url": "https://api.github.com/repos/houbb/vpress",
"forks_url": "https://api.github.com/repos/houbb/vpress/forks",
"keys_url": "https://api.github.com/repos/houbb/vpress/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/houbb/vpress/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/houbb/vpress/teams",
"hooks_url": "https://api.github.com/repos/houbb/vpress/hooks",
"issue_events_url": "https://api.github.com/repos/houbb/vpress/issues/events{/number}",
"events_url": "https://api.github.com/repos/houbb/vpress/events",
"assignees_url": "https://api.github.com/repos/houbb/vpress/assignees{/user}",
"branches_url": "https://api.github.com/repos/houbb/vpress/branches{/branch}",
"tags_url": "https://api.github.com/repos/houbb/vpress/tags",
"blobs_url": "https://api.github.com/repos/houbb/vpress/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/houbb/vpress/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/houbb/vpress/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/houbb/vpress/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/houbb/vpress/statuses/{sha}",
"languages_url": "https://api.github.com/repos/houbb/vpress/languages",
"stargazers_url": "https://api.github.com/repos/houbb/vpress/stargazers",
"contributors_url": "https://api.github.com/repos/houbb/vpress/contributors",
"subscribers_url": "https://api.github.com/repos/houbb/vpress/subscribers",
"subscription_url": "https://api.github.com/repos/houbb/vpress/subscription",
"commits_url": "https://api.github.com/repos/houbb/vpress/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/houbb/vpress/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/houbb/vpress/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/houbb/vpress/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/houbb/vpress/contents/{+path}",
"compare_url": "https://api.github.com/repos/houbb/vpress/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/houbb/vpress/merges",
"archive_url": "https://api.github.com/repos/houbb/vpress/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/houbb/vpress/downloads",
"issues_url": "https://api.github.com/repos/houbb/vpress/issues{/number}",
"pulls_url": "https://api.github.com/repos/houbb/vpress/pulls{/number}",
"milestones_url": "https://api.github.com/repos/houbb/vpress/milestones{/number}",
"notifications_url": "https://api.github.com/repos/houbb/vpress/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/houbb/vpress/labels{/name}",
"releases_url": "https://api.github.com/repos/houbb/vpress/releases{/id}",
"deployments_url": "https://api.github.com/repos/houbb/vpress/deployments",
"created_at": "2025-03-30T08:23:56Z",
"updated_at": "2025-03-30T12:17:59Z",
"pushed_at": "2025-03-30T12:18:47Z",
"git_url": "git://github.com/houbb/vpress.git",
"ssh_url": "[email protected]:houbb/vpress.git",
"clone_url": "https://github.com/houbb/vpress.git",
"svn_url": "https://github.com/houbb/vpress",
"homepage": null,
"size": 75360,
"stargazers_count": 0,
"watchers_count": 0,
"language": "TypeScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": true,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [
],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main"
},
{
"id": 259248854,
"node_id": "MDEwOlJlcG9zaXRvcnkyNTkyNDg4NTQ=",
"name": "cache",
"full_name": "houbb/cache",
"private": false,
"owner": {
"login": "houbb",
"id": 18375710,
"node_id": "MDQ6VXNlcjE4Mzc1NzEw",
"avatar_url": "https://avatars.githubusercontent.com/u/18375710?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/houbb",
"html_url": "https://github.com/houbb",
"followers_url": "https://api.github.com/users/houbb/followers",
"following_url": "https://api.github.com/users/houbb/following{/other_user}",
"gists_url": "https://api.github.com/users/houbb/gists{/gist_id}",
"starred_url": "https://api.github.com/users/houbb/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/houbb/subscriptions",
"organizations_url": "https://api.github.com/users/houbb/orgs",
"repos_url": "https://api.github.com/users/houbb/repos",
"events_url": "https://api.github.com/users/houbb/events{/privacy}",
"received_events_url": "https://api.github.com/users/houbb/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"html_url": "https://github.com/houbb/cache",
"description": "The basic cache tool for java.(java 手写实现渐进式 redis 缓存工具)",
"fork": false,