-
Notifications
You must be signed in to change notification settings - Fork 26
/
output.html
1263 lines (1240 loc) · 58.9 KB
/
output.html
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
<title>Max Base GitHub</title>
<h1>Max Base GitHub</h1>
<b>JavaScript</b>
<ul>
<li>
<a href="https://github.com/BaseMax/AirplaneTicketFirefox" alt="AirplaneTicketFirefox">AirplaneTicketFirefox</a>:
<span>The firefox addon for analyzing the purchase of Airplane tickets.</span>
</li>
<li>
<a href="https://github.com/BaseMax/BrowserFeaturesJs" alt="BrowserFeaturesJs">BrowserFeaturesJs</a>:
<span>Tiny Library for browser features detection.</span>
</li>
<li>
<a href="https://github.com/BaseMax/ChangeNumbersJs" alt="ChangeNumbersJs">ChangeNumbersJs</a>:
<span>Tiny Library for change number from a language in other language.</span>
</li>
<li>
<a href="https://github.com/BaseMax/ChessDesktopElectron" alt="ChessDesktopElectron">ChessDesktopElectron</a>:
<span>Chess game with two player based on electron. (SOON)</span>
</li>
<li>
<a href="https://github.com/BaseMax/ChessWeb" alt="ChessWeb">ChessWeb</a>:
<span>Chess game with two player. (SOON)</span>
</li>
<li>
<a href="https://github.com/BaseMax/CopyClipboardJs" alt="CopyClipboardJs">CopyClipboardJs</a>:
<span> Tiny Library for copy text in clipboard.</span>
</li>
<li>
<a href="https://github.com/BaseMax/CustomWindowsFormElectron" alt="CustomWindowsFormElectron">CustomWindowsFormElectron</a>:
<span>Custom Windows Frame with toolbar based on the electron.</span>
</li>
<li>
<a href="https://github.com/BaseMax/detect-svg" alt="detect-svg">detect-svg</a>:
<span>javascript: Detect a string or buffer is SVG or not.</span>
</li>
<li>
<a href="https://github.com/BaseMax/edb-sqlite-nodejs" alt="edb-sqlite-nodejs">edb-sqlite-nodejs</a>:
<span>edb-sqlite: Easy Database SQLite NodeJs</span>
</li>
<li>
<a href="https://github.com/BaseMax/ExampleReactNativeUserList" alt="ExampleReactNativeUserList">ExampleReactNativeUserList</a>:
<span>A tiny project and sample to display a list of some users with avatar to fetch data from internet using Json structure.</span>
</li>
<li>
<a href="https://github.com/BaseMax/FilterInputJs" alt="FilterInputJs">FilterInputJs</a>:
<span>Tiny and Powerful Library for limit an entry (text box,input) as number,string or more...</span>
</li>
<li>
<a href="https://github.com/BaseMax/first-nodejs-apollo-mongodb-graphql" alt="first-nodejs-apollo-mongodb-graphql">first-nodejs-apollo-mongodb-graphql</a>:
<span>Good example for starter and learning GraphQL + Apollo Server + MongoDB + NodeJS easily and fastly. (based on Babel, Just in 10 minutes)</span>
</li>
<li>
<a href="https://github.com/BaseMax/first-nodejs-graphql" alt="first-nodejs-graphql">first-nodejs-graphql</a>:
<span>Good example for starter and learning GraphQL + NodeJS easily and fastly. (Just in 10 minutes)</span>
</li>
<li>
<a href="https://github.com/BaseMax/FirstElectron" alt="FirstElectron">FirstElectron</a>:
<span>Begin point and Getting start of the electron using node js.</span>
</li>
<li>
<a href="https://github.com/BaseMax/FirstPWA" alt="FirstPWA">FirstPWA</a>:
<span>First Progressive Web App using Nodejs, HTML, CSS, Javascript.</span>
</li>
<li>
<a href="https://github.com/BaseMax/FirstReactNative" alt="FirstReactNative">FirstReactNative</a>:
<span>A sample application created using React Native.</span>
</li>
<li>
<a href="https://github.com/BaseMax/FirstVueRouter" alt="FirstVueRouter">FirstVueRouter</a>:
<span>Good example for starter and learning VueJs + Vue-Router easily and fastly. (Just in 10 minutes)</span>
</li>
<li>
<a href="https://github.com/BaseMax/FixLanguageTypeJs" alt="FixLanguageTypeJs">FixLanguageTypeJs</a>:
<span>Tiny Library for fix problem of language selection in type text.</span>
</li>
<li>
<a href="https://github.com/BaseMax/GoScrollJs" alt="GoScrollJs">GoScrollJs</a>:
<span>Tiny and Powerful Library for change place of the scroll and focus on element.</span>
</li>
<li>
<a href="https://github.com/BaseMax/JavascriptWebcamDemo" alt="JavascriptWebcamDemo">JavascriptWebcamDemo</a>:
<span>Get Webcam frames in javascript and Watch Webcam Stream in video tag.</span>
</li>
<li>
<a href="https://github.com/BaseMax/ko-engine" alt="ko-engine">ko-engine</a>:
<span>JavaScript template engine in just 50 LOC with supporting replacing variable, and JavaScript commands such as: if, else</span>
</li>
<li>
<a href="https://github.com/BaseMax/LeafletExample" alt="LeafletExample">LeafletExample</a>:
<span>A web page to select the origin and destination location in the Map using Leaflet library.</span>
</li>
<li>
<a href="https://github.com/BaseMax/LoadJs" alt="LoadJs">LoadJs</a>:
<span>Tiny Library for import and load the javascript file(code).</span>
</li>
<li>
<a href="https://github.com/BaseMax/MapboxWebExample" alt="MapboxWebExample">MapboxWebExample</a>:
<span>A web page to select the origin and destination location for requesting a taxi.</span>
</li>
<li>
<a href="https://github.com/BaseMax/MySqlExpressNodeJS" alt="MySqlExpressNodeJS">MySqlExpressNodeJS</a>:
<span>A great and simple website based on express with MySQL using.</span>
</li>
<li>
<a href="https://github.com/BaseMax/namifyUrlJs" alt="namifyUrlJs">namifyUrlJs</a>:
<span>namifyUrl is tiny function to normalize a URL address string for you.</span>
</li>
<li>
<a href="https://github.com/BaseMax/POSSF" alt="POSSF">POSSF</a>:
<span>Persian Open Source Software Festival (possf.ir)</span>
</li>
<li>
<a href="https://github.com/BaseMax/RandomProxyJs" alt="RandomProxyJs">RandomProxyJs</a>:
<span>Tiny Library for get random proxy (free).</span>
</li>
<li>
<a href="https://github.com/BaseMax/react-theme-switcher" alt="react-theme-switcher">react-theme-switcher</a>:
<span>A ReactJS-based switch to change style of page from Light to Dark or vice versa.</span>
</li>
<li>
<a href="https://github.com/BaseMax/reactjs-todo-list" alt="reactjs-todo-list">reactjs-todo-list</a>:
<span>Build A Todo List App with React from Scratch (Including Hooks, LocalStorage)</span>
</li>
<li>
<a href="https://github.com/BaseMax/reactjs-todolist" alt="reactjs-todolist">reactjs-todolist</a>:
<span>Build A Todo List App with React with Class (Including Hooks)</span>
</li>
<li>
<a href="https://github.com/BaseMax/reactjs-todolist-redux" alt="reactjs-todolist-redux">reactjs-todolist-redux</a>:
<span>Build A Todo List App with React with Class (Including Hooks, Redux)</span>
</li>
<li>
<a href="https://github.com/BaseMax/RookPolynomial" alt="RookPolynomial">RookPolynomial</a>:
<span>Algorithm to solving the rook polynomial questions.</span>
</li>
<li>
<a href="https://github.com/BaseMax/RunBenchmarkJs" alt="RunBenchmarkJs">RunBenchmarkJs</a>:
<span>Tiny Library for benchmark javascript code.</span>
</li>
<li>
<a href="https://github.com/BaseMax/Sarrafchi" alt="Sarrafchi">Sarrafchi</a>:
<span>Sarrafchi: A free website to get live currency rates in Free Market. (VueJS, SPA)</span>
</li>
<li>
<a href="https://github.com/BaseMax/SHA256HashGeneratorJS" alt="SHA256HashGeneratorJS">SHA256HashGeneratorJS</a>:
<span>A repository for a tool allows you to generate the SHA256 hash of any string using Javascript.</span>
</li>
<li>
<a href="https://github.com/BaseMax/TelegramCommunicationJS" alt="TelegramCommunicationJS">TelegramCommunicationJS</a>:
<span>A pure script to communicate with Telegram server without any Third-party tools and library.</span>
</li>
<li>
<a href="https://github.com/BaseMax/TelegramDataSerialization" alt="TelegramDataSerialization">TelegramDataSerialization</a>:
<span>A tiny library to Serialization and Deserialization of the JS objects for Telegram.</span>
</li>
<li>
<a href="https://github.com/BaseMax/TinyTimerJs" alt="TinyTimerJs">TinyTimerJs</a>:
<span>Tiny and Powerful Library for show time counter.</span>
</li>
<li>
<a href="https://github.com/BaseMax/WebMoleGame" alt="WebMoleGame">WebMoleGame</a>:
<span>Mole game with HTML, CSS, JavaScript. (Web-based)</span>
</li>
<li>
<a href="https://github.com/BaseMax/WebSnakeGame" alt="WebSnakeGame">WebSnakeGame</a>:
<span>Snake game with HTML, CSS, JavaScript. (Web-based)</span>
</li>
<li>
<a href="https://github.com/BaseMax/YoutubeDownloaderNodeJS" alt="YoutubeDownloaderNodeJS">YoutubeDownloaderNodeJS</a>:
<span>Tiny NodeJS server-side script for download the youtube video based on expressJs.</span>
</li>
</ul>
<b>PHP</b>
<ul>
<li>
<a href="https://github.com/BaseMax/AnalyzeCombine" alt="AnalyzeCombine">AnalyzeCombine</a>:
<span>Analyze the combine with and without the repetition. (SOON)</span>
</li>
<li>
<a href="https://github.com/BaseMax/API-Sarrafchi" alt="API-Sarrafchi">API-Sarrafchi</a>:
<span>Sarrafchi: API and web service to get live currency rates in Free Market.</span>
</li>
<li>
<a href="https://github.com/BaseMax/AutoNewsSubmitter" alt="AutoNewsSubmitter">AutoNewsSubmitter</a>:
<span>Analyze SQL query and extract data of attachment files to insert new wordpress post.</span>
</li>
<li>
<a href="https://github.com/BaseMax/bonbast-api" alt="bonbast-api">bonbast-api</a>:
<span>Dollar and Euro: Live irr exchange rates in free market - bonbast.com</span>
</li>
<li>
<a href="https://github.com/BaseMax/CaptchaSolver" alt="CaptchaSolver">CaptchaSolver</a>:
<span>A tiny program to solve the thousand captcha image for testing the quality of the OCR. (Optical character recognition)</span>
</li>
<li>
<a href="https://github.com/BaseMax/CharPHP" alt="CharPHP">CharPHP</a>:
<span>Useful functions for work with character, string in the PHP based application.</span>
</li>
<li>
<a href="https://github.com/BaseMax/CoronaVirusDatabase" alt="CoronaVirusDatabase">CoronaVirusDatabase</a>:
<span>A repository for analyzing references and database of "gisanddata.maps.arcgis.com" website for Corona Virus.</span>
</li>
<li>
<a href="https://github.com/BaseMax/crawler-news-currency-gold-coins" alt="crawler-news-currency-gold-coins">crawler-news-currency-gold-coins</a>:
<span>PHP Crawler to get Persian news related to currency coin and gold.</span>
</li>
<li>
<a href="https://github.com/BaseMax/CurlDivideParsing" alt="CurlDivideParsing">CurlDivideParsing</a>:
<span>A tiny library and script to divide and split a remote file to download that step by step.</span>
</li>
<li>
<a href="https://github.com/BaseMax/ExtractWord" alt="ExtractWord">ExtractWord</a>:
<span>Extract word(s) from the lines of the file.</span>
</li>
<li>
<a href="https://github.com/BaseMax/film2serial-api-service-crawler" alt="film2serial-api-service-crawler">film2serial-api-service-crawler</a>:
<span>Crawling content and Movies of a Persian site using PHP.</span>
</li>
<li>
<a href="https://github.com/BaseMax/FilterLines" alt="FilterLines">FilterLines</a>:
<span>A script for filtering the lines of the string with a specific format.</span>
</li>
<li>
<a href="https://github.com/BaseMax/FreeSpringerBook" alt="FreeSpringerBook">FreeSpringerBook</a>:
<span>Download Free List book of Springer. [PDF format]</span>
</li>
<li>
<a href="https://github.com/BaseMax/GameNetSystemPHP" alt="GameNetSystemPHP">GameNetSystemPHP</a>:
<span>A complete system for game nets that can manage the category of console devices and also have control over rent and receiving money. (PHP + Ajax javascript JSON)</span>
</li>
<li>
<a href="https://github.com/BaseMax/GitHubBackupArchiver" alt="GitHubBackupArchiver">GitHubBackupArchiver</a>:
<span>A small script to download and archive all repositories of a account in GitHub with PHP.</span>
</li>
<li>
<a href="https://github.com/BaseMax/GitHubVulnerabilityXSS" alt="GitHubVulnerabilityXSS">GitHubVulnerabilityXSS</a>:
<span>Archive of my experiments related to checking the security of GitHub and XSS vulnerability.</span>
</li>
<li>
<a href="https://github.com/BaseMax/GooglePlayDatabaseMirror" alt="GooglePlayDatabaseMirror">GooglePlayDatabaseMirror</a>:
<span>Repository of designing a crawler script to update a mirror database from Google Play on PHP. </span>
</li>
<li>
<a href="https://github.com/BaseMax/GooglePlayWebServiceAPI" alt="GooglePlayWebServiceAPI">GooglePlayWebServiceAPI</a>:
<span>Tiny script to crawl information of a specific application in the Google play/store base on PHP.</span>
</li>
<li>
<a href="https://github.com/BaseMax/iapk-api" alt="iapk-api">iapk-api</a>:
<span> Web service source code for iapk.org website with Flight micro-framework for PHP. </span>
</li>
<li>
<a href="https://github.com/BaseMax/iApkWebSystem" alt="iApkWebSystem">iApkWebSystem</a>:
<span>A PHP-base web system and site for displaying Android applications from Google Play Market and ... (along with 7 different languages)</span>
</li>
<li>
<a href="https://github.com/BaseMax/IndiaMobileNumbers" alt="IndiaMobileNumbers">IndiaMobileNumbers</a>:
<span>India Mobile Number Database.</span>
</li>
<li>
<a href="https://github.com/BaseMax/JPOPHP" alt="JPOPHP">JPOPHP</a>:
<span>JSON Parser Object PHP is a library for parsing the data in JSON format.</span>
</li>
<li>
<a href="https://github.com/BaseMax/LimitLastLinePHP" alt="LimitLastLinePHP">LimitLastLinePHP</a>:
<span>Some tiny script to limit and remove the last line from input string using PHP.</span>
</li>
<li>
<a href="https://github.com/BaseMax/LMPHP" alt="LMPHP">LMPHP</a>:
<span>Multi-language management and support on the site.</span>
</li>
<li>
<a href="https://github.com/BaseMax/LoxblogCheckLinkExchange" alt="LoxblogCheckLinkExchange">LoxblogCheckLinkExchange</a>:
<span>A software to check Loxblog subdomains to detect smart Link Exchange box.</span>
</li>
<li>
<a href="https://github.com/BaseMax/LoxblogSubdomains" alt="LoxblogSubdomains">LoxblogSubdomains</a>:
<span>List of some subdomains of Loxblog.com.</span>
</li>
<li>
<a href="https://github.com/BaseMax/master_autoindex" alt="master_autoindex">master_autoindex</a>:
<span>a nice autoindex witch will allow you to run a download site very easily, it also has plugins</span>
</li>
<li>
<a href="https://github.com/BaseMax/MathImprove" alt="MathImprove">MathImprove</a>:
<span>Modify and Improve math expressions.</span>
</li>
<li>
<a href="https://github.com/BaseMax/MatPHP" alt="MatPHP">MatPHP</a>:
<span>The tiny library to calculating the matrices and operations. (Soon)</span>
</li>
<li>
<a href="https://github.com/BaseMax/MegaDownloader" alt="MegaDownloader">MegaDownloader</a>:
<span>A script to download file from Mega.n and read it. (Using PHP)</span>
</li>
<li>
<a href="https://github.com/BaseMax/MiniPHPArchiveCompressor" alt="MiniPHPArchiveCompressor">MiniPHPArchiveCompressor</a>:
<span>PHP software to compress and archive files with CLI console.</span>
</li>
<li>
<a href="https://github.com/BaseMax/mysql-mariadb-rename-database-php" alt="mysql-mariadb-rename-database-php">mysql-mariadb-rename-database-php</a>:
<span>A tiny script to rename and move all of your table into a new MySQL/MriaDB database. (using pure PHP)</span>
</li>
<li>
<a href="https://github.com/BaseMax/NetPHP" alt="NetPHP">NetPHP</a>:
<span>Useful functions for connecting to the network in the PHP based applications.</span>
</li>
<li>
<a href="https://github.com/BaseMax/NginxWebAutoConfig" alt="NginxWebAutoConfig">NginxWebAutoConfig</a>:
<span>A sample script to automatically create nginx configuration file to set up all website on.</span>
</li>
<li>
<a href="https://github.com/BaseMax/NumbersToWordsPHP" alt="NumbersToWordsPHP">NumbersToWordsPHP</a>:
<span>Tiny library to convert numbers to words. (SOON)</span>
</li>
<li>
<a href="https://github.com/BaseMax/OmitKeepLines" alt="OmitKeepLines">OmitKeepLines</a>:
<span>Keeping or removing some part of lines from a text with special attributes.</span>
</li>
<li>
<a href="https://github.com/BaseMax/PartitionArrayPHP" alt="PartitionArrayPHP">PartitionArrayPHP</a>:
<span>Partition an array into multiple arrays using PHP.</span>
</li>
<li>
<a href="https://github.com/BaseMax/php-cli-apps" alt="php-cli-apps">php-cli-apps</a>:
<span> A simple, fast, and fun example for building command line apps in PHP. </span>
</li>
<li>
<a href="https://github.com/BaseMax/php-jwt-example" alt="php-jwt-example">php-jwt-example</a>:
<span>PHP JWT example.</span>
</li>
<li>
<a href="https://github.com/BaseMax/PHPAS" alt="PHPAS">PHPAS</a>:
<span>PHP Auto Style: A tool for format and beautify the style of PHP code with my style.</span>
</li>
<li>
<a href="https://github.com/BaseMax/PHPBigBlueButtonAPI" alt="PHPBigBlueButtonAPI">PHPBigBlueButtonAPI</a>:
<span>A small tools to connect with BigBlueButton API and create room and join and more works.</span>
</li>
<li>
<a href="https://github.com/BaseMax/PHPDomainParser" alt="PHPDomainParser">PHPDomainParser</a>:
<span>A tiny PHP-base library to parse domain address with a limit format allowed list.</span>
</li>
<li>
<a href="https://github.com/BaseMax/PHPEDB" alt="PHPEDB">PHPEDB</a>:
<span>PHP Easy DB (Database) is an easy library to manage and control the database.</span>
</li>
<li>
<a href="https://github.com/BaseMax/PHPJalaliDate" alt="PHPJalaliDate">PHPJalaliDate</a>:
<span>A tiny code to convert date into Jalali calendar using pure PHP code without extra library and code.</span>
</li>
<li>
<a href="https://github.com/BaseMax/PHPMultiExplode" alt="PHPMultiExplode">PHPMultiExplode</a>:
<span>Tiny function to split a string by a array of the string for PHP.</span>
</li>
<li>
<a href="https://github.com/BaseMax/PHPNiceCaptcha" alt="PHPNiceCaptcha">PHPNiceCaptcha</a>:
<span>Nice Captcha with good quality and security for keeping safe from bots using PHP.</span>
</li>
<li>
<a href="https://github.com/BaseMax/PHPSMSAmazonAWS" alt="PHPSMSAmazonAWS">PHPSMSAmazonAWS</a>:
<span> A quick example of sending SMS with AWS SNS Using Amazon Service. (PHP)</span>
</li>
<li>
<a href="https://github.com/BaseMax/PHPTinyCms" alt="PHPTinyCms">PHPTinyCms</a>:
<span>A mini, tiny content manager system (CMS) for general purpose and using for sites based on PHP.</span>
</li>
<li>
<a href="https://github.com/BaseMax/PriceEequationCalculator" alt="PriceEequationCalculator">PriceEequationCalculator</a>:
<span>Tiny Calculator: Price equations allow you to automatically update your price with the price fluctuations.</span>
</li>
<li>
<a href="https://github.com/BaseMax/proxycheckblock-whmcs-plugin" alt="proxycheckblock-whmcs-plugin">proxycheckblock-whmcs-plugin</a>:
<span>A simple WHMCS hook that checks if the client is using a proxy/VPN.</span>
</li>
<li>
<a href="https://github.com/BaseMax/QuestionnaireSystem" alt="QuestionnaireSystem">QuestionnaireSystem</a>:
<span>A php-based system script such as vote system to submit form and store it, finally it will show some chart for watching it.</span>
</li>
<li>
<a href="https://github.com/BaseMax/RamseyNumberResearchData" alt="RamseyNumberResearchData">RamseyNumberResearchData</a>:
<span>A archive repository for a research about colorize the Graphs.</span>
</li>
<li>
<a href="https://github.com/BaseMax/RamseyNumbers" alt="RamseyNumbers">RamseyNumbers</a>:
<span>A research repository about the Ramsey numbers and explore the new data in the mathematics field to write an article using One Programming Language.</span>
</li>
<li>
<a href="https://github.com/BaseMax/ReadableSubtitle" alt="ReadableSubtitle">ReadableSubtitle</a>:
<span>Make readable the subtitle files.</span>
</li>
<li>
<a href="https://github.com/BaseMax/RouteDistance" alt="RouteDistance">RouteDistance</a>:
<span>Calculating the distance and duration of two point in the Map.</span>
</li>
<li>
<a href="https://github.com/BaseMax/SampleCaptchaAPI" alt="SampleCaptchaAPI">SampleCaptchaAPI</a>:
<span>Implementing a captcha service using PHP and javascript to can use it anywhere such as Web.</span>
</li>
<li>
<a href="https://github.com/BaseMax/SampleGameAPI" alt="SampleGameAPI">SampleGameAPI</a>:
<span>A tiny implement API for game apps with a web service using PHP.</span>
</li>
<li>
<a href="https://github.com/BaseMax/SmartFilter" alt="SmartFilter">SmartFilter</a>:
<span>A Smart Filtering to keep and remove the character or words of the text. (SOON)</span>
</li>
<li>
<a href="https://github.com/BaseMax/SMTPConnection" alt="SMTPConnection">SMTPConnection</a>:
<span>A script to connect to a SMTP server and send email using that.</span>
</li>
<li>
<a href="https://github.com/BaseMax/StockExchangeCrawler" alt="StockExchangeCrawler">StockExchangeCrawler</a>:
<span>A crawler program to extract all of the data and the price for symbols in the global stock exchange.</span>
</li>
<li>
<a href="https://github.com/BaseMax/TDesign-Math" alt="TDesign-Math">TDesign-Math</a>:
<span>Research Simple t-designs: A recursive construction for arbitrary t.</span>
</li>
<li>
<a href="https://github.com/BaseMax/telegram-github-trend" alt="telegram-github-trend">telegram-github-trend</a>:
<span>A Tiny script to send message for new projects in GitHub Open Source - Free Software/GitHub Trending channel. (https://t.me/GitGpCh)</span>
</li>
<li>
<a href="https://github.com/BaseMax/telegram-weather-bot" alt="telegram-weather-bot">telegram-weather-bot</a>:
<span>A telegram bot to sending weather information daily in some channels. (Using PHP and getting information from a API)</span>
</li>
<li>
<a href="https://github.com/BaseMax/TelegramBotSample" alt="TelegramBotSample">TelegramBotSample</a>:
<span>Sample code for the telegram bot using PHP.</span>
</li>
<li>
<a href="https://github.com/BaseMax/TelegramEntitiesParser" alt="TelegramEntitiesParser">TelegramEntitiesParser</a>:
<span>A program to parse and decode formatted part of the Telegram message text with UTF8 support.</span>
</li>
<li>
<a href="https://github.com/BaseMax/TinyTelegramBotPHP" alt="TinyTelegramBotPHP">TinyTelegramBotPHP</a>:
<span>Small telegram bot library using PHP.</span>
</li>
<li>
<a href="https://github.com/BaseMax/TrackPhoneAndroid" alt="TrackPhoneAndroid">TrackPhoneAndroid</a>:
<span>NotificationListener: An android application to track phone messages and Children to understand what message they receive. (using Java)</span>
</li>
<li>
<a href="https://github.com/BaseMax/twitter-github-trend" alt="twitter-github-trend">twitter-github-trend</a>:
<span>A Tiny script to send tweet for new projects in GitHub Trending. (twitter.com/GithubTrend)</span>
</li>
<li>
<a href="https://github.com/BaseMax/WebPostPHP" alt="WebPostPHP">WebPostPHP</a>:
<span>WebPostPHP is a PHP library to build HTML form to send POST request.</span>
</li>
<li>
<a href="https://github.com/BaseMax/WorldCityJson" alt="WorldCityJson">WorldCityJson</a>:
<span>List of all city and country name with population number in json structure.</span>
</li>
</ul>
<b>Java</b>
<ul>
<li>
<a href="https://github.com/BaseMax/AndroidAutoUpdate" alt="AndroidAutoUpdate">AndroidAutoUpdate</a>:
<span>A tiny class to check automatically the Android application, if there are a newer version.</span>
</li>
<li>
<a href="https://github.com/BaseMax/AndroidDeviceInformation" alt="AndroidDeviceInformation">AndroidDeviceInformation</a>:
<span>Get device information of android using a tiny and small Java file.</span>
</li>
<li>
<a href="https://github.com/BaseMax/AndroidGoogleMaps" alt="AndroidGoogleMaps">AndroidGoogleMaps</a>:
<span>A sample android application with google maps for SDK 9.</span>
</li>
<li>
<a href="https://github.com/BaseMax/AndroidMySMS" alt="AndroidMySMS">AndroidMySMS</a>:
<span>An android application to send sms for a cloud-based web service.</span>
</li>
<li>
<a href="https://github.com/BaseMax/AndroidSnappMap" alt="AndroidSnappMap">AndroidSnappMap</a>:
<span>An example of an Android map app, Snapp app map rebuild.</span>
</li>
<li>
<a href="https://github.com/BaseMax/AndroidWebView" alt="AndroidWebView">AndroidWebView</a>:
<span>A tiny android application to display a special webpage in default.</span>
</li>
<li>
<a href="https://github.com/BaseMax/FirstFlutter" alt="FirstFlutter">FirstFlutter</a>:
<span> A sample application created using Flutter.</span>
</li>
<li>
<a href="https://github.com/BaseMax/JavaHugeNumber" alt="JavaHugeNumber">JavaHugeNumber</a>:
<span>Big and Huge Number/Integer class implementation with supporting arithmetic operations + - * / %.</span>
</li>
<li>
<a href="https://github.com/BaseMax/JavaJalaliCalendar" alt="JavaJalaliCalendar">JavaJalaliCalendar</a>:
<span>Tiny library and class for Jalali Calendar in Java with Gregorian calendar convertor.</span>
</li>
<li>
<a href="https://github.com/BaseMax/JavaMyString" alt="JavaMyString">JavaMyString</a>:
<span>A tiny implementation of String class in java as final project.</span>
</li>
<li>
<a href="https://github.com/BaseMax/MapBoxSampleAndroid" alt="MapBoxSampleAndroid">MapBoxSampleAndroid</a>:
<span>Example Map Android application based on MapBox.</span>
</li>
<li>
<a href="https://github.com/BaseMax/RationalNumber" alt="RationalNumber">RationalNumber</a>:
<span>A Rational Number class with supporting of + - * / < > >= <= != =.</span>
</li>
<li>
<a href="https://github.com/BaseMax/SmartTrackPhoneAndroid" alt="SmartTrackPhoneAndroid">SmartTrackPhoneAndroid</a>:
<span> NotificationListener: An android application to track phone messages and Children to understand what message they receive. (using Java) </span>
</li>
<li>
<a href="https://github.com/BaseMax/TelegramAndroidConcept" alt="TelegramAndroidConcept">TelegramAndroidConcept</a>:
<span>A new Android application based on new telegram concepts design Using Android (Java) with support SDK 9 and up to more.</span>
</li>
<li>
<a href="https://github.com/BaseMax/ToyLanguageTranslator" alt="ToyLanguageTranslator">ToyLanguageTranslator</a>:
<span>A java program to convert a new language to plain english language. (A exercise for String in advanced programming)</span>
</li>
</ul>
<b>HTML</b>
<ul>
<li>
<a href="https://github.com/BaseMax/api-webservice-COVID-19" alt="api-webservice-COVID-19">api-webservice-COVID-19</a>:
<span>API: Web Service Coronavirus Disease 2019 (COVID-19), Access to live data of outbreak of novel coronavirus disease 2019 using PHP.</span>
</li>
<li>
<a href="https://github.com/BaseMax/BaseMax.Github.io" alt="BaseMax.Github.io">BaseMax.Github.io</a>:
<span>Max Base Personal Website.</span>
</li>
<li>
<a href="https://github.com/BaseMax/BookDeweyList" alt="BookDeweyList">BookDeweyList</a>:
<span>List of book category and subject in Dewey List. (Book System)</span>
</li>
<li>
<a href="https://github.com/BaseMax/bookpam" alt="bookpam">bookpam</a>:
<span>Python: BookPam is a typesetting system; it includes features designed for the production of technical documentation and book using Python.</span>
</li>
<li>
<a href="https://github.com/BaseMax/BootstrapSample" alt="BootstrapSample">BootstrapSample</a>:
<span>All sample codes for bootstrap library.</span>
</li>
<li>
<a href="https://github.com/BaseMax/CalculatorWeb" alt="CalculatorWeb">CalculatorWeb</a>:
<span>A online calculator using web technology based on Javascript.</span>
</li>
<li>
<a href="https://github.com/BaseMax/CoronaVirusOutbreakAPI" alt="CoronaVirusOutbreakAPI">CoronaVirusOutbreakAPI</a>:
<span>A tiny and small program to crawler and analyze outbreak of COVID-19 in world and every country using PHP.</span>
</li>
<li>
<a href="https://github.com/BaseMax/CoursesConfig" alt="CoursesConfig">CoursesConfig</a>:
<span>A php script for parsing an own configuration setting file and generate HTML page archive.</span>
</li>
<li>
<a href="https://github.com/BaseMax/Direct2InternetPayment" alt="Direct2InternetPayment">Direct2InternetPayment</a>:
<span>A repository to write a program to connect to direct2internet payment page.</span>
</li>
<li>
<a href="https://github.com/BaseMax/ExerciseCanvasJS" alt="ExerciseCanvasJS">ExerciseCanvasJS</a>:
<span>A repository to archive trying Canvas in javascript to handle event and methods of canvas.</span>
</li>
<li>
<a href="https://github.com/BaseMax/FirstVuejs" alt="FirstVuejs">FirstVuejs</a>:
<span>Good example for starter and learning Vue Js easily and fastly. (Just in 10 minutes)</span>
</li>
<li>
<a href="https://github.com/BaseMax/FoodMarketTheme" alt="FoodMarketTheme">FoodMarketTheme</a>:
<span>Food Market Theme: Theme for food market.</span>
</li>
<li>
<a href="https://github.com/BaseMax/GitHubEventWeb" alt="GitHubEventWeb">GitHubEventWeb</a>:
<span>GitHub Universe 2020: GitHub Event Website Template</span>
</li>
<li>
<a href="https://github.com/BaseMax/HostingWebsiteTheme" alt="HostingWebsiteTheme">HostingWebsiteTheme</a>:
<span>Rewrite a website template and combine idea of some different theme. CSS/HTML</span>
</li>
<li>
<a href="https://github.com/BaseMax/live-exchange-rate-theme" alt="live-exchange-rate-theme">live-exchange-rate-theme</a>:
<span>A website template for live exchange rates in the free market.</span>
</li>
<li>
<a href="https://github.com/BaseMax/LiveSwedishTranslatorJS" alt="LiveSwedishTranslatorJS">LiveSwedishTranslatorJS</a>:
<span>Translate Swedish chars to normal english form. (web, javascript)</span>
</li>
<li>
<a href="https://github.com/BaseMax/LiveWebChatSocket" alt="LiveWebChatSocket">LiveWebChatSocket</a>:
<span>LiveWebChatSocket: A mini project for personal chat messaging in a cloud-based server using NodeJs(Javascript).</span>
</li>
<li>
<a href="https://github.com/BaseMax/MatrixResearch" alt="MatrixResearch">MatrixResearch</a>:
<span>New results from research on matrices.</span>
</li>
<li>
<a href="https://github.com/BaseMax/MetaCallWebsite" alt="MetaCallWebsite">MetaCallWebsite</a>:
<span>A repository for Website of MetaCall project, For supporting multi language.</span>
</li>
<li>
<a href="https://github.com/BaseMax/MyAddressGoogleMaps" alt="MyAddressGoogleMaps">MyAddressGoogleMaps</a>:
<span>Get the string address of my current position (location) using google maps.</span>
</li>
<li>
<a href="https://github.com/BaseMax/OneThemeBook" alt="OneThemeBook">OneThemeBook</a>:
<span>A web-based document or book for technical and programming with a minimal theme project using HTML, CSS, JS.</span>
</li>
<li>
<a href="https://github.com/BaseMax/PikachuPixelCSS" alt="PikachuPixelCSS">PikachuPixelCSS</a>:
<span>Trying to create pixel art Pikachu in pure CSS. (Not SCSS, Without JS)</span>
</li>
<li>
<a href="https://github.com/BaseMax/SmartLoading" alt="SmartLoading">SmartLoading</a>:
<span>A progress bar(loading) example that runs from 0 to 100.</span>
</li>
<li>
<a href="https://github.com/BaseMax/TaxiBookingMap" alt="TaxiBookingMap">TaxiBookingMap</a>:
<span>A web page for booking a taxi with some feature to convert address to latitude and longitude to display the route on the map.</span>
</li>
<li>
<a href="https://github.com/BaseMax/TaxiMapBooking" alt="TaxiMapBooking">TaxiMapBooking</a>:
<span>A web page for booking a taxi with some feature to display the route on the map with ability to setup waypoints.</span>
</li>
<li>
<a href="https://github.com/BaseMax/TelegramJavascriptContest" alt="TelegramJavascriptContest">TelegramJavascriptContest</a>:
<span>A mirror for Telegram Javascript Contest Stage 1.</span>
</li>
<li>
<a href="https://github.com/BaseMax/TextAnalyzerJS" alt="TextAnalyzerJS">TextAnalyzerJS</a>:
<span>A online and web-based tool to analyze the words of an input string.</span>
</li>
<li>
<a href="https://github.com/BaseMax/TrigonometricFunctions" alt="TrigonometricFunctions">TrigonometricFunctions</a>:
<span>Analysis and thinking about trigonometry functions and how they work.</span>
</li>
<li>
<a href="https://github.com/BaseMax/WebFindAPK" alt="WebFindAPK">WebFindAPK</a>:
<span>A sample bootstrap template for a android store website.</span>
</li>
<li>
<a href="https://github.com/BaseMax/WebMessengerTheme" alt="WebMessengerTheme">WebMessengerTheme</a>:
<span>A web template for messenger based on HTML,CSS.</span>
</li>
</ul>
<b>Assembly</b>
<ul>
<li>
<a href="https://github.com/BaseMax/Assembly8086-8088" alt="Assembly8086-8088">Assembly8086-8088</a>:
<span>Assembly Project compatible with 8086/8088 microprocessor.</span>
</li>
<li>
<a href="https://github.com/BaseMax/AssemblyX86" alt="AssemblyX86">AssemblyX86</a>:
<span>Tiny programs using Assembly based on X86.</span>
</li>
<li>
<a href="https://github.com/BaseMax/CNOL" alt="CNOL">CNOL</a>:
<span>A new C standard library implementation intended for use on embedded systems. (SOON)</span>
</li>
<li>
<a href="https://github.com/BaseMax/TinyCalculatorAssembly" alt="TinyCalculatorAssembly">TinyCalculatorAssembly</a>:
<span>Tiny Calculator with support of +, -, *, /...</span>
</li>
</ul>
<b>other</b>
<ul>
<li>
<a href="https://github.com/BaseMax/AwesomeCompiler" alt="AwesomeCompiler">AwesomeCompiler</a>:
<span>The Big list of the github, open-source compilers.</span>
</li>
<li>
<a href="https://github.com/BaseMax/AwesomeCryptocurrency" alt="AwesomeCryptocurrency">AwesomeCryptocurrency</a>:
<span>Awesome/Repo List of the cryptocurrencies in the github.</span>
</li>
<li>
<a href="https://github.com/BaseMax/AwesomeInterpreter" alt="AwesomeInterpreter">AwesomeInterpreter</a>:
<span>The Big list of the github, open-source interpreters.</span>
</li>
<li>
<a href="https://github.com/BaseMax/AwesomeMoneroBase" alt="AwesomeMoneroBase">AwesomeMoneroBase</a>:
<span>Awesome/Fork List of monero base projects in the github.</span>
</li>
<li>
<a href="https://github.com/BaseMax/BaseMax" alt="BaseMax">BaseMax</a>:
<span>Max Base: A repository in GitHub for testing to display a box at main page of Profile.</span>
</li>
<li>
<a href="https://github.com/BaseMax/CodingBootcampJS" alt="CodingBootcampJS">CodingBootcampJS</a>:
<span>Our Coding BootCamp JavaScript 2020 (10 days)</span>
</li>
<li>
<a href="https://github.com/BaseMax/CPP4Beginners" alt="CPP4Beginners">CPP4Beginners</a>:
<span> List of site references and useful sources for beginners of c++ programming language. </span>
</li>
<li>
<a href="https://github.com/BaseMax/FirstMaple" alt="FirstMaple">FirstMaple</a>:
<span>A repository to begin learning programming with Maple.</span>
</li>
<li>
<a href="https://github.com/BaseMax/FirstWebAssembly" alt="FirstWebAssembly">FirstWebAssembly</a>:
<span>Getting Started With WebAssembly technology.</span>
</li>
<li>
<a href="https://github.com/BaseMax/GAPBeginner" alt="GAPBeginner">GAPBeginner</a>:
<span>A repository to introduce GAP system for beginners.</span>
</li>
<li>
<a href="https://github.com/BaseMax/GitHubMirror" alt="GitHubMirror">GitHubMirror</a>:
<span>GitHubMirrorList: List of mirrors of GitHub.</span>
</li>
<li>
<a href="https://github.com/BaseMax/MathematicalProposition" alt="MathematicalProposition">MathematicalProposition</a>:
<span>Examines and analyzes mathematical propositions.</span>
</li>
<li>
<a href="https://github.com/BaseMax/MaxYoutube" alt="MaxYoutube">MaxYoutube</a>:
<span>Max Base: A repository for Max Base Youtube Channel.</span>
</li>
<li>
<a href="https://github.com/BaseMax/PantelMessenger" alt="PantelMessenger">PantelMessenger</a>:
<span>The Demo of Pantel Messenger for global connection.</span>
</li>
<li>
<a href="https://github.com/BaseMax/phpMusselBook" alt="phpMusselBook">phpMusselBook</a>:
<span>Documentation for phpMussel.</span>
</li>
<li>
<a href="https://github.com/BaseMax/ReactCalculator" alt="ReactCalculator">ReactCalculator</a>:
<span>The calculator project for parse the values with general operators. (Soon)</span>
</li>
<li>
<a href="https://github.com/BaseMax/SubmatricesCountMath" alt="SubmatricesCountMath">SubmatricesCountMath</a>:
<span>Research: The submatrices character count problem: an efficient solution using separable values.</span>
</li>
</ul>
<b>C++</b>
<ul>
<li>
<a href="https://github.com/BaseMax/BankCustomerCpp" alt="BankCustomerCpp">BankCustomerCpp</a>:
<span>Prepare a easy test and practice for university students C++</span>
</li>
<li>
<a href="https://github.com/BaseMax/BankSystemCLI" alt="BankSystemCLI">BankSystemCLI</a>:
<span>A tiny and CLI program for Bank system with 2 different user access using C.</span>
</li>
<li>
<a href="https://github.com/BaseMax/BoostAsioChat" alt="BoostAsioChat">BoostAsioChat</a>:
<span>Simple Chat Application using Boost Asio, based on Cpp.</span>
</li>
<li>
<a href="https://github.com/BaseMax/CalculatorPolynomial" alt="CalculatorPolynomial">CalculatorPolynomial</a>:
<span>Tiny program as a calculator for the math expression based on regular expression.</span>
</li>
<li>
<a href="https://github.com/BaseMax/CheckNumber" alt="CheckNumber">CheckNumber</a>:
<span>Check the number and calculate the gcd and lcm and perfect.</span>
</li>
<li>
<a href="https://github.com/BaseMax/CheckReverseString" alt="CheckReverseString">CheckReverseString</a>:
<span>Tiny Program to check the reverse of the string using C/C++.</span>
</li>
<li>
<a href="https://github.com/BaseMax/CombiningElements" alt="CombiningElements">CombiningElements</a>:
<span>Tiny program to display all of the element combinations.</span>
</li>
<li>
<a href="https://github.com/BaseMax/CppFileUse" alt="CppFileUse">CppFileUse</a>:
<span>Sample project for working with the file in cpp with add, search, delete, edit.</span>
</li>
<li>
<a href="https://github.com/BaseMax/EducationGame" alt="EducationGame">EducationGame</a>:
<span>A sample game based on CLI cpp for a education person.</span>
</li>
<li>
<a href="https://github.com/BaseMax/FirstMysqlUDF" alt="FirstMysqlUDF">FirstMysqlUDF</a>:
<span>Sample repository to extend MySQL server by develop additional function. (Mysql UDF)</span>
</li>
<li>
<a href="https://github.com/BaseMax/JalaliCalendarChecker" alt="JalaliCalendarChecker">JalaliCalendarChecker</a>:
<span>Tiny function to check the jalali calendar.</span>
</li>
<li>
<a href="https://github.com/BaseMax/MatrixFunction" alt="MatrixFunction">MatrixFunction</a>:
<span>The Cramer, Determinant, Coefficient, Multiplication for the matrix.</span>
</li>
<li>
<a href="https://github.com/BaseMax/MDPlus" alt="MDPlus">MDPlus</a>:
<span>A Markdown Editor with some new feature to support RTL languages.</span>
</li>
<li>
<a href="https://github.com/BaseMax/MinesweeperCLI" alt="MinesweeperCLI">MinesweeperCLI</a>:
<span>Simple minesweeper game developed using C++ in the CLI mode. (Soon)</span>
</li>
<li>
<a href="https://github.com/BaseMax/N-QueenGenetic" alt="N-QueenGenetic">N-QueenGenetic</a>:
<span>Solving N-Queen problem using Genetic Algorithm.</span>
</li>
<li>
<a href="https://github.com/BaseMax/OmbreOld" alt="OmbreOld">OmbreOld</a>:
<span>Ombre - Digital Cash For High-Confidential Transactions</span>
</li>
<li>
<a href="https://github.com/BaseMax/PopularQuestions" alt="PopularQuestions">PopularQuestions</a>:
<span>Some popular questions in programming field for teacher.</span>
</li>
<li>
<a href="https://github.com/BaseMax/PowerHash" alt="PowerHash">PowerHash</a>:
<span>Design and development Crypto algorithms.</span>
</li>
<li>
<a href="https://github.com/BaseMax/simple-jit-compiler" alt="simple-jit-compiler">simple-jit-compiler</a>:
<span>This project is designed to illustrate the mechanism used in JIT compilers development.</span>
</li>
<li>
<a href="https://github.com/BaseMax/SquareRoot" alt="SquareRoot">SquareRoot</a>:
<span>Own function to calc the square root of a number.</span>
</li>
<li>
<a href="https://github.com/BaseMax/TinyCalculator" alt="TinyCalculator">TinyCalculator</a>:
<span>Tiny Calculator with support of +, -, *, /, ^, sin, cos, tan...</span>
</li>
</ul>
<b>Python</b>
<ul>
<li>
<a href="https://github.com/BaseMax/BinaryTreeDiagram" alt="BinaryTreeDiagram">BinaryTreeDiagram</a>:
<span>A software to analyze a octal number and generate formula to produce graph. (Phd Project in mathematics field, Article)</span>
</li>
<li>
<a href="https://github.com/BaseMax/BinaryTreeDiagramDrawing" alt="BinaryTreeDiagramDrawing">BinaryTreeDiagramDrawing</a>:
<span>A software to analyze a octal number and generate formula to produce graph. (Phd Project in mathematics field, Article)</span>
</li>
<li>
<a href="https://github.com/BaseMax/CFG2CNF" alt="CFG2CNF">CFG2CNF</a>:
<span>Python program to convert a Context Free Grammar to Chomsky Normal Form.</span>
</li>
<li>
<a href="https://github.com/BaseMax/ColorConvertPy" alt="ColorConvertPy">ColorConvertPy</a>:
<span>Tiny library to convert various colored units. (rgb, hex)</span>
</li>
<li>
<a href="https://github.com/BaseMax/ContestQuestions" alt="ContestQuestions">ContestQuestions</a>:
<span>Archive of my programs code for contest questions.</span>
</li>
<li>
<a href="https://github.com/BaseMax/DotWhitespace" alt="DotWhitespace">DotWhitespace</a>:
<span>DotWhitespace is an esoteric programming language using Python.</span>
</li>
<li>
<a href="https://github.com/BaseMax/EmailAddressScanner" alt="EmailAddressScanner">EmailAddressScanner</a>:
<span>Email Address Scanner is a free and useful service to detect email address then really exists or not.</span>
</li>
<li>
<a href="https://github.com/BaseMax/FirstSelenium" alt="FirstSelenium">FirstSelenium</a>:
<span>Some sample codes for using selenium in Python just for fun.</span>
</li>
<li>
<a href="https://github.com/BaseMax/FlaskSample" alt="FlaskSample">FlaskSample</a>:
<span>A sample project based on python and flask.</span>
</li>
<li>
<a href="https://github.com/BaseMax/GithubAnalyze" alt="GithubAnalyze">GithubAnalyze</a>:
<span>Analyze and use the Github API with some tiny example.</span>
</li>
<li>
<a href="https://github.com/BaseMax/GoogleSearch" alt="GoogleSearch">GoogleSearch</a>:
<span>Search in the google and parse the results using python.</span>
</li>
<li>
<a href="https://github.com/BaseMax/ImageRecognition" alt="ImageRecognition">ImageRecognition</a>:
<span>Recognition of the images includes train and tests based on Python.</span>
</li>
<li>
<a href="https://github.com/BaseMax/ImageRecognitionAI" alt="ImageRecognitionAI">ImageRecognitionAI</a>:
<span>Recognition of the images with artificial intelligence includes train and tests based on Python.</span>
</li>
<li>
<a href="https://github.com/BaseMax/InternGoogleInterview" alt="InternGoogleInterview">InternGoogleInterview</a>:
<span>Google Interview Experience (For Software Engineering Intern)</span>
</li>
<li>
<a href="https://github.com/BaseMax/InterviewFAANG" alt="InterviewFAANG">InterviewFAANG</a>:
<span>Solving Facebook interview questions.</span>
</li>
<li>
<a href="https://github.com/BaseMax/LinkShortener" alt="LinkShortener">LinkShortener</a>:
<span>Link Shortener is a free and useful service to create a short link then redirect to other links.</span>
</li>
<li>
<a href="https://github.com/BaseMax/mathematical-imaging-vision" alt="mathematical-imaging-vision">mathematical-imaging-vision</a>:
<span>python mathematical imaging vision</span>
</li>
<li>
<a href="https://github.com/BaseMax/MiniCalculatorInterpreter" alt="MiniCalculatorInterpreter">MiniCalculatorInterpreter</a>:
<span>Tiny calculator interpreter with supporting Mathematical functions using Python.</span>
</li>
<li>
<a href="https://github.com/BaseMax/MongoDbPython" alt="MongoDbPython">MongoDbPython</a>:
<span>Sample python script to connect mongo database.</span>
</li>
<li>
<a href="https://github.com/BaseMax/PythonDataExcelReader" alt="PythonDataExcelReader">PythonDataExcelReader</a>:
<span>Just a tiny program to read Excel rows as array in Python and write into JSON format.</span>
</li>
<li>
<a href="https://github.com/BaseMax/PyTreeView" alt="PyTreeView">PyTreeView</a>:
<span>pyTree is a python class and library to display Tree (Tree View) from array, object, or JSON.</span>
</li>
<li>
<a href="https://github.com/BaseMax/RamseyNumberGraph" alt="RamseyNumberGraph">RamseyNumberGraph</a>:
<span>The research about Ramsey Number based on Python.</span>
</li>
<li>
<a href="https://github.com/BaseMax/RedditBot" alt="RedditBot">RedditBot</a>:
<span>Automation bot to sign in to Reddit.com website using python selenium.</span>
</li>
<li>
<a href="https://github.com/BaseMax/SimpleDjangoSignals" alt="SimpleDjangoSignals">SimpleDjangoSignals</a>:
<span>Sample repository to lean Django Signals in small script Using Python.</span>
</li>
<li>
<a href="https://github.com/BaseMax/StackoverflowCrawler" alt="StackoverflowCrawler">StackoverflowCrawler</a>:
<span>A web crawler which crawls the stackoverflow website.</span>
</li>
<li>
<a href="https://github.com/BaseMax/TelegramClientMTProto" alt="TelegramClientMTProto">TelegramClientMTProto</a>:
<span>A tiny smart bot to reply my new messages in the telegram.</span>
</li>
<li>
<a href="https://github.com/BaseMax/TwitterBotCrawler" alt="TwitterBotCrawler">TwitterBotCrawler</a>:
<span>A bot to login in Twitter and process page with selenium using Python.</span>
</li>
</ul>
<b>C</b>
<ul>
<li>
<a href="https://github.com/BaseMax/CalendarLibrary" alt="CalendarLibrary">CalendarLibrary</a>:
<span>The powerful library for display and convert calendar and handle the date units. (Soon)</span>
</li>
<li>
<a href="https://github.com/BaseMax/CAPIs" alt="CAPIs">CAPIs</a>:
<span>A sample and tiny RESTful API based on C programming and a fastcgi library.</span>
</li>
<li>
<a href="https://github.com/BaseMax/ColorizeText" alt="ColorizeText">ColorizeText</a>:
<span>Some ways for colorizing the text in different operating system.</span>
</li>
<li>
<a href="https://github.com/BaseMax/compiler-university-project" alt="compiler-university-project">compiler-university-project</a>:
<span>Implement an university compiler using Flex, Bison in the C programming language</span>
</li>
<li>
<a href="https://github.com/BaseMax/ConvertCalendar" alt="ConvertCalendar">ConvertCalendar</a>:
<span>A tiny and powerful library for converting calendar date units. (gregorian, jalali)</span>
</li>
<li>
<a href="https://github.com/BaseMax/cUrlC" alt="cUrlC">cUrlC</a>:
<span>Sample cUrl program to send request and recive response using C.</span>
</li>
<li>
<a href="https://github.com/BaseMax/dcat" alt="dcat">dcat</a>:
<span>Implementation cat unix tools using pure C programming language. cat is a standard Unix utility that reads files sequentially, writing them to standard output. (cat: concatenate files)</span>
</li>
<li>
<a href="https://github.com/BaseMax/DecodeQueryStringC" alt="DecodeQueryStringC">DecodeQueryStringC</a>:
<span>A tiny library for decode value of the query string using c with utf8 support and html entities.</span>
</li>
<li>
<a href="https://github.com/BaseMax/FirstSFML" alt="FirstSFML">FirstSFML</a>:
<span>Begin point and getting start to SFML using CPP.</span>
</li>
<li>
<a href="https://github.com/BaseMax/Gic" alt="Gic">Gic</a>:
<span>Git Control , Management the repositories easily in our directory. (SOON)</span>
</li>
<li>
<a href="https://github.com/BaseMax/GuessPasswordC" alt="GuessPasswordC">GuessPasswordC</a>:
<span>A small program to guess password for some crackers who want to enjoy by trying...</span>
</li>
<li>
<a href="https://github.com/BaseMax/HashMapC" alt="HashMapC">HashMapC</a>:
<span>A tiny library for using easily HashMap, arraylist in the C.</span>
</li>
<li>
<a href="https://github.com/BaseMax/HEXVE" alt="HEXVE">HEXVE</a>:
<span>Display and check the Hex Codes of the file(s). (SOON)</span>
</li>
<li>
<a href="https://github.com/BaseMax/jdate" alt="jdate">jdate</a>:
<span>A free software for Jalali and shamsi date to get current date in jalali calendar.</span>
</li>
<li>
<a href="https://github.com/BaseMax/MongoCSample" alt="MongoCSample">MongoCSample</a>:
<span>Sample code for connecting to the MongoDB.</span>