-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1167 lines (1091 loc) · 37.6 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Max Base - Asrez</title>
<meta name="description" content="Asrez Team includes the Max Base, Seyyed Ali Mohammadiye - A compiler engineer, low-level developer and full-stack programmer in the world like others. I love all of the computer scientists and researchers.">
<meta name="keywords" content="Max Base, Seyyed Ali Mohammadiye, One Programming Language, Compiler, Researcher, Max, Ali Mohammadie, Ali Mohammadi, Jas">
<meta name="author" content="Max Base">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> -->
<!-- <link href="//fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css"> -->
<link href="static/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<header class="header">
<nav class="nav">
<li class="bold">
<a href="">
Asrez
</a>
</li>
<!--
<li>
<a href="">
Services
</a>
</li>
-->
<li>
<a href="https://github.com/BaseMax">
Github
</a>
</li>
<li>
<a href="mailto:[email protected]">
Contact
</a>
</li>
<li>
<a href="https://github.com/one-language">
One Programming Language
</a>
</li>
</nav>
</header>
<div class="container container-main">
<div class="row">
<div class="column profile">
<div class="padding">
<div class="account">
<img class="avatar" src="static/profile.jpg">
<h1>Max Base</h1>
<!-- <h1>Seyyed Ali Mohammadiye</h1> -->
<!-- <h1 style="margin-top:0px;font-size:8px;">Seyyed Ali Mohammadiye</h1> -->
<h2>Programmer, Director of Research</h2>
<!-- <h2>Research lover and Programmer</h2> -->
</div>
<div class="clear"></div>
<b class="title">A little about me</b>
<p class="text">
I am a compiler engineer (Programming language developer), full-stack programmer, and low-level developer in the world like others. I love all of the computer scientists.
</p>
</div>
</div>
<div class="column blog">
<div class="padding">
<b class="title">
Blog
</b>
<ul class="list">
<li>
<!-- <span class="date">Feb 7, 2019</span>, -->
<a href="https://basemax.github.io/2019/05/12/Cooperation-Bank-Project-Artificial-Intelligence.html">
[May 12, 2019] Cooperation in a Bank Project - Artificial Intelligence
</a>
</li>
<li>
<!-- <span class="date">Feb 7, 2019</span>, -->
<a href="https://basemax.github.io/2019/05/02/Ubuntu-19-04.html">
[May 2, 2019] Release Ubuntu 19.04 (Disco Dingo)
</a>
</li>
<li>
<!-- <span class="date">Feb 7, 2019</span>, -->
<a href="https://basemax.github.io/2019/04/29/IBM-Buying-Red-Hat.html">
[Apr 29, 2019] IBM Began Buying Red Hat
</a>
</li>
<li>
<!-- <span class="date">Feb 7, 2019</span>, -->
<a href="https://basemax.github.io/2019/04/06/New-research-project-at-the-Nvidia.html">
[Apr 6, 2019] New research project at the Nvidia
</a>
</li>
<li>
<!-- <span class="date">Feb 7, 2019</span>, -->
<a href="https://basemax.github.io/2019/04/05/programming-48-inch-monitor.html">
[Apr 5, 2019] The programming experience with a powerful system on the 48-inch monitor.
</a>
</li>
<li>
<!-- <span class="date">Feb 7, 2019</span>, -->
<a href="https://basemax.github.io/2019/03/27/Move-the-blog-to-the-new-site-and-server.html">
[Mar 27, 2019] Move the blog to the new site and server
</a>
</li>
<li>
<!-- <span class="date">Feb 7, 2019</span>, -->
<a href="https://basemax.github.io/2019/03/19/End-Life-Python-2.7.html">
[Mar 19, 2019] End Of Life date for Python 2.7
</a>
</li>
<li>
<a href="https://basemax.github.io/2019/03/03/Windows10-Calculator.html">
[Mar 3, 2019] How does the Windows 10 operating system calculator work?
</a>
</li>
<li>
<a href="https://basemax.github.io/2019/02/25/Speech-at-a-seminar-and-conference-about-Rust-Programming-language.html">
[Feb 25, 2019] Speech at a seminar and conference about Rust Programming language
</a>
</li>
<li>
<a href="https://basemax.github.io/2019/02/23/Attend-the-Linux-User-Group-LUG-in-2019-02.html">
[Feb 23, 2019] Attend the Linux User Group (LUG) in 2019-02
</a>
</li>
<li>
<a href="https://basemax.github.io/2019/02/22/Implementing-a-Web-site-with-specific-technologies.html">
[Feb 22, 2019] Implementing a Web site with specific technologies
</a>
</li>
<li>
<a href="https://basemax.github.io/2019/02/21/Ancient-ideas-and-thoughts-of-the-ET-programming-language.html">
[Feb 21, 2019] Ancient ideas and thoughts of the ET Programming Language
</a>
</li>
<li>
<a href="https://basemax.github.io/2019/02/20/BSD-can-development-ET-language.html">
[Feb 20, 2019] Beginning of BSD can have an impact on the development of ET language?
</a>
</li>
<li>
<a href="https://basemax.github.io/2019/02/08/ET-Operator-Precedence.html">
[Feb 8, 2019] ET Operator Precedence
</a>
</li>
<li>
<a href="https://basemax.github.io/2019/02/07/Some-University-Professors.html">
[Feb 7, 2019] Some University professors
</a>
</li>
<li>
<a href="https://basemax.github.io/2019/02/04/Part3-Answer-Make-the-picture-more-natural.html">
[Feb 4, 2019] Part3 Answer about making the picture more natural.
</a>
</li>
<li>
<a href="https://basemax.github.io/2019/02/02/Part3-Question-Make-the-picture-more-natural.html">
[Feb 2, 2019] Part3 Questions about making the picture more natural.
</a>
</li>
<li>
<a href="https://basemax.github.io/2019/01/31/Part2-Question-Make-the-picture-more-natural.html">
[Jan 31, 2019] Part2 Questions about making the picture more natural.
</a>
</li>
<li>
<a href="https://basemax.github.io/2019/01/31/Part2-Answer-Make-the-picture-more-natural.html">
[Jan 31, 2019] Part2 Answer about making the picture more natural.
</a>
</li>
<li>
<a href="https://basemax.github.io/2019/01/31/Part1-Question-Make-the-picture-more-natural.html">
[Jan 31, 2019] Part1 Questions about making the picture more natural.
</a>
</li>
<li>
<a href="https://basemax.github.io/2019/01/31/Part1-Answer-Make-the-picture-more-natural.html">
[Jan 31, 2019] Part1 Answer about making the picture more natural.
</a>
</li>
<li>
<a href="https://basemax.github.io/2019/01/27/Example-code-ET-programming-language.html">
[Jan 27, 2019] A few examples of the proposed code in ET programming language
</a>
</li>
<li>
<a href="https://basemax.github.io/2019/01/24/Type-Casting.In-ET.html">
[Jan 24, 2019] Type Casting in ET Programming Language
</a>
</li>
<li>
<a href="https://basemax.github.io/2019/01/23/Will-I-go-to-the-Google.html">
[Jan 23, 2019] Will I go to the Google Co?
</a>
</li>
<li>
<a href="https://basemax.github.io/2019/01/22/What-is-the-LMPHP.html">
[Jan 22, 2019] What is the LMPHP?
</a>
</li>
<li>
<a href="https://basemax.github.io/2019/01/22/News-ET-system-programming-language.html">
[Jan 22, 2019] What news from of the ET System Programming Language?
</a>
</li>
<li>
<a href="https://basemax.github.io/2012/04/20/Hello.html">
[Apr 20, 2012] Hello World!
</a>
</li>
</ul>
</div>
</div>
<div class="column blog">
<div class="padding">
<b class="title">
Books
</b>
<ul class="list">
<li>
<!-- <span class="date">Feb 7, 2019</span>, -->
<a href="https://github.com/One-Language/Book">
[Book][Soon] One Programming Language.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/phpMusselBook/raw/master/phpMussel.pdf">
[Book][Published] The Documentation for phpMussel.
</a>
</li>
<li>
<!-- <a href="https://github.com/BaseMax/"> -->
[Book][Soon] Tutorial the Gap system.
<!-- </a> -->
</li>
</ul>
</div>
</div>
<div class="column blog">
<div class="padding">
<b class="title">
Articles
</b>
<br><br>
<p>
It will complete as soon.
</p>
<ul class="list">
<li>
<a href="https://github.com/BaseMax/MatrixResearch">
[Article][Published] Take a deep look at complex numbers.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/TrigonometricFunctions">
[Article][Not published] Sine trigonometric function analysis.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/TDesign-Math">
[Article][Not published][Soon] A recursive construction for arbitrary t.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/RamseyNumber">
[Article][Not published][Soon] New ramsey number.
</a>
</li>
</ul>
</div>
</div>
<div class="column blog">
<div class="padding">
<b class="title">
Lectures / Conferences
</b>
<ul class="list">
<li>
<!-- <span class="date">Feb 7, 2019</span>, -->
<!-- <a href=""> -->
[2019, Feb 25][Lecture] Rust Programming language
<!-- </a> -->
</li>
<li>
<!-- <a href=""> -->
[2019-02][Group] Linux User Group (LUG) Part1
<!-- </a> -->
</li>
<li>
<!-- <a href=""> -->
[2019-03][Group] Linux User Group (LUG) Part2, Hackfests
<!-- </a> -->
</li>
<li>
<a href="https://github.com/One-Language/Presentation/tree/master/2019-07-07-conference">
[2019-07-07][Conference] ET Programming Language
</a>
</li>
</ul>
</div>
</div>
<div class="column blog">
<div class="padding">
<b class="title">
Tournaments / Medals / Awards
</b>
<br><br>
<p>
It will complete as soon.
</p>
</div>
</div>
<div class="column blog">
<div class="padding">
<b class="title">
Notable Open Source Projects
</b>
<ul class="list">
<li>
[2018] JPOPHP: JSON Parser Object PHP is a library for parsing the data in JSON format.
<a href="https://github.com/BaseMax/JPOPHP">Github</a>,
<a href="https://packagist.org/packages/basemax/jpophp">Packagist</a>,
<a href="https://www.phpclasses.org/package/11110-PHP-Encode-and-decode-data-in-JSON-format.html">PHP Classes</a>,
<!-- <a href="https://en.wikipedia.org/wiki/PHP_JSON_Parser">Wikipedia</a>, -->
<a href="https://www.phpclasses.org/winners/year/2019/">Winners</a>,
<a href="https://www.phpclasses.org/blog/post/813-Notable-PHP-package-PHP-JSON-Parser-Class.html">PHP Classes Blog</a>
</li>
<li>
[2018] LMPHP: Language management PHP is a library for language management and multi-language support in the PHP-based application backends.
<a href="https://github.com/BaseMax/LMPHP">Github</a>,
<a href="https://packagist.org/packages/basemax/lmphp">Packagist</a>,
<a href="https://www.phpclasses.org/package/11046-PHP-Support-to-multiple-languages-to-PHP-applications.html">PHP Classes</a>,
<!-- <a href="https://en.wikipedia.org/wiki/LMPHP">Wikipedia</a> -->
</li>
<li>
[2019] PHPAS: PHP Auto Style is a tool for format and beautify the style of PHP code with my style.
<a href="https://github.com/BaseMax/PHPAS">Github</a>,
<a href="https://packagist.org/packages/basemax/phpas">Packagist</a>,
<a href="https://www.phpclasses.org/package/11216-PHP-Beautify-PHP-source-code-fixing-its-style.html"></a>
</li>
<li>
[2018] FilterInputJs: Tiny and Powerful Library for limit an entry (text box,input) as number,string or more...
<a href="https://github.com/BaseMax/FilterInputJs">Github</a>,
<a href="https://www.npmjs.com/package/filterinput">NPM Js</a>
</li>
<li>
[2018] GoScrollJs: Tiny and Powerful Library for change place of the scroll and focus on element.
<a href="https://github.com/BaseMax/GoScrollJs">Github</a>,
</li>
<li>
Some other... (You can check my repositories)
</li>
</ul>
</div>
</div>
<div class="column blog">
<div class="padding">
<b class="title">
Persian Blog
</b>
<br><br>
<p>
It will complete as soon.
</p>
</div>
</div>
<div class="column blog">
<div class="padding">
<b class="title">
Team members and friends
</b>
<ul class="list">
<li>
<!-- <span class="date">Feb 7, 2019</span>, -->
<!-- <a href=""> -->
[Jas] Marketing specialist and professional advertising.
<!-- </a> -->
</li>
<li>
<!-- <a href=""> -->
[Stephin] Back End Software Engineer.
<!-- </a> -->
</li>
<li>
<!-- <a href=""> -->
[Ajeesh] Web developer.
<!-- </a> -->
</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="column blog">
<div class="padding">
<b class="title">
Contact Information
</b>
<p class="text">
Max Base
<br>
Email: <a href="mailto:[email protected]" class="link">[email protected]</a>, <a href="mailto:[email protected]" class="link">[email protected]</a> + Other members
<br>
<a href="https://github.com/BaseMax">Github</a>,
<a href="https://www.linkedin.com/in/basemax/">LinkedIn</a>,
<a href="https://www.instagram.com/max.base/">Instagram</a>,
<a href="https://twitter.com/MaxProgram">Twitter</a>,
<a href="https://stackoverflow.com/users/10096230/max-base">Stackoverflow</a>,
<a href="https://www.phpclasses.org/browse/author/1515828.html">PHP Classes</a>,
<a href="https://www.npmjs.com/~basemax">NpmJs</a>,
<a href="https://packagist.org/users/BaseMax/packages/">Packagist</a>,
<a href="https://www.youtube.com/channel/UCvot9gY0qHT_L6ivS_Uh9GQ">Youtube</a>,
<a href="https://www.slideshare.net/MaxBase1/">SlideShare</a>
</p>
</div>
</div>
<!--
<div class="column blog">
<div class="padding">
<b class="title">
Free Services on Asrez
</b>
<ul class="list">
<li>
<a href="link/">
[Site] Link Shortener
</a>
</li>
<li>
<a href="scanmail/">
[Site] Email address scanner
</a>
</li>
</ul>
</div>
</div>
-->
<div class="column blog">
<div class="padding">
<b class="title">
Open Source Projects
</b>
<ul class="list">
<li>
<a href="https://github.com/BaseMax/String2CString">
[2019-07] A tiny program to convert a file contents to C string with supporting multi-lines...
</a>
</li>
<li>
<a href="https://github.com/BaseMax/StackoverflowCrawler">
[2019-07] A web crawler which crawls the stackoverflow website.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/MDPlus">
[2019-07] A Markdown Editor with some new feature to support RTL languages.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/CaptchaSolver">
[2019-08] A tiny program to solve the thousand captcha image for testing the quality of the OCR. (Optical character recognition)
</a>
</li>
<li>
<a href="https://github.com/BaseMax/MyAddressGoogleMaps">
[2019-07] Get the string address of my current position (location) using google maps.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/GapPackage">
[2019-07] A sample package based on GAP.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/LimitLastLinePHP">
[2019-08-15] Some tiny script to limit and remove the last line from input string using PHP.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/TelegramEntitiesParser">
[2019-08] A program to parse and decode formatted part of the Telegram message text with UTF8 support.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/RamseyNumbers">
[2019-08] A research repository about the Ramsey numbers and explore the new data in the mathematics field to write an article using One Programming Language.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/AndroidWebView">
[2019-07] A tiny android application to display a special webpage in default.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/KashanUniversityFaculty">
[2019-08] List of the faculty members of the University of Kashan, IR.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/String2CString">
[2019] A tiny program to convert a file contents to C string with supporting multi-lines...
</a>
</li>
<li>
<a href="https://github.com/BaseMax/CAPIs">
[2019-08] A sample and tiny RESTful API based on C programming and a fastcgi library.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/PHPEDB">
[2019-07-10] PHP Easy DB (Database) is an easy library to manage and control the database.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/ImageRecognitionAI">
[2019-07-09] Recognition of the images with artificial intelligence includes train and tests based on Python.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/ImageRecognition">
[2019-07-06] Recognition of the images includes train and tests based on Python.
</a>
</li>
<li>
<!-- <a href="https://github.com/BaseMax/TaxiBookingMap"> -->
[2019-07-09] A web page for booking a taxi with some feature to convert address to latitude and longitude to display the route on the map.
<!-- </a> -->
</li>
<li>
<a href="https://github.com/BaseMax/OSDetect">
[2019-07-08] A tiny header file for detects the operating system in C based program.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/StockExchangeCrawler">
[2019-07-02] A crawler program to extract all of the data and the price for symbols in the global stock exchange.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/AwesomeMoneroBase">
[2019-07-01] Awesome/Fork List of monero base projects in the github.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/AwesomeCryptocurrency">
[2019-07-01] Awesome/Repo List of the cryptocurrencies in the github.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/CppFileUse">
[2019-06-26] Sample project for working with the file in cpp with add, search, delete, edit.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/BoostAsioChat">
[2019-06-12] MinesweeperCLI: Simple minesweeper game developed using C++ in the CLI mode. (Soon)
</a>
</li>
<li>
<a href="https://github.com/BaseMax/BoostAsioChat">
[2019-06-09] BoostAsioChat: Simple Chat Application using Boost Asio, based on Cpp.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/phpMusselBook">
[2019-06-08] phpMusselBook: Documentation for phpMussel.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/TestAVR">
[2019-05-31] TestAVR
</a>
</li>
<li>
<a href="https://github.com/BaseMax/PHPAS">
[2019-05-29] PHP Auto Style: A tool for format and beautify the style of PHP code with my style.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/NaliMail">
[2019-05-25] NaliMail is a free service to manage email web-based client.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/RookPolynomial">
[2019-05-25] Algorithm to solving the rook polynomial questions.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/CharPHP">
[2019-05-25] Useful functions for work with character, string in the PHP based application.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/NetPHP">
[2019-05-24] Useful functions for connecting to the network in the PHP based applications.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/CheckNumber">
[2019-] Check the number and calculate the gcd and lcm and perfect.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/SquareRoot">
[2019-] Own function to calc the square root of a number.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/PantelMessenger">
[2019-] The Demo of Pantel Messenger for global connection.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/SubmatricesCountMath">
[2019-] Research: The submatrices character count problem: an efficient solution using separable values.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/TDesign-Math">
[2019-] Research Simple t-designs: A recursive construction for arbitrary t.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/AssemblyX86">
[2019-] Tiny programs using Assembly based on X86.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/TinyCalculatorAssembly">
[2019-] Tiny Calculator with support of +, -, *, /...
</a>
</li>
<li>
<a href="https://github.com/BaseMax/CNOL">
[2019-] A new C standard library implementation intended for use on embedded systems. (SOON)
</a>
</li>
<li>
<a href="https://github.com/BaseMax/CustomWindowsFormElectron">
[2019-] Custom Windows Frame with toolbar based on the electron.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/ChessDesktopElectron">
[2019-] Chess game with two player based on electron. (SOON)
</a>
</li>
<li>
<a href="https://github.com/BaseMax/ChessWeb">
[2019-] Chess game with two player. (SOON)
</a>
</li>
<li>
<a href="https://github.com/BaseMax/FirstElectron">
[2019-] Begin point and Getting start of the electron using node js.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/TinyCalculator">
[2019-] Tiny Calculator with support of +, -, *, /, ^, sin, cos, tan...
</a>
</li>
<li>
<a href="https://github.com/BaseMax/OmitKeepLines">
[2019-] Keeping or removing some part of lines from a text with special attributes.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/SmartFilter">
[2019-] A Smart Filtering to keep and remove the character or words of the text. (SOON)
</a>
</li>
<li>
<a href="https://github.com/BaseMax/AwesomeInterpreter">
[2019-04-09] The Big list of the github, open-source interpreters.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/AwesomeCompilerInterpreter">
[2019-04-09] The Big list of the github, open-source compilers.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/TexSample">
[2019-04-09] A guide document with some example file for Tex, Latex.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/MatPHP">
[2019-04-08] The tiny library to calculating the matrices and operations. (Soon)
</a>
</li>
<li>
<a href="https://github.com/BaseMax/CalendarLibrary">
[2019-04-04] The powerful library for display and convert calendar and handle the date units. (Soon)
</a>
</li>
<li>
<a href="https://github.com/BaseMax/ConvertCalendar">
[2019-04-01] A tiny and powerful library for converting calendar date units. (gregorian, jalali)
</a>
</li>
<li>
<a href="https://github.com/BaseMax/JalaliCalendarChecker">
[2019-04-01] A tiny function to check the jalali calendar.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/EmailAddressScanner">
[2019-04-01] Email Address Scanner is a free and useful service to detect email address then really exists or not.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/LinkShortener">
[2018] Link Shortener is a free and useful service to create a short link then redirect to other links.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/TinyShell">
[2018] Tiny shell is a command-line interface (CLI) to execute commands in the system and to manage system. (SOON)
</a>
</li>
<li>
<a href="https://github.com/BaseMax/JsonParser">
[2018] Tiny Library for parse JSON.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/BaseMax.Github.io">
[2018] Max Base Personal Website.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/SecureRandStringC">
[2018] Tiny library for generate a secure random characters using C. (SOON)
</a>
</li>
<li>
<a href="https://github.com/BaseMax/DiskAnalyst">
[2018] Analyze, process and check the disk and files. (SOON)
</a>
</li>
<li>
<a href="https://github.com/BaseMax/PersepolisDM">
[2018] Persepolis Download Manager is a GUI for aria2.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/MatrixResearch">
[2018] New results from research on matrices.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/NumbersToWordsPHP">
[2018] Tiny library to convert numbers to words. (SOON)
</a>
</li>
<li>
<a href="https://github.com/BaseMax/GoScrollJs">
[2018] Tiny and Powerful Library for change place of the scroll and focus on element.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/FilterInputJs">
[2018] Tiny and Powerful Library for limit an entry (text box,input) as number,string or more...
</a>
</li>
<li>
<a href="https://github.com/BaseMax/TinyTimerJs">
[2018] Tiny and Powerful Library for show time counter.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/MathematicalProposition">
[2018] Examines and analyzes mathematical propositions.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/HashMapC">
[2018] A tiny library for using easily HashMap, arraylist in the C.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/DecodeQueryStringC">
[2018] A tiny library for decode value of the query string using c with utf8 support and html entities.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/TrigonometricFunctions">
[2018] Analysis and thinking about trigonometry functions and how they work.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/MongoCSample">
[2018] Sample code for connecting to the MongoDB.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/WebSinatra">
[2018] The Sample web project using ruby sinatra.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/RandStringC">
[2018] Tiny program for generate random characters using C.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/ResetCSS">
[2018] Reset CSS Stylesheet to reduce browser inconsistencies.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/BootstrapSample">
[2018] All sample codes for bootstrap library.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/LoadJs">
[2018] Tiny Library for import and load the javascript file(code).
</a>
</li>
<li>
<a href="https://github.com/BaseMax/FixLanguageTypeJs">
[2018] Tiny Library for fix problem of language selection in type text.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/ReactCalculator">
[2018] The calculator project for parse the values with general operators. (Soon)
</a>
</li>
<li>
<a href="https://github.com/BaseMax/PowerHash">
[2018] Design and development Crypto algorithms.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/LMPHP">
[2018] Multi-language management and support on the site.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/IrisWebGo">
[2018] Sample Website With Cookie, Database, Template View Using Go. (Soon)
</a>
</li>
<li>
<a href="https://github.com/BaseMax/OLEDB">
[2018] Simple and compact class library for working with the MS OLE Database.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/MathImprove">
[2018] Modify and Improve math expressions.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/MongoDbPython">
[2018] Sample python script to connect mongo database.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/PHPCodeOptimizer">
[2018] Optimize And Minify PHP Code.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/RunBenchmarkJs">
[2018] Tiny Library for benchmark javascript code.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/Gic">
[2018] Git Control , Management the repositories easily in our directory. (SOON)
</a>
</li>
<li>
<a href="https://github.com/BaseMax/CustomWebCheckbox">
[2018] An example of a make checkbox design on the web.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/CustomWebRadioButton">
[2018] An example of a make radio-button design on the web.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/SubscribeDialog">
[2018] Display the dialog for submit email.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/DisplayStructureElements">
[2018] Display the structure of the elements in web template.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/PlayPiano">
[2018] Implement and simulate piano on web page.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/RandomProxyRuby">
[2018] Tiny Library for get random proxy (free).
</a>
</li>
<li>
<a href="https://github.com/BaseMax/RandomProxyJs">
[2018] Tiny Library for get random proxy (free).
</a>
</li>
<li>
<a href="https://github.com/BaseMax/BrowserFeaturesJs">
[2018] Tiny Library for browser features detection.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/ChangeNumbersJs">
[2018] Tiny Library for change number from a language in other language.
</a>
</li>
<li>
<a href="https://github.com/BaseMax/CopyClipboardJs">
[2018] Tiny Library for copy text in clipboard.
</a>
</li>
</ul>
<hr>
<ul class="list">
<li>
<a href="https://github.com/BaseMax/tgl">
[2017] Telegram Library
</a>