-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasemax_repos.html
More file actions
6549 lines (5732 loc) · 429 KB
/
basemax_repos.html
File metadata and controls
6549 lines (5732 loc) · 429 KB
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
<html>
<head>
<meta charset="UTF-8" />
<title>GitHub Repositories of basemax</title>
<style>
body { font-family: Arial, sans-serif; margin: 20px; }
table { border-collapse: collapse; width: 100%; }
th, td { border: 1px solid #ccc; padding: 8px; text-align: left; }
th { background-color: #f4f4f4; }
</style>
</head>
<body>
<h1>Public Repositories of GitHub User: basemax</h1>
<table>
<thead>
<tr>
<th>Name</th>
<th>URL</th>
<th>Description</th>
<th>Top Language</th>
<th>Tags</th>
</tr>
</thead>
<tbody>
<tr>
<td>0-1KnapsackDynamicProgrammingC</td>
<td><a href="https://github.com/BaseMax/0-1KnapsackDynamicProgrammingC" target="_blank">https://github.com/BaseMax/0-1KnapsackDynamicProgrammingC</a></td>
<td>This is an implementation of the 0-1 knapsack problem in C using dynamic programming. The problem consists of a set of items, each with a weight and a value, and a knapsack with a maximum weight capacity. The goal is to determine the subset of items that maximizes the total value of the knapsack without exceeding its weight capacity.</td>
<td>C</td>
<td>c, knapsack, knapsack-problem, knapsack-problem-dynamic, knapsack-solution, knapsack-solver, knapsack01, knapsack0-1</td>
</tr>
<tr>
<td>0-1KnapsackGreedyC</td>
<td><a href="https://github.com/BaseMax/0-1KnapsackGreedyC" target="_blank">https://github.com/BaseMax/0-1KnapsackGreedyC</a></td>
<td>This is an implementation of the 0-1 knapsack problem in C using a greedy algorithm. The problem consists of a set of items, each with a weight and a value, and a knapsack with a maximum weight capacity. The goal is to determine the subset of items that maximizes the total value of the knapsack without exceeding its weight capacity.</td>
<td>C</td>
<td>c, greedy, greedy-algorithm, greedy-algorithms, greedy-programming, knapsack, knapsack-01, knapsack-problem, knapsack-problem-greedy, knapsack-solver, knapsack0-1, knapsack01, knapsack-greedy</td>
</tr>
<tr>
<td>0-1KnapsackRecursiveC</td>
<td><a href="https://github.com/BaseMax/0-1KnapsackRecursiveC" target="_blank">https://github.com/BaseMax/0-1KnapsackRecursiveC</a></td>
<td>This is an implementation of the 0-1 knapsack problem in C using a recursive approach. The problem consists of a set of items, each with a weight and a value, and a knapsack with a maximum weight capacity. The goal is to determine the subset of items that maximizes the total value of the knapsack without exceeding its weight capacity.</td>
<td>C</td>
<td>c, knapsack, knapsack-problem, knapsack-solution, knapsack-solver, knapsack0-1, knapsack01, knapsack-01, knapsack-problem-recursive, knapsack-recursive</td>
</tr>
<tr>
<td>01Knapsack</td>
<td><a href="https://github.com/BaseMax/01Knapsack" target="_blank">https://github.com/BaseMax/01Knapsack</a></td>
<td>The project focuses on solving the 0/1 Knapsack problem using various algorithms. The 0/1 Knapsack problem is a well-known optimization problem in computer science that deals with finding the best combination of items to pack into a knapsack, where each item has a weight and a value, and the knapsack has a limited capacity.</td>
<td>Python</td>
<td></td>
</tr>
<tr>
<td>7Segments</td>
<td><a href="https://github.com/BaseMax/7Segments" target="_blank">https://github.com/BaseMax/7Segments</a></td>
<td>This C project demonstrates a simple digit encoding and decoding mechanism using a digit struct composed of boolean values to represent segments of a digital display.</td>
<td>C</td>
<td>7segment, 7segments, c, decode, encode, encoding, digit-encoding</td>
</tr>
<tr>
<td>AirplaneTicketFirefox</td>
<td><a href="https://github.com/BaseMax/AirplaneTicketFirefox" target="_blank">https://github.com/BaseMax/AirplaneTicketFirefox</a></td>
<td>The firefox addon for analyzing the purchase of Airplane tickets.</td>
<td>JavaScript</td>
<td>firefox, firefox-addon, firefox-extension, firefox-webextension, firefox-extensions, firefox-browser, airplane, airplanes-tracker, airplanes, airplane-tickets, airplane-ticket</td>
</tr>
<tr>
<td>AlgoStock</td>
<td><a href="https://github.com/BaseMax/AlgoStock" target="_blank">https://github.com/BaseMax/AlgoStock</a></td>
<td>AlgoStock is a PHP-based CLI script to get prices and information from the Iran Stock Exchange and store these in the database, after that we calculate some indicators and will order buy and sell every time it thinks is a good time.</td>
<td>PHP</td>
<td>stock, php, stock-market, stocks, stock-data, stock-trading, stock-prices</td>
</tr>
<tr>
<td>AmirkabirIndustrialTown</td>
<td><a href="https://github.com/BaseMax/AmirkabirIndustrialTown" target="_blank">https://github.com/BaseMax/AmirkabirIndustrialTown</a></td>
<td>بانک اطلاعات شهرک صنعتی امیرکبیر کاشان ایران - This repository contains a SQL/JSON dataset of businesses located in the Amirkabir Industrial Town in Kashan, Iran. The dataset includes details about various companies, their activities, contact information, and locations.</td>
<td>HTML</td>
<td>database, database-schema, industrial-town, json, py, python, table, amirkabir-industrial, amirkabir-industrial-town, database-as-a-service, database-sql, sql, sql-database</td>
</tr>
<tr>
<td>AnalyzeCombine</td>
<td><a href="https://github.com/BaseMax/AnalyzeCombine" target="_blank">https://github.com/BaseMax/AnalyzeCombine</a></td>
<td>Analyze the combine with and without the repetition. (SOON)</td>
<td>PHP</td>
<td>combine, probability, probability-calculator, probability-statistics, probability-distribution, probability-theory, combinatorics, combinations, combination, combinational-logic, combinational, combinational-optimization, combinations-with-repetition, combinational-circuit, combination-lock</td>
</tr>
<tr>
<td>AndroidAutoBuildAPK</td>
<td><a href="https://github.com/BaseMax/AndroidAutoBuildAPK" target="_blank">https://github.com/BaseMax/AndroidAutoBuildAPK</a></td>
<td>This is an example of how to build an APK using GitHub Actions. Here, we created a simple Android application that displays a Hello World!. We then created a workflow that builds the APK and uploads it as a new release.</td>
<td>Kotlin</td>
<td>android, apk, apk-builder, app, build-apk, github-action, github-actions, github-actions-ci, java, kotlin</td>
</tr>
<tr>
<td>AndroidAutoUpdate</td>
<td><a href="https://github.com/BaseMax/AndroidAutoUpdate" target="_blank">https://github.com/BaseMax/AndroidAutoUpdate</a></td>
<td>A tiny class to check automatically the Android application, if there are a newer version.</td>
<td>Java</td>
<td>android, java, android-java, java-android, android-autoupdate, android-auto-update, autoupdate-android, android-update, android-update-auto</td>
</tr>
<tr>
<td>AndroidDeviceInformation</td>
<td><a href="https://github.com/BaseMax/AndroidDeviceInformation" target="_blank">https://github.com/BaseMax/AndroidDeviceInformation</a></td>
<td>Get device information of android using a tiny and small Java file.</td>
<td>Java</td>
<td>andrid, java, android-java, java-android, android-device, android-device-info, android-devices, android-device-id, android-information, android-information-device, android-info, java-android-device, java-android-device-information</td>
</tr>
<tr>
<td>AndroidGoogleMaps</td>
<td><a href="https://github.com/BaseMax/AndroidGoogleMaps" target="_blank">https://github.com/BaseMax/AndroidGoogleMaps</a></td>
<td>A sample android application with google maps for SDK 9.</td>
<td>Java</td>
<td>android, java, googlemap, googlemap-android, google-maps, google-maps-android, android-google-maps, android-googlemaps, sdk9, googlemap-sdk9, googlemaps-sdk9, google-maps-sdk9</td>
</tr>
<tr>
<td>AndroidMySMS</td>
<td><a href="https://github.com/BaseMax/AndroidMySMS" target="_blank">https://github.com/BaseMax/AndroidMySMS</a></td>
<td>An android application to send sms for a cloud-based web service.</td>
<td>Java</td>
<td>android, java, android-java, java-android, android-sms, android-app, android-sms-app, sms-cloud, cloud-sms, cloud-sms-android, cloud-sms-app, app-cloud-sms, app-network-sms, android-php</td>
</tr>
<tr>
<td>AndroidSnappMap</td>
<td><a href="https://github.com/BaseMax/AndroidSnappMap" target="_blank">https://github.com/BaseMax/AndroidSnappMap</a></td>
<td>An example of an Android map app, Snapp app map rebuild.</td>
<td>Java</td>
<td>java, android, snapp, snapp-map, map-snapp, mapbox, map-mapbox, mapbox-style, mapbox-iran, map-iran, android-map-iran, iran-map, iran-map-android, snapp-map-android, snapp-android-map, android-java, java-android</td>
</tr>
<tr>
<td>AndroidWebView</td>
<td><a href="https://github.com/BaseMax/AndroidWebView" target="_blank">https://github.com/BaseMax/AndroidWebView</a></td>
<td>A tiny android application to display a special webpage in default.</td>
<td>Java</td>
<td>android, webview, webview-app, webviewdemo, webviewer, webviewclient, geolocation-android, geolocation-webview, webview-google-map, webview-map, webview-geolocation, webview-android, webview-android-geolocation, webview-android-map, webview-android-google-map, google-maps-android, google-map</td>
</tr>
<tr>
<td>another-one-draft-in-c</td>
<td><a href="https://github.com/BaseMax/another-one-draft-in-c" target="_blank">https://github.com/BaseMax/another-one-draft-in-c</a></td>
<td>Just a attempt to implement a lexer in pure C without a lexer generator.</td>
<td>C</td>
<td>c, lexer, parser</td>
</tr>
<tr>
<td>AparatExpressGraphQLTS</td>
<td><a href="https://github.com/BaseMax/AparatExpressGraphQLTS" target="_blank">https://github.com/BaseMax/AparatExpressGraphQLTS</a></td>
<td>AparatExpressGraphQLTS is a TypeScript-based GraphQL web service designed to mimic the functionality of the popular video sharing platform Aparat (similar to YouTube). This project utilizes the Express framework to create a custom GraphQL API, providing users with features for uploading, viewing, and interacting with videos and other media content.</td>
<td>TypeScript</td>
<td>aparat, graphql, javascript, js, ts, typescript</td>
</tr>
<tr>
<td>API-Sarrafchi</td>
<td><a href="https://github.com/BaseMax/API-Sarrafchi" target="_blank">https://github.com/BaseMax/API-Sarrafchi</a></td>
<td>Sarrafchi: API and web service to get live currency rates in Free Market.</td>
<td>PHP</td>
<td>api, sarrafchi, currency-exchange-rates, currency-rates, currency-api, currency-conversion</td>
</tr>
<tr>
<td>api-webservice-COVID-19</td>
<td><a href="https://github.com/BaseMax/api-webservice-COVID-19" target="_blank">https://github.com/BaseMax/api-webservice-COVID-19</a></td>
<td>API: Web Service Coronavirus Disease 2019 (COVID-19), Access to live data of outbreak of novel coronavirus disease 2019 using PHP.</td>
<td>HTML</td>
<td>covid-19, covid19, covid-virus, covid, covid-2019, coronavirus, coronavirus-api, coronavirus-real-time, coronavirus-info, php, php-api, api, freeapi, api-free, free-api, api-covid-19, api-covid, covid-api, covid-data, coronavirus-tracking</td>
</tr>
<tr>
<td>ArchiveAPIGo</td>
<td><a href="https://github.com/BaseMax/ArchiveAPIGo" target="_blank">https://github.com/BaseMax/ArchiveAPIGo</a></td>
<td>Archive API is a RESTful API built with the Go programming language and the Echo framework. It provides functionality to manage a file archive, including saving files, searching within files, adding captions and descriptions, assigning categories, editing files, deleting files, sorting and filtering files, user authentication, generating link.</td>
<td>Go</td>
<td>api-restful, go, go-restful, restful, restful-api, archive-go, go-archive, restful-go</td>
</tr>
<tr>
<td>ArrayListC</td>
<td><a href="https://github.com/BaseMax/ArrayListC" target="_blank">https://github.com/BaseMax/ArrayListC</a></td>
<td>This is a simple implementation of an ArrayList in C using a struct, a pointer to the struct and a pointer to the array. The array is static and the size of the array is defined when the ArrayList is created.</td>
<td>C</td>
<td>array, arraylist, arraylist-c, c, c-array, array-c</td>
</tr>
<tr>
<td>ArrayListPython</td>
<td><a href="https://github.com/BaseMax/ArrayListPython" target="_blank">https://github.com/BaseMax/ArrayListPython</a></td>
<td>This is a simple implementation of ArrayList in Python, full-featured and easy to use with more than 20 methods.</td>
<td>Python</td>
<td>array, array-list, arraylist, data-structures, data-structures-and-algorithms, datastructure, datastructures-algorithms, py, py3, python, python3</td>
</tr>
<tr>
<td>ArtASCIIGeneratorImage</td>
<td><a href="https://github.com/BaseMax/ArtASCIIGeneratorImage" target="_blank">https://github.com/BaseMax/ArtASCIIGeneratorImage</a></td>
<td>A command-line tool for generating ART ASCII from images.</td>
<td>Python</td>
<td>python, art-ascii, ascii, ascii-art, ascii-art-converter, ascii-art-generator, ascii-art-logo, pil, art, ascii-graphics</td>
</tr>
<tr>
<td>ArtASCIIGeneratorImagePython</td>
<td><a href="https://github.com/BaseMax/ArtASCIIGeneratorImagePython" target="_blank">https://github.com/BaseMax/ArtASCIIGeneratorImagePython</a></td>
<td>A tiny tool for generating ART ASCII from images powered by Python pywhatkit.</td>
<td>Python</td>
<td>art, art-ascii, ascii, ascii-art, ascii-art-converter, ascii-art-generator, ascii-art-logo, ascii-arts, py, python, python3</td>
</tr>
<tr>
<td>ArtGraphVisualization</td>
<td><a href="https://github.com/BaseMax/ArtGraphVisualization" target="_blank">https://github.com/BaseMax/ArtGraphVisualization</a></td>
<td>This is a simple collection of scripts to visualize the art graph with NetworkX and Matplotlib.</td>
<td>Python</td>
<td>graph, graph-drawing, graph-drawing-framework, graphs, math, mathematics, mathematics-education, mathematics-notes, matplotlib, matplotlib-figures, matplotlib-pyplot, networkx, networkx-drawing-utilities, networkx-graph, networkx-library, networkx-tutorial, py, python</td>
</tr>
<tr>
<td>Assembly8086-8088</td>
<td><a href="https://github.com/BaseMax/Assembly8086-8088" target="_blank">https://github.com/BaseMax/Assembly8086-8088</a></td>
<td>Assembly Project compatible with 8086/8088 microprocessor.</td>
<td>Assembly</td>
<td>assembly, assembly-8086, assembly-8088, assembly-language, assemblyscript</td>
</tr>
<tr>
<td>AssemblyX86</td>
<td><a href="https://github.com/BaseMax/AssemblyX86" target="_blank">https://github.com/BaseMax/AssemblyX86</a></td>
<td>Tiny programs using Assembly based on X86.</td>
<td>Assembly</td>
<td>assembly, assembly-language, assembly-language-programming, assembly-x86</td>
</tr>
<tr>
<td>AudioVisualizerJS</td>
<td><a href="https://github.com/BaseMax/AudioVisualizerJS" target="_blank">https://github.com/BaseMax/AudioVisualizerJS</a></td>
<td>A graphical web-based audio visualizer which reads music data using Pure JavaScript, and draws a graphical view in Canvas.</td>
<td>JavaScript</td>
<td>equalizer, equalizer-and-visualisation, equalizer-visualization, javascript, js, visualizer, visualizers, canvas, canvas-2d-context, canvas-api, canvas-game, canvas2d, canvasjs</td>
</tr>
<tr>
<td>AutoCreateGitHubIssuesManage</td>
<td><a href="https://github.com/BaseMax/AutoCreateGitHubIssuesManage" target="_blank">https://github.com/BaseMax/AutoCreateGitHubIssuesManage</a></td>
<td>Automatically create GitHub issues from a file using Python. (Project Management)</td>
<td>Python</td>
<td>github, github-issue, github-issues, project-management, project-manager, py, python, python3</td>
</tr>
<tr>
<td>AutoInviteToOrgByIssueComment</td>
<td><a href="https://github.com/BaseMax/AutoInviteToOrgByIssueComment" target="_blank">https://github.com/BaseMax/AutoInviteToOrgByIssueComment</a></td>
<td>Auto Join: A GitHub action script to automatically invite everyone to the organization who comment at the issue page. </td>
<td>Python</td>
<td>github, github-actions, github-action, python, python3, auto-join, auto-joiner, auto-join-orginization, auto-join-org, auto-join-github</td>
</tr>
<tr>
<td>AutoInviteToOrgByStar</td>
<td><a href="https://github.com/BaseMax/AutoInviteToOrgByStar" target="_blank">https://github.com/BaseMax/AutoInviteToOrgByStar</a></td>
<td>Auto Join: A GitHub action script to automatically invite everyone to the organization who star your repository.</td>
<td>Python</td>
<td>github, github-actions, github-action, python, python3, auto-join-github, auto-join, auto-joiner, auto-join-org, auto-join-orginization</td>
</tr>
<tr>
<td>AutoNewsSubmitter</td>
<td><a href="https://github.com/BaseMax/AutoNewsSubmitter" target="_blank">https://github.com/BaseMax/AutoNewsSubmitter</a></td>
<td>Analyze SQL query and extract data of attachment files to insert new wordpress post.</td>
<td>PHP</td>
<td>sql, sql-query, sql-queries, wordpress, wordpress-development, wordpress-site, php, regex, regex-match, parser, parsing, parse</td>
</tr>
<tr>
<td>AwesomeCompiler</td>
<td><a href="https://github.com/BaseMax/AwesomeCompiler" target="_blank">https://github.com/BaseMax/AwesomeCompiler</a></td>
<td>The Big list of the github, open-source compilers.</td>
<td></td>
<td>github, compiler, compilers, compiler-design, compiler-designs, compiler-tool, compiler-plugin, github-list, github-bot, github-repository, github-repository-search, github-repository-automation</td>
</tr>
<tr>
<td>AwesomeCryptocurrency</td>
<td><a href="https://github.com/BaseMax/AwesomeCryptocurrency" target="_blank">https://github.com/BaseMax/AwesomeCryptocurrency</a></td>
<td>Awesome/Repo List of the cryptocurrencies in the github.</td>
<td></td>
<td>cryptocurrency, cryptocurrency-portfolio, cryptocurrency-exchanges, github-api, github, crypto, cryptocurrencies, cryptocoins</td>
</tr>
<tr>
<td>AwesomeInterpreter</td>
<td><a href="https://github.com/BaseMax/AwesomeInterpreter" target="_blank">https://github.com/BaseMax/AwesomeInterpreter</a></td>
<td>The Big list of the github, open-source interpreters.</td>
<td></td>
<td>github, interpreter, interpreters, interpreter-pattern, interpreter-clone, github-list, github-repository, github-repository-search, github-repository-automation</td>
</tr>
<tr>
<td>AwesomeMoneroBase</td>
<td><a href="https://github.com/BaseMax/AwesomeMoneroBase" target="_blank">https://github.com/BaseMax/AwesomeMoneroBase</a></td>
<td>Awesome/Fork List of monero base projects in the github.</td>
<td></td>
<td>monero, monero-base, monero-fork, awesome, awesome-list</td>
</tr>
<tr>
<td>BaconIpsumDesktop</td>
<td><a href="https://github.com/BaseMax/BaconIpsumDesktop" target="_blank">https://github.com/BaseMax/BaconIpsumDesktop</a></td>
<td>Bacon Ipsum Desktop is a simple desktop app that generates bacon ipsum text. It's built with C++ powered by Qt and QML. It's a simple app that we built to show how to build a desktop app with Qt. It's a great way to learn how to build a desktop app with Qt.</td>
<td>QML</td>
<td>bacon-ipsum-json-api, cpp, desktop-app, desktop-application, gui, ipsum-generator, qml, qt, bacon-ipsum</td>
</tr>
<tr>
<td>BankCustomerCpp</td>
<td><a href="https://github.com/BaseMax/BankCustomerCpp" target="_blank">https://github.com/BaseMax/BankCustomerCpp</a></td>
<td>Prepare a easy test and practice for university students C++</td>
<td>C++</td>
<td>cpp, bank-account, university-project, university-projects</td>
</tr>
<tr>
<td>BankGraphQLAPI</td>
<td><a href="https://github.com/BaseMax/BankGraphQLAPI" target="_blank">https://github.com/BaseMax/BankGraphQLAPI</a></td>
<td>This project is a GraphQL-based API designed for a bank system, implemented using TypeScript, NestJS, and MariaDB. The main purpose of this project is to handle transactions and calculate the balance of client accounts. </td>
<td>TypeScript</td>
<td>graphql, javascript, js, nest, nestjs, ts, typescript</td>
</tr>
<tr>
<td>BankSystemCLI</td>
<td><a href="https://github.com/BaseMax/BankSystemCLI" target="_blank">https://github.com/BaseMax/BankSystemCLI</a></td>
<td>A tiny and CLI program for Bank system with 2 different user access using C.</td>
<td>C++</td>
<td>cpp, banking-applications</td>
</tr>
<tr>
<td>BaseConverterC</td>
<td><a href="https://github.com/BaseMax/BaseConverterC" target="_blank">https://github.com/BaseMax/BaseConverterC</a></td>
<td>A Fast C-Program for converting numbers from one base to another base.</td>
<td>C</td>
<td>base-converter, base-number, c, number-base, number-base-conversion, number-base-converter, base-number-conversion, base-number-convert, base-number-converter, custom-base, custom-number-base</td>
</tr>
<tr>
<td>BaseMax</td>
<td><a href="https://github.com/BaseMax/BaseMax" target="_blank">https://github.com/BaseMax/BaseMax</a></td>
<td>Max Base: A repository in GitHub for testing to display a box at main page of Profile.</td>
<td></td>
<td>github, github-profile, github-profile-readme, github-profile-card, github-profile-info, github-profiles</td>
</tr>
<tr>
<td>BaseMax.Github.io</td>
<td><a href="https://github.com/BaseMax/BaseMax.Github.io" target="_blank">https://github.com/BaseMax/BaseMax.Github.io</a></td>
<td>Max Base Personal Website.</td>
<td>HTML</td>
<td>github-page, github-pages, github-pages-website, portfolio, portfolio-website, personal-website, personal-blog, personal-blog-website, maxbase, max, basemax, jekll, jekyll-themes, cayman, cayman-theme, cayman-blog-theme, cayman-blog</td>
</tr>
<tr>
<td>batch-pdf-splitter</td>
<td><a href="https://github.com/BaseMax/batch-pdf-splitter" target="_blank">https://github.com/BaseMax/batch-pdf-splitter</a></td>
<td>batch-pdf-splitter is a Python tool that efficiently splits large PDF files into smaller, manageable parts based on specified page ranges. Ideal for processing books, reports, or academic papers, this tool provides precise control over dividing content, making it easy to extract sections or pages for sharing, editing, or analysis.</td>
<td>Python</td>
<td>batch-pdf-export, pdf, pdf-batches, pdf-split, pdf-splitter, pdf-splitter-dev, pdf-splitting, py, python, python-pdf, split-pdf</td>
</tr>
<tr>
<td>battery-monitor</td>
<td><a href="https://github.com/BaseMax/battery-monitor" target="_blank">https://github.com/BaseMax/battery-monitor</a></td>
<td>Battery Monitor is a Python script that displays battery information on your system in a user-friendly format. It shows the battery percentage, charging status, time left, and battery health, with colored output to improve readability. The script works across multiple platforms including Windows, macOS, and Linux.</td>
<td>Python</td>
<td>battery-charger, battery-info, battery-level, battery-life, battery-management-system, battery-monitor, battery-percentage, battery-status, battery-tracker, laptop-battery, py, python, python-battery-tracker, battery-laptop</td>
</tr>
<tr>
<td>BeautifyJSONC</td>
<td><a href="https://github.com/BaseMax/BeautifyJSONC" target="_blank">https://github.com/BaseMax/BeautifyJSONC</a></td>
<td>JSON Beautifier is a simple C program that takes a minified JSON file as input and formats it to produce a more readable JSON file as output. This tool can be handy when you have compressed JSON data and want to make it more human-readable.</td>
<td>C</td>
<td>c, json, json-beautifier, json-beautify</td>
</tr>
<tr>
<td>ben-shopping-portal</td>
<td><a href="https://github.com/BaseMax/ben-shopping-portal" target="_blank">https://github.com/BaseMax/ben-shopping-portal</a></td>
<td>Ben Shopping Portal is a PHP web app for managing product serial numbers. It allows Super Admins to import serial numbers via Excel and track usage, while Sellers can enter and mark serial numbers as used. Built with PHP, PDO, Bootstrap, and MySQL.</td>
<td>PHP</td>
<td>crm, discount, discount-generator, discounting, discounts, php, shopping, shopping-cart, shopping-list</td>
</tr>
<tr>
<td>BigNumberBaseConverterC</td>
<td><a href="https://github.com/BaseMax/BigNumberBaseConverterC" target="_blank">https://github.com/BaseMax/BigNumberBaseConverterC</a></td>
<td>A Super-Fast C-Program for converting very huge/big numbers from one base to another base without Limitation.</td>
<td>C</td>
<td>base-number, base-number-conver, c, number-base, number-base-conversion, number-base-converter, number-converter, number-convertion, big-number, big-number-calculation, big-numbers, huge-number, huge-numbers</td>
</tr>
<tr>
<td>BigNumberC</td>
<td><a href="https://github.com/BaseMax/BigNumberC" target="_blank">https://github.com/BaseMax/BigNumberC</a></td>
<td>The Big Number C library is a C library for arbitrary precision arithmetic. It can be used to perform arithmetic operations on numbers of arbitrary size. It is written in C and is designed to be portable and efficient. You can work with numbers of any size, and the library will automatically allocate memory as needed.</td>
<td>C</td>
<td>big-number, big-number-calculation, big-number-multiplication, big-numbers, bignumber, bignumbers, c, c-library, number-converter</td>
</tr>
<tr>
<td>BinaryTreeDiagram</td>
<td><a href="https://github.com/BaseMax/BinaryTreeDiagram" target="_blank">https://github.com/BaseMax/BinaryTreeDiagram</a></td>
<td>A software to analyze a octal number and generate formula to produce graph. (Phd Project in mathematics field, Article)</td>
<td>Python</td>
<td>python, binary-tree, binary-trees, binary-tree-visualization, binary-tree-diagram, diagram-binary-tree, diagram-tree</td>
</tr>
<tr>
<td>BinaryTreeDiagramDrawing</td>
<td><a href="https://github.com/BaseMax/BinaryTreeDiagramDrawing" target="_blank">https://github.com/BaseMax/BinaryTreeDiagramDrawing</a></td>
<td>A software to analyze a octal number and generate formula to produce graph. (Phd Project in mathematics field, Article)</td>
<td>Python</td>
<td>phd, math, mathematics, python, math-research, math-article</td>
</tr>
<tr>
<td>BinaryTreeGo</td>
<td><a href="https://github.com/BaseMax/BinaryTreeGo" target="_blank">https://github.com/BaseMax/BinaryTreeGo</a></td>
<td>Implementation of a binary tree in Go. A Binary Tree is a tree data structure in which each node has at most two children, which are referred to as the left child and the right child. A node with no children is called a leaf node. A node cannot have more than two children.</td>
<td>Go</td>
<td>algorithm, algorithms, algorithms-and-data-structures, algorithms-datastructures, binary-tree, data-structure, datastructure, ds, go, golang, tree, tree-algorithms, tree-data-structure, tree-search, tree-structure, tree-binary</td>
</tr>
<tr>
<td>BinaryTreePython</td>
<td><a href="https://github.com/BaseMax/BinaryTreePython" target="_blank">https://github.com/BaseMax/BinaryTreePython</a></td>
<td>T.B.T: A software to analyze a octal number and generate formula to produce graph. (Phd Project in mathematics field, Article)</td>
<td>Python</td>
<td>tbt, graph, graph-theory, graph-algorithms, python, python3, binary-tree, binary-classification, binary-analysis, binary-trees</td>
</tr>
<tr>
<td>BitlyGo</td>
<td><a href="https://github.com/BaseMax/BitlyGo" target="_blank">https://github.com/BaseMax/BitlyGo</a></td>
<td>URL Shortener - Short URLs & Custom Free Link Powered by Go language and PostgreSQL database. (API, JSON)</td>
<td>Go</td>
<td>go, golang, postgresql, psql, api, api-rest, api-server, url-shortener, url-shortener-api, url-shortening, url-shortner</td>
</tr>
<tr>
<td>BlogExpressGraphQLTS</td>
<td><a href="https://github.com/BaseMax/BlogExpressGraphQLTS" target="_blank">https://github.com/BaseMax/BlogExpressGraphQLTS</a></td>
<td>BlogExpressGraphQLTS is a TypeScript-based project for creating a feature-rich blog using Express.js and GraphQL, without relying on NestJS. This project aims to provide a flexible and powerful backend solution for managing a blog application through GraphQL queries and mutations.</td>
<td>TypeScript</td>
<td>blog, express, express-js, express-ts, express-typescript, expressjs, graphql, graphql-blog, typescript, typescript-express, blog-graphql, blog-typescript, javascript, js, ts</td>
</tr>
<tr>
<td>BlogLaravelGraphQL</td>
<td><a href="https://github.com/BaseMax/BlogLaravelGraphQL" target="_blank">https://github.com/BaseMax/BlogLaravelGraphQL</a></td>
<td>The GraphQL-Based Blog System is a powerful and modern blog application that allows users to read, create, update, and delete blog posts, manage comments, and perform various other operations through a GraphQL API. It offers a more intuitive and customizable way of querying data compared to RESTful APIs.</td>
<td>PHP</td>
<td>graphql, graphql-php, graphql-php-library, laravel, laravel-10, laravel-graphql, laravel-php, laravel10, php, php-graphql, php-laravel, php8</td>
</tr>
<tr>
<td>BlogSiteGraphQLAPI</td>
<td><a href="https://github.com/BaseMax/BlogSiteGraphQLAPI" target="_blank">https://github.com/BaseMax/BlogSiteGraphQLAPI</a></td>
<td>This project is a GraphQL API built with NestJS and TypeScript. It provides a backend for a blog site, allowing users to register, create and manage blog posts, manage categories, and create pages. It also supports authentication using JWT tokens.</td>
<td>TypeScript</td>
<td>backend, gql, graphql, javascript, js, ts, typescript</td>
</tr>
<tr>
<td>bonbast-api</td>
<td><a href="https://github.com/BaseMax/bonbast-api" target="_blank">https://github.com/BaseMax/bonbast-api</a></td>
<td>Dollar and Euro: Live irr exchange rates in free market - bonbast.com</td>
<td>PHP</td>
<td>api, bonbast, exchange, exchange-rates, exchange-rate, exchange-rates-api, exchange-rate-api, php</td>
</tr>
<tr>
<td>BookDeweyList</td>
<td><a href="https://github.com/BaseMax/BookDeweyList" target="_blank">https://github.com/BaseMax/BookDeweyList</a></td>
<td>List of book category and subject in Dewey List. (Book System)</td>
<td>HTML</td>
<td>book, dewey, dewey-list, dewey-system, book-dewey</td>
</tr>
<tr>
<td>BookingAPITS</td>
<td><a href="https://github.com/BaseMax/BookingAPITS" target="_blank">https://github.com/BaseMax/BookingAPITS</a></td>
<td>This is a RESTful API built using NestJS and TypeScript that enables users to reserve appointments, services, or resources through a booking system. The API provides functionality for managing availability, user authentication, and notifications for booking confirmations or reminders.</td>
<td>TypeScript</td>
<td>api, javascript, js, nest-js, nestjs, nestjs-api, restful, ts, typescript, web-service, webservice</td>
</tr>
<tr>
<td>BookingLaravelGraphQL</td>
<td><a href="https://github.com/BaseMax/BookingLaravelGraphQL" target="_blank">https://github.com/BaseMax/BookingLaravelGraphQL</a></td>
<td>The Book Management System will be a web application that allows users to manage their personal book collections. Users can add, update, delete, and view details of their books. The system will use GraphQL for querying and mutating book data.</td>
<td>PHP</td>
<td>booking-system, graphql, laravel, laravel-graphql, laravel-graphql-playground, laravel-php, php, php-graphql, php-laravel, php8, book-managment, book-managment-system</td>
</tr>
<tr>
<td>bookpam</td>
<td><a href="https://github.com/BaseMax/bookpam" target="_blank">https://github.com/BaseMax/bookpam</a></td>
<td>Python: BookPam is a typesetting system; it includes features designed for the production of technical documentation and book using Python.</td>
<td>HTML</td>
<td>typesetting-system, typesetting, typesettings, python, book-generator, documentation-tool, documentation, documentation-generator, documentation-site</td>
</tr>
<tr>
<td>BookstoreGraphQLTS</td>
<td><a href="https://github.com/BaseMax/BookstoreGraphQLTS" target="_blank">https://github.com/BaseMax/BookstoreGraphQLTS</a></td>
<td>This is a TypeScript-based GraphQL API for a bookstore that allows users to browse books and manage their accounts. The API is built using Apollo Server, and it uses Redis for caching and PostgreSQL as the database. Docker is used to automatically install PostgreSQL and the GraphQL tools.</td>
<td>TypeScript</td>
<td>api, graphql, javascript, js, postgresql, psql, ts, typescript</td>
</tr>
<tr>
<td>BoostAsioChat</td>
<td><a href="https://github.com/BaseMax/BoostAsioChat" target="_blank">https://github.com/BaseMax/BoostAsioChat</a></td>
<td>Simple Chat Application using Boost Asio, based on Cpp.</td>
<td>C++</td>
<td>cpp, chat, boost-asio, boost-sample, boost-example, boost-asio-sample, boost-asio-example, chat-server, chat-client, chat-application, chat-socket, socket, socket-programming, socket-server, socket-communication, socket-client</td>
</tr>
<tr>
<td>BootstrapSample</td>
<td><a href="https://github.com/BaseMax/BootstrapSample" target="_blank">https://github.com/BaseMax/BootstrapSample</a></td>
<td>All sample codes for bootstrap library.</td>
<td>HTML</td>
<td></td>
</tr>
<tr>
<td>bower-package-nodejs</td>
<td><a href="https://github.com/BaseMax/bower-package-nodejs" target="_blank">https://github.com/BaseMax/bower-package-nodejs</a></td>
<td>This is a NodeJS module for getting information about Bower packages from the Bower registry, which is a REST API. It can be used to search for packages, list all packages, and check if a package exists. The package written in JavaScript.</td>
<td>JavaScript</td>
<td>bower, bower-json, bower-package, bower-packages, bower-repository, javascript, js, bower-api, bower-javascript, bower-js, bower-npm, bower-npm-checker, javascript-bower, js-bower, npm-bower</td>
</tr>
<tr>
<td>brainfuck-interpreter-python</td>
<td><a href="https://github.com/BaseMax/brainfuck-interpreter-python" target="_blank">https://github.com/BaseMax/brainfuck-interpreter-python</a></td>
<td>Brainfuck Interpreter in Python is a fully featured Brainfuck interpreter written in Python. It supports interactive mode, executing code from files, or running raw Brainfuck code passed as command-line arguments.</td>
<td>Python</td>
<td>brainfuck, brainfuck-debugger, brainfuck-interpreter, brainfuck-interpreters, brainfuck-language, brainfuck-parser, brainfuck-programs, interpreter, interpreter-design, lexer, parser, py, py3, python, python3</td>
</tr>
<tr>
<td>brainfuck2c</td>
<td><a href="https://github.com/BaseMax/brainfuck2c" target="_blank">https://github.com/BaseMax/brainfuck2c</a></td>
<td>A simple Brainfuck-to-C transpiler that converts Brainfuck code into optimized C code. It features token merging, error detection, and clean C output for easy compilation and execution.</td>
<td>C</td>
<td>brainfuck, brainfuck-compiler, brainfuck-generator, brainfuck-interpreter, c, compiler, compiler-generator, transpilation, transpile, transpiled-language, transpiler, transpilers, transpiling, c-generator</td>
</tr>
<tr>
<td>BrainfuckCompilerC</td>
<td><a href="https://github.com/BaseMax/BrainfuckCompilerC" target="_blank">https://github.com/BaseMax/BrainfuckCompilerC</a></td>
<td>A C compiler to read and generate C-code from Brainfuck programs (Designed in pure C in the simplest way)</td>
<td>C</td>
<td>bf, bf-compiler, brainfuck, brainfuck-compiler, brainfuck-language, brainfuck-translator, brainfuck-transpiler, c, c-compiler, compiler-design, compiler-frontend, compilers, transpiler, transpilers, bf-language, transpiler-bf</td>
</tr>
<tr>
<td>BrainfuckInterpreterC</td>
<td><a href="https://github.com/BaseMax/BrainfuckInterpreterC" target="_blank">https://github.com/BaseMax/BrainfuckInterpreterC</a></td>
<td>A C-based interpreter to read and run Brainfuck programs in pure C in the simplest way.</td>
<td>C</td>
<td>bf, brainfuck, brainfuck-interpreter, brainfuck-language, brainfuck-programs, c, interpreter, interpreter-language, interpreters, brainfuck-c, interpreter-bf</td>
</tr>
<tr>
<td>BrainfuckInterpreterGo</td>
<td><a href="https://github.com/BaseMax/BrainfuckInterpreterGo" target="_blank">https://github.com/BaseMax/BrainfuckInterpreterGo</a></td>
<td>A Go-based interpreter to read and run Brainfuck programs in pure Go in the simplest way. (With a C-generator Brainfuck compiler written in Brainfuck)</td>
<td>Brainfuck</td>
<td>bf, brainfuck, brainfuck-interpreter, brainfuck-interpreters, brainfuck-language, brainfuck-parser, brainfuck-programs, go, go-lang, golang, brainfuck-go, go-brainfuck</td>
</tr>
<tr>
<td>BrainfuckInterpreterPython</td>
<td><a href="https://github.com/BaseMax/BrainfuckInterpreterPython" target="_blank">https://github.com/BaseMax/BrainfuckInterpreterPython</a></td>
<td>A Python-based interpreter to read and run Brainfuck programs in pure Python in the simplest way.</td>
<td>Python</td>
<td>bf, brain-fuck, brainfuck, brainfuck-interpreter, brainfuck-language, interpreter, interpreter-python, python, brainfuck-py, brainfuck-python, interpreter-language, interpreters</td>
</tr>
<tr>
<td>BrowserFeaturesJs</td>
<td><a href="https://github.com/BaseMax/BrowserFeaturesJs" target="_blank">https://github.com/BaseMax/BrowserFeaturesJs</a></td>
<td>Tiny Library for browser features detection.</td>
<td>JavaScript</td>
<td>javascript, js, html, browser, browser-detection, browser-automation, javascript-library, javascript-lib, js-library, js-libs, purejs</td>
</tr>
<tr>
<td>BSTGo</td>
<td><a href="https://github.com/BaseMax/BSTGo" target="_blank">https://github.com/BaseMax/BSTGo</a></td>
<td>This is a Go implementation of the BST data structure with a few of the most common operations. The algorithms code should be easy to understand. BST Tree is a binary tree in which the value of each node is greater than or equal to any value stored in the left sub-tree, and less than or equal to any value stored in the right sub-tree.</td>
<td>Go</td>
<td>algorithm, algorithms, algorithms-and-data-structures, bst, data-structure, datastructure, go, golang, tree, tree-algorithm, tree-algorithms, tree-datastructure, tree-insert, tree-search, tree-structure, tere-data-structure</td>
</tr>
<tr>
<td>bun-microservice-gateways</td>
<td><a href="https://github.com/BaseMax/bun-microservice-gateways" target="_blank">https://github.com/BaseMax/bun-microservice-gateways</a></td>
<td>A blazing fast, configurable gateway built with Bun, designed to forward HTTP requests to internal microservices based on path or prefix. Ideal for lightweight setups and local development.</td>
<td>TypeScript</td>
<td>conference, gateway, javascript, js, microservice, microservice-framework, microservices, microservices-architecture, microserviceslibrary, talk, ts, typescript</td>
</tr>
<tr>
<td>buskool.com-crawler</td>
<td><a href="https://github.com/BaseMax/buskool.com-crawler" target="_blank">https://github.com/BaseMax/buskool.com-crawler</a></td>
<td>This repository contains a PHP-based crawler and scraper designed to fetch and download all product data from the Buskool website (باسکول). The crawler is designed to handle large-scale data scraping efficiently and stores the collected data in JSON format.</td>
<td>PHP</td>
<td>crawler, crawler-php, php, php-crawler, buskool, buskoolcom</td>
</tr>
<tr>
<td>buskool.com-data</td>
<td><a href="https://github.com/BaseMax/buskool.com-data" target="_blank">https://github.com/BaseMax/buskool.com-data</a></td>
<td>This repository contains the collected product data from the Buskool website (باسکول). The data is stored in 20k+ JSON files, each containing detailed information about products available on the website.</td>
<td></td>
<td>buskool, buskoolcom, data, farsi, information, ir, iran, json, persian</td>
</tr>
<tr>
<td>c-header-generator</td>
<td><a href="https://github.com/BaseMax/c-header-generator" target="_blank">https://github.com/BaseMax/c-header-generator</a></td>
<td>c-header-generator is a Python tool that recursively scans C/C++ source files in a given directory and ensures that each `.c`, `.cpp`, `.cc`, or `.cxx` file has a corresponding header file (`.h` or `.hpp`).</td>
<td>Python</td>
<td>c, cpp, header, py, py3, python, python3</td>
</tr>
<tr>
<td>c-http-router</td>
<td><a href="https://github.com/BaseMax/c-http-router" target="_blank">https://github.com/BaseMax/c-http-router</a></td>
<td>A lightweight HTTP router written in C that makes it easy to route HTTP requests to specific handlers. This project provides a simple interface to create routes, handle client connections, and send HTTP responses. It is designed to be minimal and straightforward, making it ideal for small web services or educational purposes.</td>
<td>C</td>
<td>c, http, http-router, router, c-http-router, c-router, http-route, http-router-c, router-c, router-http</td>
</tr>
<tr>
<td>c-ifndef-headers</td>
<td><a href="https://github.com/BaseMax/c-ifndef-headers" target="_blank">https://github.com/BaseMax/c-ifndef-headers</a></td>
<td>This project is a Python script that checks and updates C/C++ header files with proper `#ifndef` guards.</td>
<td>Python</td>
<td>c, c-header, cpp, define, header, header-file, headerfile, hpp, ifndef, py, py3, python, python3</td>
</tr>
<tr>
<td>c-importpath-fixer</td>
<td><a href="https://github.com/BaseMax/c-importpath-fixer" target="_blank">https://github.com/BaseMax/c-importpath-fixer</a></td>
<td>A Python tool to automatically fix `#include "@/..."` paths in C/C++ source files by converting them to proper relative paths.</td>
<td>Python</td>
<td>c, gcc, import, include, package, py, py3, python, python3, regex, replace, require</td>
</tr>
<tr>
<td>C-Minifier</td>
<td><a href="https://github.com/BaseMax/C-Minifier" target="_blank">https://github.com/BaseMax/C-Minifier</a></td>
<td>CMinifier: A C program to remove comments and minimize the code (remove whitespace and summarize code)</td>
<td>C</td>
<td>c, minifier, minifiers, minifier-c, c-minifier, minify, minify-c, minifying</td>
</tr>
<tr>
<td>c-nostdlib-assembly</td>
<td><a href="https://github.com/BaseMax/c-nostdlib-assembly" target="_blank">https://github.com/BaseMax/c-nostdlib-assembly</a></td>
<td>We define own _start point without using GLIBC runtime library using Assembly. (x86_64 and i386)</td>
<td>C</td>
<td>c, assembly, assembly-8086, assembly-x86, assembly-x64, syscalls, syscall</td>
</tr>
<tr>
<td>calculator-flex-bison-c</td>
<td><a href="https://github.com/BaseMax/calculator-flex-bison-c" target="_blank">https://github.com/BaseMax/calculator-flex-bison-c</a></td>
<td>A tiny calculator project with lexer/parser based on Flex, Bison with pure c programming language.</td>
<td>Yacc</td>
<td>flex, bison, yacc, lexer, parser, c, yacc-example, yacc-lex</td>
</tr>
<tr>
<td>CalculatorPolynomial</td>
<td><a href="https://github.com/BaseMax/CalculatorPolynomial" target="_blank">https://github.com/BaseMax/CalculatorPolynomial</a></td>
<td>Tiny program as a calculator for the math expression based on regular expression.</td>
<td>C++</td>
<td>calculator, calculator-application, calculation, calculator-app, calculators, regex, regexp, regex-pattern, regex-match, regexp-match, regexp-search</td>
</tr>
<tr>
<td>CalculatorWeb</td>
<td><a href="https://github.com/BaseMax/CalculatorWeb" target="_blank">https://github.com/BaseMax/CalculatorWeb</a></td>
<td>A online calculator using web technology based on Javascript.</td>
<td>HTML</td>
<td>calculator, calculator-javascript, calculator-js, js, javascript, css</td>
</tr>
<tr>
<td>CalendarLibrary</td>
<td><a href="https://github.com/BaseMax/CalendarLibrary" target="_blank">https://github.com/BaseMax/CalendarLibrary</a></td>
<td>The powerful library for display and convert calendar and handle the date units. (Soon)</td>
<td>C</td>
<td>calendar, calendar-lib, calendar-library, c, c-calendar, c-calendar-lib, c-lib, c-library, gregorian, gregorian-calendar, gregorian-converter, gregorian-calendar-converter, gregorian-calender, gregorian-calender-convertor, gregorian-date, gregoriancalendar</td>
</tr>
<tr>
<td>CameraColorRecognitionPython</td>
<td><a href="https://github.com/BaseMax/CameraColorRecognitionPython" target="_blank">https://github.com/BaseMax/CameraColorRecognitionPython</a></td>
<td>Color recognizer app which can detect colors from your camera using Python.</td>
<td>Python</td>
<td>color-detection, color-detector, color-recognition, hsv-color-detection, hsv2rgb, opencv, opencv-python, opencv3, py, python, python3, color-detect</td>
</tr>
<tr>
<td>CAPIs</td>
<td><a href="https://github.com/BaseMax/CAPIs" target="_blank">https://github.com/BaseMax/CAPIs</a></td>
<td>A sample and tiny RESTful API based on C programming and a fastcgi library.</td>
<td>C</td>
<td>cgi, cgi-script, cgi-bin, cgi-application, cgi-server, cgi-fcgi, c, nginx-fcgi, apache-fcgi, c-fcgi, c-cgi</td>
</tr>
<tr>
<td>CaptchaSolver</td>
<td><a href="https://github.com/BaseMax/CaptchaSolver" target="_blank">https://github.com/BaseMax/CaptchaSolver</a></td>
<td>A tiny program to solve the thousand captcha image for testing the quality of the OCR. (Optical character recognition)</td>
<td>PHP</td>
<td>captcha, captcha-solving, captcha-image, captcha-solver, captcha-breaking, captcha-recognition, solve-captcha, solve-the-captcha, solve-captchas, ocr, ocr-recognition, ocr-text-reader, ocr-python, ocr-service, ocr-test, ocr-testing, test-ocr, testing-ocr, test-captcha, test-captcha-reader</td>
</tr>
<tr>
<td>CardCGenerator</td>
<td><a href="https://github.com/BaseMax/CardCGenerator" target="_blank">https://github.com/BaseMax/CardCGenerator</a></td>
<td>Card Generator in C: A simple C program using Cairo to generate personalized certificates with custom backgrounds and fonts.</td>
<td>C</td>
<td>c, c-image, card-game, card-game-engine, card-game-generator, card-game-simulation, card-games, cards, generate-image, image, image-c, image-generator, card-image</td>
</tr>
<tr>
<td>cat-all-files</td>
<td><a href="https://github.com/BaseMax/cat-all-files" target="_blank">https://github.com/BaseMax/cat-all-files</a></td>
<td>`cat-all-files` is a powerful command-line utility that recursively prints, filters, and optionally copies the contents of all text files in a directory tree. It supports regex search, clipboard copy, extension filtering, skipping binaries, size limits, dry runs, and more.</td>
<td>Python</td>
<td>ai, cat, file, io, prompt, py, py3, python, python3</td>
</tr>
<tr>
<td>CBinaryTreesEquality</td>
<td><a href="https://github.com/BaseMax/CBinaryTreesEquality" target="_blank">https://github.com/BaseMax/CBinaryTreesEquality</a></td>
<td>This is a C implementation of the Binary-Trees Equality program to check two binary trees are identical or not.</td>
<td>C</td>
<td>bin-tree, binary-tree, binary-tree-c, binary-trees, bintree, c, data-structure, datastructure, ds, tree</td>
</tr>
<tr>
<td>CContacts</td>
<td><a href="https://github.com/BaseMax/CContacts" target="_blank">https://github.com/BaseMax/CContacts</a></td>
<td>This is a simple contacts manager written in C with a simple CLI interface and a lot of features.</td>
<td>C</td>
<td>c, contacts, contacts-app, contacts-management, contacts-manager, data-structure, data-structure-and-algorithm, data-structures, data-structures-algorithms, data-structures-and-algorithms, data-structures-c, datastructure, ds</td>
</tr>
<tr>
<td>CertificateGenerator</td>
<td><a href="https://github.com/BaseMax/CertificateGenerator" target="_blank">https://github.com/BaseMax/CertificateGenerator</a></td>
<td>Certificate Generator is a python script that allows you to generate certificates for your participants with just one click. If you are an event or conference organizer, this script will streamline your workflow and save you time by generating certificates for all of your attendees at once.</td>
<td>Python</td>
<td>image, python, certificate, pil</td>
</tr>
<tr>
<td>CFG2CNF</td>
<td><a href="https://github.com/BaseMax/CFG2CNF" target="_blank">https://github.com/BaseMax/CFG2CNF</a></td>
<td>Python program to convert a Context Free Grammar to Chomsky Normal Form.</td>
<td>Python</td>
<td>python, cfg, cnf, context-free-grammar, context-free-grammars, context-free, context-free-language, chomsky</td>
</tr>
<tr>
<td>ChangeNumbersJs</td>
<td><a href="https://github.com/BaseMax/ChangeNumbersJs" target="_blank">https://github.com/BaseMax/ChangeNumbersJs</a></td>
<td>Tiny Library for change number from a language in other language.</td>
<td>JavaScript</td>
<td>javascript, javascript-library, javascript-lib, js, js-library, js-libs, number, numbers, purejs, number-format, number-converter, number-conversion</td>
</tr>
<tr>
<td>CharPHP</td>
<td><a href="https://github.com/BaseMax/CharPHP" target="_blank">https://github.com/BaseMax/CharPHP</a></td>
<td>Useful functions for work with character, string in the PHP based application.</td>
<td>PHP</td>
<td>php, string, strings, string-search, characters</td>
</tr>
<tr>
<td>ChatTypeScriptSocketIO</td>
<td><a href="https://github.com/BaseMax/ChatTypeScriptSocketIO" target="_blank">https://github.com/BaseMax/ChatTypeScriptSocketIO</a></td>
<td>This is a real-time chat application built with TypeScript and Socket.io, allowing users to communicate through direct messages, group messages, and channels. The application offers bidirectional communication between clients and the server, providing a seamless chat experience.</td>
<td>TypeScript</td>
<td>javascript, javascript-socket, socket-io, socketio, typescript, javascript-socketio, socket-typescript, typescript-socket, typescript-socketio</td>
</tr>
<tr>
<td>CheckFullBinaryTreeC</td>
<td><a href="https://github.com/BaseMax/CheckFullBinaryTreeC" target="_blank">https://github.com/BaseMax/CheckFullBinaryTreeC</a></td>
<td>This is a simple C program to check if a binary tree is full or not.</td>
<td>C</td>
<td>binary-tree, binarytree, bintree, c, full-binary-tree, tree, bin-tree, data-structure, datastructure, ds</td>
</tr>
<tr>
<td>CheckNumber</td>
<td><a href="https://github.com/BaseMax/CheckNumber" target="_blank">https://github.com/BaseMax/CheckNumber</a></td>
<td>Check the number and calculate the gcd and lcm and perfect.</td>
<td>C++</td>
<td>number, numbers, number-theory, number-converter, cpp, fibonacci</td>
</tr>
<tr>
<td>CheckReverseString</td>
<td><a href="https://github.com/BaseMax/CheckReverseString" target="_blank">https://github.com/BaseMax/CheckReverseString</a></td>
<td>Tiny Program to check the reverse of the string using C/C++.</td>
<td>C++</td>
<td>cpp, reverse, reverse-strings, reverse-string, recursion, recursion-exercises, recursion-basics, recursion-problem, recursion-algorithm, reverse-utf8, reverse-utf, reverse-algorithm</td>
</tr>
<tr>
<td>ChessDesktopElectron</td>
<td><a href="https://github.com/BaseMax/ChessDesktopElectron" target="_blank">https://github.com/BaseMax/ChessDesktopElectron</a></td>
<td>Chess game with two player based on electron. (SOON)</td>
<td>JavaScript</td>
<td>desktop-app, desktop-application, gui, electron, chess, chess-engine, chess-game, chess-board, chess-puzzle, chess-position, js, javascript, javascript-game, javascript-applications, chessprogramm, chessboard</td>
</tr>
<tr>
<td>ChessWeb</td>
<td><a href="https://github.com/BaseMax/ChessWeb" target="_blank">https://github.com/BaseMax/ChessWeb</a></td>
<td>Chess game with two player. (SOON)</td>
<td>JavaScript</td>
<td>game, chess, chess-game, chess-board, chessprogramm, chess-puzzle, js, javascript, javascript-game, javascript-client, javascript-applications, game-development, game-2d, game-dev, game-ai, chess-ai, chess-position</td>
</tr>
<tr>
<td>CircleQueueGo</td>
<td><a href="https://github.com/BaseMax/CircleQueueGo" target="_blank">https://github.com/BaseMax/CircleQueueGo</a></td>
<td>The Circle Queue implementation in Go. The circle queue is a special version of a queue where the last element of the queue is connected to the first element of the queue forming a circle. The operations are performed based on FIFO (First In First Out) principle. It is also called 'Ring Buffer'.</td>
<td>Go</td>
<td>data-structure, data-structure-and-algorithm, data-structures, data-structures-and-algorithms, go, golang, queue, circle-queue</td>
</tr>
<tr>
<td>CircularDoublyLinkedListC</td>
<td><a href="https://github.com/BaseMax/CircularDoublyLinkedListC" target="_blank">https://github.com/BaseMax/CircularDoublyLinkedListC</a></td>
<td>This is a simple implementation of Circular Doubly Linked-List in C. Circular Doubly Linked-List is a data structure that is a combination of a doubly linked list and a circular linked list. It is a linked list where all nodes are connected to each other. It is a circular linked list because all nodes are connected to each other.</td>
<td>C</td>
<td>c, circular-doubly-linked-list, circular-linked-list, circular-linkedlist, circularlinkedlist, data-structure, datastructure, ds, linked-list, linkedlist, circular-doubly, circular-doubly-linkedlist</td>
</tr>
<tr>
<td>CircularLinkedListC</td>
<td><a href="https://github.com/BaseMax/CircularLinkedListC" target="_blank">https://github.com/BaseMax/CircularLinkedListC</a></td>
<td>This is a simple implementation of a circular linked-list in C. Circular linked-lists are a type of linked-list where the last node points to the first node. This is useful for implementing queues and stacks. This implementation is a doubly linked-list, meaning that each node has a pointer to the next node and a pointer to the previous node.</td>
<td>C</td>
<td>c, circular, circular-linked-list, data-structure, datastructure, ds, linked-list, linkedlist, circular-linkedlist</td>
</tr>
<tr>
<td>CircularLinkedListCpp</td>
<td><a href="https://github.com/BaseMax/CircularLinkedListCpp" target="_blank">https://github.com/BaseMax/CircularLinkedListCpp</a></td>
<td>This is a simple implementation of a circular linked-list in C++.</td>
<td>C++</td>
<td>circular, circular-linked-list, cpp, data-structure, datastructure, ds, linked-list, linkedlist</td>
</tr>
<tr>
<td>clipboard-history-manager</td>
<td><a href="https://github.com/BaseMax/clipboard-history-manager" target="_blank">https://github.com/BaseMax/clipboard-history-manager</a></td>
<td>Clipboard History Manager is a simple tool to monitor your clipboard, store clipboard content, and manage the saved history.</td>
<td>Python</td>
<td>clipboard, clipboard-history, clipboard-management, clipboard-manager, clipboard-monitoring, py, python, clipboard-python, py-clipboard, python-clipboard</td>
</tr>
<tr>
<td>ClipboardReaderJS</td>
<td><a href="https://github.com/BaseMax/ClipboardReaderJS" target="_blank">https://github.com/BaseMax/ClipboardReaderJS</a></td>
<td>ClipboardReaderJS is a simple web-based tool that allows users to paste content from their clipboard, which is then analyzed to detect the type of data. The tool can detect plain text, HTML, files, images, and binary data. It can be integrated into any web application to analyze pasted data in real-time.</td>
<td>JavaScript</td>
<td>clipboard, clipboard-history, clipboard-management, clipboard-manager, clipboard-managers, javascript, js</td>
</tr>
<tr>
<td>ClosureSetAttributesGeneratorJS</td>
<td><a href="https://github.com/BaseMax/ClosureSetAttributesGeneratorJS" target="_blank">https://github.com/BaseMax/ClosureSetAttributesGeneratorJS</a></td>
<td>This is a implementation of the closure of a set of attributes generator in JavaScript. (Useful for databases)</td>
<td>JavaScript</td>
<td>javascript, js, set-attribute, closure-set, closure-set-attribute, closure-set-attributes, set-attributes</td>
</tr>
<tr>
<td>cloudflare-dns-ip-migrator-php</td>
<td><a href="https://github.com/BaseMax/cloudflare-dns-ip-migrator-php" target="_blank">https://github.com/BaseMax/cloudflare-dns-ip-migrator-php</a></td>
<td>A simple CLI tool to migrate DNS A records from an old IP to a new IP across multiple Cloudflare zones.</td>
<td>PHP</td>
<td>api, cdn, cloudflare, cloudflare-api, php, script, api-cloudflare, cloudflare-migrate, cloudflare-scripts, migrate-cloudflare</td>
</tr>
<tr>
<td>cloudflare-dns-ip-migrator-python</td>
<td><a href="https://github.com/BaseMax/cloudflare-dns-ip-migrator-python" target="_blank">https://github.com/BaseMax/cloudflare-dns-ip-migrator-python</a></td>
<td>A simple Python CLI tool to bulk update DNS A records in your Cloudflare account, replacing an old IP address with a new one across multiple zones.</td>
<td>Python</td>
<td>cdn, cloudflare, cloudflare-api, cloudflare-python, dns, dns-migration-check-tool, dns-migrator, py, python, cloudflare-py, cloudflare-script, python-cloudflare, script-cloudflare</td>
</tr>
<tr>
<td>cMD5</td>
<td><a href="https://github.com/BaseMax/cMD5" target="_blank">https://github.com/BaseMax/cMD5</a></td>
<td>Implement MD5 encryption using c without openssl and extra library.</td>
<td>Objective-C</td>
<td>md5, md5-hash, hash-md5, c, md5hashing, md5-encode</td>
</tr>
<tr>
<td>CMSGraphQLTS</td>
<td><a href="https://github.com/BaseMax/CMSGraphQLTS" target="_blank">https://github.com/BaseMax/CMSGraphQLTS</a></td>
<td>This is a GraphQL-based project developed in TypeScript. It aims to provide a full-featured Content Management System (CMS) with various functionalities including categories, posts, sliders, FAQs, contact us responses, authentication, and more.</td>
<td>TypeScript</td>
<td>cms, graphql, graphql-cms, javascript, js, ts, typescript, cms-graphql</td>
</tr>
<tr>
<td>CNOL</td>
<td><a href="https://github.com/BaseMax/CNOL" target="_blank">https://github.com/BaseMax/CNOL</a></td>
<td>A new C standard library implementation intended for use on embedded systems. (SOON)</td>
<td>Assembly</td>
<td>c, linux, library, library-systems, system, kernel, libc, runtime-library, operation-systems, operation-system, os, glibc, os-lib, c-lib, clib</td>
</tr>
<tr>
<td>CodeMeliCheckerDesktop</td>
<td><a href="https://github.com/BaseMax/CodeMeliCheckerDesktop" target="_blank">https://github.com/BaseMax/CodeMeliCheckerDesktop</a></td>
<td>Desktop (Qt/Cross-platform) tool for validation Iranian National code. (QML)</td>
<td>C++</td>
<td>iran, iranian, iranian-national-id, iranian-national, iranian-national-checker, checker, qt, cpp, cpp17, qml, cross-platform, cross-platform-app</td>
</tr>
<tr>
<td>codeowners-validator</td>
<td><a href="https://github.com/BaseMax/codeowners-validator" target="_blank">https://github.com/BaseMax/codeowners-validator</a></td>
<td>A simple Python script to validate and check the existence of paths defined in a .github/CODEOWNERS file.</td>
<td>Python</td>
<td>codeowner, codeowners, codeowners-developers, codeowners-files, codeowners-test, codeowners-validator, py, python, python-validator, python3, validator, validators, validator-python</td>
</tr>
<tr>
<td>CodeShareHubLaravelGraphQL</td>
<td><a href="https://github.com/BaseMax/CodeShareHubLaravelGraphQL" target="_blank">https://github.com/BaseMax/CodeShareHubLaravelGraphQL</a></td>
<td>A collaborative code snippet manager powered by GraphQL, built on Laravel 10 and PHP 8.2. Share, discuss, and collaborate on code effortlessly.</td>
<td>PHP</td>
<td>code-snippet, code-snippets, graphql, graphql-php, laravel, laravel-graphql, php, php-graphql, php8, code-snippet-laravel, graphql-laravel, laravel-code, laravel1-</td>
</tr>
<tr>
<td>CodingBootcampJS</td>
<td><a href="https://github.com/BaseMax/CodingBootcampJS" target="_blank">https://github.com/BaseMax/CodingBootcampJS</a></td>
<td>Our Coding BootCamp JavaScript 2020 (10 days)</td>
<td></td>
<td>js, javascript, javascript-learn, learn-js, learn-javascript, bootcamp, bootcamp-workshop, bootcamps, bootcamp-js, bootcamp-2020</td>
</tr>
<tr>
<td>color-picker</td>
<td><a href="https://github.com/BaseMax/color-picker" target="_blank">https://github.com/BaseMax/color-picker</a></td>
<td>Color Picker is a simple Python application built with Tkinter that allows users to capture colors from their screen, select colors from a palette, and save their chosen colors to a file. The app displays the selected color in the interface and provides an easy way to save colors for later use.</td>
<td>Python</td>
<td>color-picker, color-picker-app, color-picker-library, color-picker-palette, color-picker-panel, color-picker-popup, color-pickers, py, python</td>