forked from ring-lang/ring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresources.data
2092 lines (2089 loc) · 137 KB
/
resources.data
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
aResources = [ ["Samples",[
[
'<a href="https://github.com/CalmoSoft/CalmoSoft-Fifteen-Puzzle-Game/blob/gh-pages/CalmoSoftPuzzle.ring" target="_blank">CalmoSoft Fifteen Puzzle Game</a>',
'<img src="fifteen.jpg" width="40%">'
],
[
'<a href="https://github.com/AbdelrahmanGIT/RingSamples/blob/master/src/TecTacToe.ring" target="_blank">TicTacToe</a>',
'<img src="tictactoe.jpg" width="40%">'
],
[
'<a href="https://github.com/AbdelrahmanGIT/RingSamples/blob/master/src/ConvertNumbersToString.ring" target="_blank">Convert Numbers To String</a>',
'<img src="numtostr.jpg" width="40%">'
],
[
'<a href="https://github.com/MajdiSobain/RingAllegro_SquaresPuzzle" target="_blank">Squares Puzzle</a>',
'<img src="squarespuzzle.png" width="40%">'
],
[
'<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_StarsFighter_1.0_win32.zip/download" target="_blank">Stars Fighter Game</a>',
'<img src="starsfighter.png" width="40%">'
],
[
'<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_FlappyBird3000_1.0_win32.zip/download" target="_blank">Flappy Bird 3000 Game</a>',
'<img src="flappybird.png" width="40%">'
],
[
'<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_SuperMan2016_1.0_win32.zip/download" target="_blank">Super Man 2016 Game</a>',
'<img src="superman.png" width="40%">'
],
[
'<a href="https://github.com/ring-lang/ring/blob/master/applications/getquoteshistory/GetQuotesHistoryDraw-v1.0.ring" target="_blank">Fetch stock data from Yahoo and draw various types of charts</a>',
'<img src="GetQuoteCapture.jpg" width="40%">'
],
[
'<a href="https://github.com/ring-lang/ring/blob/master/applications/fifteenpuzzle/CalmoSoftFifteenPuzzleGame.ring" target="_blank">Fifteen Puzzle 2</a>',
'<img src="fifteen2.png" width="40%">'
],
[
'<a href="https://github.com/ring-lang/ring/blob/master/applications/analogclock/AnalogClock-Image.ring" target="_blank">Analog Clock</a>',
'<img src="analogclock.png" width="40%">'
]
]
],
["Posts from the 'Ring Documentation Walkthrough' blog",[
[
'<a href="https://ribdev.wordpress.com/2016/02/13/ring-programming-language-guide/" target="_blank">The Ring Programming Language Guide</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/01/28/ring-documentation-walkthrough-1/" target="_blank">Installation</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/01/28/ring-documentation-walkthrough-2-hello-world/" target="_blank">Hello, World!</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/01/29/ring-documentation-walkthrough-3-variables/" target="_blank">Variables & Comments</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/01/30/ring-documentation-walkthrough-4-operators/" target="_blank">Operators</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/01/30/ring-documentation-walkthrough-5-if-switch-statements/" target="_blank">If & Switch statements</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/01/31/ring-documentation-walkthrough-5-1-loops/" target="_blank">Loops</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/02/01/ring-documentation-walkthrough-5-2-short-circuit-evaluation/" target="_blank">Short-circuit evaluation</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/02/02/ring-documentation-walkthrough-5-3-inputs/" target="_blank">Inputs</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/02/03/ring-documentation-walkthrough-6-functions/" target="_blank">Functions</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/02/04/ring-documentation-walkthrough-7-lists/" target="_blank">Lists</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/02/09/ring-documentation-walkthrough-7-1-lists-2/" target="_blank">Lists (2)</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/02/11/ring-documentation-walkthrough-7-2-lists-3/" target="_blank">Lists (3)</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/02/12/ring-documentation-walkthrough-8-strings/" target="_blank">Strings</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/02/12/ring-documentation-walkthrough-8-1-str2list-list2str/" target="_blank">The str2list() & list2str() functions</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/02/12/ring-documentation-walkthrough-8-2-strcmp/" target="_blank">The strcmp() function</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/02/12/ring-documentation-walkthrough-8-3-substr/" target="_blank">The Substr() function</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/02/12/ring-documentation-walkthrough-9-date-and-time/" target="_blank">Date and Time</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/02/18/ring-documentation-walkthrough-10-check-data-types-1/" target="_blank">Check Data Types 1</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/02/18/ring-documentation-walkthrough-10-1-check-data-types-2/" target="_blank">Check Data Types 2</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/02/18/ring-documentation-walkthrough-10-2-conversions/" target="_blank">Conversions</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/02/20/ring-documentation-walkthrough-11-math/" target="_blank">Math</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/02/25/ring-documentation-walkthrough-12-files/" target="_blank">Files</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/03/14/ring-documentation-walkthrough-12-1-advanced-read-write-files/" target="_blank">Advanced Read & Write - Files</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/03/14/ring-documentation-walkthrough-13-system-functions/" target="_blank">System Functions</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/03/14/ring-documentation-walkthrough-14-final-eval-error-handling/" target="_blank">Eval and Error handling</a>'
],
[
'<a href="https://ribdev.wordpress.com/2016/03/14/ring-documentation-walkthrough-what-now/" target="_blank">What now ?</a>'
]
]
],
["Posts from the 'Geeks Board' blog",[
[
'<a href="https://geeksboard.wordpress.com/2016/01/31/helloworld-with-ring-in-linux/" target="_blank">HelloWorld with Ring in Linux</a>'
],
[
'<a href="https://geeksboard.wordpress.com/2016/02/01/deep-into-ring/" target="_blank">Deep into Ring (full-fill your list with even numbers)</a>'
]
]
],
["Posts from the 'Thinking in the Ring programming language' blog",[
[
'<a href="https://ringlang.wordpress.com/2016/01/29/printing-new-lines-and-other-characters-in-the-ring-programming-language/" target="_blank">Printing New Lines and other characters</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/01/29/comparing-between-strings-in-ring/" target="_blank">Comparing between strings</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/01/29/writing-the-split-functionmethod-in-the-ring-programming-language/" target="_blank">Writing the Split() function/method</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/01/29/why-we-dont-use-after-the-qapp-class-name-in-the-ring-programming-language/" target="_blank">Why we don’t use () after the qApp class name</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/01/29/ringqt-the-window-title-bar-is-going-outside-the-screen-the-problem-and-the-solution/" target="_blank">RingQt: The window title bar is going outside the screen – The Problem and the solution</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/01/29/list-of-the-ring-programming-language-keywords-and-functions/" target="_blank">List of the Ring programming language Keywords and Functions</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/01/30/inserting-an-item-into-the-first-position-of-the-list-using-the-ring-programming-language/" target="_blank">Inserting an item into the first position of the list</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/01/30/how-to-update-the-gui-from-threads-in-the-ring-programming-language/" target="_blank">How to update the GUI from threads</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/01/30/array-of-buttons-using-the-ring-programming-language/" target="_blank">Array of buttons</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/01/30/printing-lists-contains-objects-using-the-ring-programming-language/" target="_blank">Printing Lists contains objects</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/01/30/null-isnull-and-uninitialized-variables-in-the-ring-programming-language/" target="_blank">NULL, ISNULL() and uninitialized variables</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/01/31/using-step-with-for-in-and-modifying-lists/" target="_blank">Using Step with “For In” and modifying lists</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/01/31/nl-and-writing-the-print-function/" target="_blank">NL and writing the Print() function</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/01/31/closing-a-window-then-displaying-another-one/" target="_blank">Closing a window then displaying another one!</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/01/31/creating-a-modal-window/" target="_blank">Creating a Modal Window</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/02/01/using-the-copy-function-to-replicate-strings/" target="_blank">Using the Copy() Function to replicate Strings</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/02/03/functions-with-optional-parameters-using-list-with-string-index-in-the-ring-programming-langauge/" target="_blank">Functions with optional parameters using list with string index</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/02/03/writing-string-literal-quickly-using-the-operator-in-the-ring-programming-language/" target="_blank">Writing string literal quickly using the ‘:’ operator</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/02/05/eval-and-secuirty-how-to-disable-and-change-the-behaviour-of-standard-ring-functions/" target="_blank">Eval() and Secuirty – how to disable and change the behaviour of standard Ring functions</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/02/09/the-main-function-in-the-ring-programming-language/" target="_blank">The Main Function</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/02/09/the-getchar-function-in-the-ring-programming-language/" target="_blank">The GetChar() function</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/02/09/using-many-source-files-in-the-ring-programming-language/" target="_blank">Using many source files </a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/02/12/why-the-list-index-start-from-1-in-the-ring-programming-language/" target="_blank">Why the list index start from 1</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/02/12/the-output-of-the-strcmp-function-in-the-ring-programming-language/" target="_blank">The output of the StrCmp() function</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/02/13/the-philosophy-behind-data-types-in-ring/" target="_blank">The philosophy behind data types in Ring</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/02/13/a-difference-between-printing-new-line-with-lists-than-the-normal-behavior/" target="_blank">A difference between printing new line with lists than the normal behavior</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/02/14/listdictionary-print-keys-only-or-values-only-in-the-ring-programming-language/" target="_blank">List/Dictionary – Print keys only or values only</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/02/14/functions-predefined-parameters-or-optional-parameters-in-the-ring-programming-language/" target="_blank">Functions – Predefined parameters or optional parameters</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/03/12/get-the-current-source-file-path/" target="_blank">Get the current source file path</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/03/24/boolean-values/" target="_blank">Question about the Boolean Values representation</a>'
],
[
'<a href="https://ringlang.wordpress.com/2016/03/26/get-the-file-size-using-ftell-and-fseek-functions-in-the-ring-programming-language/" target="_blank">Get the file size using ftell() and fseek() functions</a>'
],
[
'<a href="https://ringlang.wordpress.com/2017/02/05/sample-in-the-ring-programming-language-add-button-after-drawing-the-button-region-using-the-mouse/" target="_blank">Add button after drawing the button region using the Mouse</a>'
]
]
],
["Posts from the 'Watany Dev' blog",[
[
'<a href="http://watanydev.blogspot.com.eg/2016/02/tutorial-how-to-configure-xampp-to.html" target="_blank">Tutorial: How to configure Xampp / Apache to serve Ring language files</a>'
]
]
],
["Posts from the 'Ring Programming For Arab' blog by 'Eng Sara H. Mohammed'",[
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/02/05/%D8%A3%D9%87%D9%84%D8%A7-%D8%A8%D9%83-%D9%81%D9%89-%D8%B9%D8%A7%D9%84%D9%85-%D8%A7%D9%84%D8%A8%D8%B1%D9%85%D8%AC%D8%A9-%D8%A8%D9%84%D8%BA%D8%A9-%D8%B1%D9%8A%D9%86%D8%AC-welcome-to-ring-programming/" target="_blank">Tutorial: Welcome to Ring Programming!</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/05/30/%d9%84%d8%ba%d8%a9-%d8%a7%d9%84%d8%a8%d8%b1%d9%85%d8%ac%d8%a9-%d8%b1%d9%8a%d9%86%d8%ac-ring3-1/" target="_blank">Tutorial: Ring 1.3</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/06/03/%d8%a7%d9%84%d8%b7%d8%a8%d8%a7%d8%b9%d8%a9-%d9%81%d9%8a-%d8%a7%d9%84%d9%86%d9%85%d8%b7-%d8%a7%d9%84%d8%a7%d9%88%d9%84/" target="_blank">Tutorial: Input/Output - First Style</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/06/04/%d8%a7%d9%84%d9%85%d8%aa%d8%ba%d9%8a%d8%b1%d8%a7%d8%aa-variables/" target="_blank">Tutorial: Variables</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/06/06/%d8%a7%d9%84%d9%85%d8%b9%d8%a7%d9%85%d9%84%d8%a7%d8%aa-operator/" target="_blank">Tutorial: Operators</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/06/11/%d8%a7%d9%84%d8%af%d9%88%d8%a7%d9%84functions/" target="_blank">Tutorial: Functions</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/06/16/%d8%a7%d9%84%d9%82%d9%88%d8%a7%d8%a6%d9%85-lists/" target="_blank">Tutorial: Lists</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/06/21/strings/" target="_blank">Tutorial: Strings</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/06/27/1391/" target="_blank">Tutorial: Control Structures</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/07/01/%d8%a7%d9%84%d8%a7%d8%af%d8%ae%d8%a7%d9%84-getting-input/" target="_blank">Tutorial: Getting Input</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/07/04/eval-and-debugging/" target="_blank">Tutorial: Eval() and Debugging</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/07/06/date-and-time/" target="_blank">Tutorial: Date and Time</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/07/07/check-data-type-and-conversion/" target="_blank">Tutorial: Check Data Type and Conversion</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/07/10/mathematical-functions/" target="_blank">Tutorial: Mathematical Functions</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/07/16/files/" target="_blank">Tutorial: Files</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/07/20/system-functions/" target="_blank">Tutorial: System Functions</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/07/25/program-structure/" target="_blank">Tutorial: Program Structure</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/08/03/1object-oriented-programming-oop/" target="_blank">Tutorial: Object-oriented programming-OOP</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/08/09/2object-oriented-programming-oop/" target="_blank">Tutorial: Object-oriented programming-OOP (2)</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/08/16/declarative-programming/" target="_blank">Tutorial: Declarative Programming</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/08/22/reflection-and-meta-programming/" target="_blank">Tutorial: Reflection and Meta-Programming</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/08/29/scope-rules-for-variables-and-attributes/" target="_blank">Tutorial: Scope Rules for Variables and Attributes</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/09/04/scope-rules-for-functions-and-methods/" target="_blank">Tutorial: Scope Rules for Functions and Methods</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/09/11/functional-programming/" target="_blank">Tutorial: Functional Programming</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/09/13/syntax-flexibility/" target="_blank">Tutorial: Syntax Flexibility</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/09/19/natural-language-programming/" target="_blank">Tutorial: Natural Language Programming</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/09/27/using-the-natural-library/" target="_blank">Tutorial: Using the Natural Library</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/10/09/odbc-functions/" target="_blank">Tutorial: ODBC Functions</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/10/16/mysql-functions/" target="_blank">Tutorial: MySQL Functions</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/10/21/sqlite-functions/" target="_blank">Tutorial: SQLite Functions</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/10/31/security-and-internet-functions/" target="_blank">Tutorial: Security and Internet Functions</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/10/31/stdlib-functions-and-classes/" target="_blank">Tutorial: StdLib Functions and Classes</a>'
],
[
'<a href="https://ringprogramming4arab.wordpress.com/2017/11/16/form-applications/" target="_blank">Tutorial: Form in Web Development</a>'
]
]
],
["Arabic Tutorials by Sofy Abbas (YouTube)",[
[
'<a href="https://www.youtube.com/watch?v=OWGaUQFrjAc" target="_blank">Download Ring and printing Hello, World!</a>'
],
[
'<a href="https://www.youtube.com/watch?v=ncGW3zPoWME" target="_blank">Getting Started</a>'
],
[
'<a href="https://www.youtube.com/watch?v=JaMbe47oAr4" target="_blank">Using Variables</a>'
],
[
'<a href="https://www.youtube.com/watch?v=QhqB2A9H_f8" target="_blank">Using Variables (2) </a>'
],
[
'<a href="https://www.youtube.com/watch?v=pjm6FfE6uuk" target="_blank">Arithmetic Operators</a>'
],
[
'<a href="https://www.youtube.com/watch?v=ZSEbmNBkZuA" target="_blank">Relational Operators</a>'
]
]
],
["Arabic Tutorials by Ali Aliraqi (YouTube)",[
[
'<a href="https://www.youtube.com/watch?v=lCh-n90q_dM&list=PLGuernz43q4TOELXsWkXvESxXShvJ9X8P&index=1" target="_blank">Introduction</a>'
],
[
'<a href="https://www.youtube.com/watch?v=FOYgAp330Yo&list=PLGuernz43q4TOELXsWkXvESxXShvJ9X8P&index=2" target="_blank">About Ring Creator</a>'
],
[
'<a href="https://www.youtube.com/watch?v=Fsvq9MtS7IM&list=PLGuernz43q4TOELXsWkXvESxXShvJ9X8P&index=3" target="_blank">What is Ring?</a>'
],
[
'<a href="https://www.youtube.com/watch?v=GdwL5kti8kQ&list=PLGuernz43q4TOELXsWkXvESxXShvJ9X8P&index=4" target="_blank">Run Your First Program</a>'
],
[
'<a href="https://www.youtube.com/watch?v=ZyBxHTBKO28&list=PLGuernz43q4TOELXsWkXvESxXShvJ9X8P&index=5" target="_blank">Variables</a>'
],
[
'<a href="https://www.youtube.com/watch?v=O-sBpOTqhPI&list=PLGuernz43q4TOELXsWkXvESxXShvJ9X8P&index=6" target="_blank">Data Type</a>'
],
[
'<a href="https://www.youtube.com/watch?v=opoKtaif6qg&list=PLGuernz43q4TOELXsWkXvESxXShvJ9X8P&index=7" target="_blank">Strings</a>'
],
[
'<a href="https://www.youtube.com/watch?v=ZGUrfHowGxc&list=PLGuernz43q4TOELXsWkXvESxXShvJ9X8P&index=8" target="_blank">Strings (2)</a>'
],
[
'<a href="https://www.youtube.com/watch?v=IQYDL29FiXg&list=PLGuernz43q4TOELXsWkXvESxXShvJ9X8P&index=9" target="_blank">Numbers</a>'
],
[
'<a href="https://www.youtube.com/watch?v=CbEmf-WtTDM&list=PLGuernz43q4TOELXsWkXvESxXShvJ9X8P&index=10" target="_blank">Numbers (2)</a>'
],
[
'<a href="https://youtu.be/FmyyzYhH_vg" target="_blank">Operatores </a>'
],
[
'<a href="https://youtu.be/6T5t77sJPns" target="_blank">Relational Operatores </a>'
]
]
],
["Arabic Tutorials by Mr. Alaa Mohammed (YouTube) ", [
[
'<a href="https://www.youtube.com/watch?v=uSv5rJp6snw" target="_blank"> 01 Ring introduction in Arabic</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=Ip29yXhHJg0" target="_blank"> 02 Ring Set up</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=CGNQMcZMxSk" target="_blank"> 03 Qt and Ring</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=ux8b15AkNfk" target="_blank"> 04 Build your First Ring GUI Application</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=ARVCf3-T3I0" target="_blank"> 05 Ring hello world</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=FovfkqEj1kg" target="_blank"> 06 Ring Getting Started part1</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=SGFY__KNfDE" target="_blank"> 07 Ring Getting Started part2</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=Bvb1VVunlis" target="_blank"> 08 Ring Variables Dynamic Typing</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=XG4uO-m3SZg" target="_blank"> 09 Ring Variables Deep Copy</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=6E_OSkmUhLU" target="_blank"> 10 Ring Weakly Typed</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=bfC-Uaz0NS4" target="_blank"> 11 Ring Arithmetic Operators</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=LELDebethmg" target="_blank"> 12 Ring Relational Operators</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=qclB9xuaI0Y" target="_blank"> 13 Ring Logical Operators</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=CMTFs2TB7_w" target="_blank"> 14 Ring Bitwise Operators Binary AND</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=j7N3pYDrItg&feature=youtu.be" target="_blank"> 15 Ring Bitwise Operators Binary OR</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=1wrrfeVUk8o&feature=youtu.be" target="_blank"> 16 Ring Bitwise Operators Binary XOR</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=x7bVMpfVY40&feature=youtu.be" target="_blank"> 17 Ring Bitwise Operators Binary NOT</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=FRT_g5SeKiA&feature=youtu.be" target="_blank"> 18 Ring Bitwise Operators Binary Left Shift</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=SqiMjwyCKmY&feature=youtu.be" target="_blank"> 19 Ring Bitwise Operators Binary Right Shift</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=ToGQrmWpZPY&index=19&list=PLgc0fyJgivssosIJu4kJGk5avIjaMzYHK" target="_blank"> 20 Ring Assignment Operators part 1</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=bZGjQYkFlBA&feature=youtu.be" target="_blank"> 21 Ring Assignment Operators part 2</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=A0gpMP0ZVjU&feature=youtu.be" target="_blank"> 22 Ring Misc Operators </a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=fHtwTV3GOC0" target="_blank"> 23 Ring Operators Precedence </a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=2bdtWkr39w4&feature=youtu.be" target="_blank"> 24 Ring If Statement </a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=XYIOWDTsxXI&feature=youtu.be" target="_blank"> 25 Ring Switch Statement</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=iUUGSWk8_KY&feature=youtu.be" target="_blank"> 26 Ring While Loop</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=bu4uln1gDE8&feature=youtu.be" target="_blank"> 27 Ring For Loop </a>' ,
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=ot024yBnzFA&feature=youtu.be" target="_blank"> 28 Ring For In Loop </a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=nFZoq5yI5Jw&feature=youtu.be" target="_blank"> 29 Ring using the step option with for in </a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=lVYMylObJoM&feature=youtu.be" target="_blank"> 30 Ring using for in to modify lists</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=ngxCbYh-oUE&feature=youtu.be" target="_blank"> 31 Ring Do Again Loop</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=Tvo3RqOZE2k&feature=youtu.be" target="_blank"> 32 Exit Command</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=HA1PxqcoI-M" target="_blank"> 33 Exit from two loops</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=JHvOMSpRqtc&feature=youtu.be" target="_blank"> 34 Loop command </a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=xFwDXJOZAFA&feature=youtu.be" target="_blank"> 35 Exit/Loop inside sub functions</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=bJuy555_3wc&feature=youtu.be" target="_blank"> 36 Short-circuit evaluation</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=PO3QA4eLoqU&feature=youtu.be" target="_blank"> 37 Comments about evaluation</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=bJuy555_3wc&feature=youtu.be" target="_blank"> 38 Ring programming Short-circuit evaluation</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=PO3QA4eLoqU&feature=youtu.be" target="_blank"> 39 Ring programming Comments about evaluation</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=rPpiievNGjY" target="_blank"> 40 Ring programming Getting Input Give Command</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=pezFjtJQOfw&feature=youtu.be" target="_blank"> 41 Ring programming Getting Input GetChar() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=L9Gq6nXM9oQ&feature=youtu.be" target="_blank"> 42 Ring programming Getting Input Input() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=Dz3Xfir1liA&feature=youtu.be" target="_blank"> 43 Ring programming Function Introduction </a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=u9n0qfi7Fpk&feature=youtu.be" target="_blank"> 44 Ring programming Define Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=64oAkFMgg8w&feature=youtu.be" target="_blank"> 45 Ring programming Call Functions</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=tBr77n1Kbg8&feature=youtu.be" target="_blank"> 46 Ring programming Declare Send parameters </a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=uIuBvuorzPo&feature=youtu.be" target="_blank"> 47 Ring programming Main Function </a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=yL8AFmxwdJI&feature=youtu.be" target="_blank"> 48 Ring programming Variables Scope </a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=nDHA6bUje20&feature=youtu.be" target="_blank"> 49 Ring programming Program Structure </a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=cTw7D6xXHSQ&feature=youtu.be" target="_blank"> 50 Ring programming Return Value </a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=a8tkXoDaraU&feature=youtu.be" target="_blank"> 51 Ring programming Recursion </a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=J5z9O1SIylk&feature=youtu.be" target="_blank"> 52 Ring programming Create Lists </a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=be4OTOMxmS0&feature=youtu.be" target="_blank"> 53 Ring programming List Add Items </a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=3TZKe5wCcEc&feature=youtu.be" target="_blank"> 54 Ring programming Get List Size </a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=5vo3VyGDaaM&feature=youtu.be" target="_blank"> 55 Ring programming Delete Item From List </a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=MwZ8y5FrZ8w&feature=youtu.be" target="_blank"> 56 Ring programming Get List Item</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=-1ae8E50Ivg&feature=youtu.be" target="_blank"> 57 Ring programming Set List Item </a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=MbgNdOWPc08&feature=youtu.be" target="_blank"> 58 Ring programming Lists Find Function Search </a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=Q1_QeeB9IEI&feature=youtu.be" target="_blank"> 59 Ring programming list BinarySearch</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=gacAdb1s9N0&feature=youtu.be" target="_blank"> 60 Ring programming Lists Sort</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=NPKSjoFKkfI&feature=youtu.be" target="_blank"> 61 Ring programming Lists Reverse </a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=DK3PV5ciKwY&feature=youtu.be" target="_blank"> 62 Ring programming Lists Insert Items</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=ppK-HcLF-vw&feature=youtu.be" target="_blank"> 63 Ring programming Nested lists</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=XVplL7JQiEk&feature=youtu.be" target="_blank"> 64 Ring programming Copy lists</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=yKZw80gId44&feature=youtu.be" target="_blank"> 65 Ring programming First class lists</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=oGLS3Syvekc&feature=youtu.be" target="_blank"> 66 Ring programming Using Lists during definition </a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=jzadaJNR1jg&feature=youtu.be" target="_blank"> 67 Ring programming Passing Lists to Functions</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=pQ66WhnJ3VI&feature=youtu.be" target="_blank"> 68 Ring programming Access List Items by String Index</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=hPxTV3YwIWs&feature=youtu.be" target="_blank"> 69 Ring programming Passing Parameters Using List</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=nBYFstD1hOo&feature=youtu.be" target="_blank"> 70 Ring programming String Literals</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=1cHKKvlfIN4&feature=youtu.be" target="_blank"> 71 Ring programming Get String Length</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=_MHh8zyARiI&feature=youtu.be" target="_blank"> 72 Ring programming Convert Letters Case</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=PW6FycTF92k&feature=youtu.be" target="_blank"> 73 Ring programming Access String Letters</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=lrOfSnKi92Y&feature=youtu.be" target="_blank"> 74 Ring programming Left and right Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=GSLVrXmUE94&feature=youtu.be" target="_blank"> 75 Ring programming Trim Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=pyX4RKRmLNg&feature=youtu.be" target="_blank"> 76 Ring programming Copy Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=DTRICkgUbdE&feature=youtu.be" target="_blank"> 77 Ring programming Lines Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=edSssGxvMR0&feature=youtu.be" target="_blank"> 78 Ring programming Find substring</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=vs2Kvzw1lHw&feature=youtu.be" target="_blank"> 79 Ring programming Get substring from position to end</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=3nYd6MaZ1yk&feature=youtu.be" target="_blank"> 80 Ring programming Get Number of Characters From Position</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=1_fVoxHxpNo&feature=youtu.be" target="_blank"> 81 Ring programming Transform Substring To Another Substring</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=YowowhSij8w&feature=youtu.be" target="_blank"> 82 Ring programming strcmp Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=2DxAe-2XiMs&feature=youtu.be" target="_blank"> 83 Ring programming str2list and list2str Functions</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=aBXu7lL0JwU&feature=youtu.be" target="_blank"> 84 Ring programming clock() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=AlqjgTpISCk&feature=youtu.be" target="_blank"> 85 Ring programming Time () and Date() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=s9lIDBefOyw&feature=youtu.be" target="_blank"> 86 Ring programming TimeList() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=wuOhNd19dTM&feature=youtu.be" target="_blank"> 87 Ring programming Adddays()Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=b65ivW4MsbI&feature=youtu.be" target="_blank"> 88 Ring programming DiffDays () Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=6R_e-7NHtEo&feature=youtu.be" target="_blank"> 89 Check Data Type Isstring() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=0a0dQbJ7NIY&feature=youtu.be" target="_blank"> 90 Check Data Type IsNumber() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=OBsjgK8SSCY&feature=youtu.be" target="_blank"> 91 Check Data Type IsList() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=_c4marwcp58&feature=youtu.be" target="_blank"> 92 Check Data Type Type() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=A4bi2gAI8yo&feature=youtu.be" target="_blank"> 93 Check Data Type IsNULL() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=slae6N2w2Kw&feature=youtu.be" target="_blank"> 94 Check Character IsAlNum() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=-Bf-HYfcvZI&feature=youtu.be" target="_blank"> 95 Check Character IsAlpha() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=-7k8aHrtfHc&feature=youtu.be" target="_blank"> 96 Check Character IsCntrl() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=HUnEEuUB1Cs&feature=youtu.be" target="_blank"> 97 Check Character IsDigit() Function and IsXDigit() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=RXdKTC518w0&feature=youtu.be" target="_blank"> 98 Check Character IsGraph() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=H94f2xFeF_s&feature=youtu.be" target="_blank"> 99 Check Character IsLower() and IsUpper() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=BPrxi1JAZd8&feature=youtu.be" target="_blank"> 100 Check Character IsPrint() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=LYCeI17k3aI&feature=youtu.be" target="_blank"> 101 Check Character IsPunct() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=fp-8nRoYyZI&feature=youtu.be" target="_blank"> 102 Check Character IsSpace() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=OoZy1TSYwb0&feature=youtu.be" target="_blank"> 103 Conversion Number() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=aWdLf9vSke8&feature=youtu.be" target="_blank"> 104 Conversion String() Function </a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=oj4lMYBjYTg&feature=youtu.be" target="_blank"> 105 Conversion Ascii() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=fHtq4MA7NiE&feature=youtu.be" target="_blank"> 106 Conversion Char() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=cQWdfjTtBT0&feature=youtu.be" target="_blank"> 107 Conversion Hex() and Dec() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=tR79cjCFtgc&feature=youtu.be" target="_blank"> 108 Conversion Str2hex() AND Hex2str() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=mL6Sqj3wYP4&feature=youtu.be"> 109 Mathematical Functions</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=cWeSyBci2do&feature=youtu.be"> 110 Files Read() Functions</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=6050rTHKooo&feature=youtu.be"> 111 Files Write() Functions</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
],
[
'<a href="https://www.youtube.com/watch?v=hk6e-WEc8aA&feature=youtu.be"> 112 Files Dir() Functions</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
] ,
[
'<a href="https://www.youtube.com/watch?v=E343q9AxGoo"> 113 Rename() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
] ,
[
'<a href="https://www.youtube.com/watch?v=l_qluT4LRvk"> 114 Remove() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
] ,
[
'<a href="https://www.youtube.com/watch?v=IiZ_G7FGw2E"> 115 Fopen() Function</a>',
'<a href="https://groups.google.com/forum/#!forum/ring-lang"><img src="http://tecit.info/alaa.jpg" width="40%" alt="Mr.alaa Mohammed" title="Support Team"></a>'
]
]
],
["Arabic Tutorials by Mr. Ahmed Hassouna - Hassouna Academy On (YouTube) * Basis, OOP, Forms ♥",[
[
'<a href="https://www.youtube.com/watch?v=3YsdVicFv3Q" target="_blank">01 Introduction In Ring Programming Language</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=ThPcTPyTkXc" target="_blank">02 Download And Install Ring Programming Language</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=nvgzIfuOnFo&index" target="_blank">03 Download And Install Ring On Ubuntu Linux</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=ibdTtHm_61I&index" target="_blank">04 Download And Install Ring On Mac OS X</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=q09Or4KTzQs&index" target="_blank">05 Features of ring programming language</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=k2vx3elMq2k&index" target="_blank">06 Output in ring programming language using see</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=xw3rX33obGM&index" target="_blank">07 Input in ring programming language using give</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=Tezj0Rqi3Hk&index" target="_blank">08 Download And Install Notepad Plus Plus With Add ring language</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=EDvde6hTG8s&index" target="_blank">09 Variable in ring programming language</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=v0rkrg1hBOY&index" target="_blank">10 Comments in ring programming language</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=s2bQK3dTPsc&index" target="_blank">11 Arithmetic operators in ring programming language</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=fcduGjbJSL8&index" target="_blank">12 Logical operators in ring programming language</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=jWoSCijesaY&index" target="_blank">13 Comparison Or Relational operators in ring programming language</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=LASgs4ppOsA&index" target="_blank">14 Assignment operators in ring programming language</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=WJe8rLBU7tQ&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=15" target="_blank">15 List instead of array in ring programming language</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=eJi5_OkOaeg&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=16" target="_blank">16 Range list array in ring programming language</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=h5LUDUgYClA&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=17" target="_blank">17 List part 1 in ring programming language</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=FPVx45VoWYw&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=18" target="_blank">18 List part 2 in ring programming language</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=Ru_J4lFE76c&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=19" target="_blank">19 Nested List in ring programming language</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=JZxwsWP7GeE" target="_blank">20 Convert String To Number in ring programming language</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=lxLL53jS3nE&index=21&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">21 IF Statement with OK in ring programming language</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=fwlqsiLmbK8&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=22" target="_blank">IF OK STATEMENT WITH ELSE & BUT in ring programming language #22</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=AqpBs8bTDIc&index=23&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">SWITCH ON OFF STATEMENT WITH OTHER in ring programming language #23</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=_SiDLi5H1mM&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=24" target="_blank">FOR LOOP STATEMENT in ring programming language #24</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=NvFxaED2-vo&index=25&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">Ring 1.3 #25</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=NQOMFasiGqE&index=26&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">Nested Loops in ring programming language#26</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=vTskzVew7aI&index=27&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">While Loop in ring programming language #27</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=OXoIdq75hwM&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=28" target="_blank">Do again in ring programming language #28</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=WZiKi_waL9o&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=29" target="_blank">Exit in ring programming language #29</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=USY0s6n4Mpw&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=30" target="_blank">Loop in ring programming language #30</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="" target="_blank">print date time #31</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=-OLP4QUJ9KQ&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=32" target="_blank">TimeList #32</a>',
'<img src="https://i.ytimg.com/vi/3YsdVicFv3Q/hqdefault.jpg" width="60%">'
],
[
'<a href="https://www.youtube.com/watch?v=y7ngyXt3sBY&index=33&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">#33 Date Details</a>',