-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlist2019.html
More file actions
2586 lines (2586 loc) · 146 KB
/
list2019.html
File metadata and controls
2586 lines (2586 loc) · 146 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><html lang="en">
<head>
<meta charset="UTF-8">
<title>TechNet Wiki Article List</title>
</head>
<body>
<p>TechNet Wiki Article List - 2019/07/19</p>
<table>
<tr>
<td>TITLE</td>
<td>LAST REVISION BY</td>
<td>CREATION DATE</td>
<td>TAGS</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/53012.small-basic-blog-archive-2019.aspx">Small Basic Blog: Archive 2019</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>19 Jul 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/52397.microsoft-small-basic-online-v0-91-known-issues.aspx">Microsoft Small Basic Online v0.91: Known Issues</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>19 Jul 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/29136.small-basic-shortcuts-for-keyboard.aspx">Small Basic: Shortcuts for Keyboard</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/768118/ProfileUrlRedirect.ashx">George Chrysovaladis Grammatikos</a></td>
<td>3 Jul 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/24249.small-basic-blog-authoring-schedule.aspx">Small Basic Blog: Authoring Schedule</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>23 Jun 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/17553.wiki-small-basic-portal.aspx">Wiki: Small Basic Portal</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>20 Jun 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/51269.small-basic-blog-archive-2008-2018.aspx">Small Basic Blog: Archive 2008-2018</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>20 Jun 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/25689.small-basic-resources-for-game-programming.aspx">Small Basic: Resources for Game Programming</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>17 Jun 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16059.small-basic-getting-started-guide.aspx">Small Basic Getting Started Guide</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/186553/ProfileUrlRedirect.ashx">karimSP</a></td>
<td>9 Jun 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/15075.small-basic-tutorial-creating-your-first-program.aspx">Small Basic Tutorial: Creating Your First Program</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/186553/ProfileUrlRedirect.ashx">karimSP</a></td>
<td>9 Jun 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16058.small-basic-faq.aspx">Small Basic FAQ</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/186553/ProfileUrlRedirect.ashx">karimSP</a></td>
<td>9 Jun 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/25195.small-basic-survival-guide.aspx">Small Basic Survival Guide</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>3 Jun 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/29200.small-basic-errors.aspx">Small Basic: Errors</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>31 May 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/52910.small-basic-error-handling.aspx">Small Basic: Error Handling</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>31 May 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/25576.small-basic-file-and-network.aspx">Small Basic: File and Network</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>31 May 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/26950.small-basic-international-resources.aspx">Small Basic: International Resources</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>18 May 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16458.small-basic-how-to-use-sound-playmusic.aspx">Small Basic: How to Use Sound.PlayMusic()</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/768118/ProfileUrlRedirect.ashx">George Chrysovaladis Grammatikos</a></td>
<td>13 May 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/35785.small-basic-how-to-use-kinect-objects.aspx">Small Basic: How to Use Kinect Objects</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/768118/ProfileUrlRedirect.ashx">George Chrysovaladis Grammatikos</a></td>
<td>13 May 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/24082.microsoft-small-basic-v1-0-known-issues.aspx">Microsoft Small Basic v1.0: Known Issues</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>1 May 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/52506.microsoft-small-basic-online-v1-0-ts-ja-jp.aspx">Microsoft Small Basic Online v1.0(TS): インストールガイド (ja-JP) </a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>30 Apr 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/52801.microsoft-small-basic-online-v1-0-cs-installation-guide.aspx">Microsoft Small Basic Online v1.0 (CS): Installation Guide</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>30 Apr 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/51983.microsoft-small-basic-online-v1-0-ts-installation-guide.aspx">Microsoft Small Basic Online v1.0 (TS): Installation Guide </a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>21 Apr 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/32317.small-basic-automatic-type-conversion.aspx">Small Basic: Automatic Type Conversion</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/1022584/ProfileUrlRedirect.ashx">Hamid Sadeghpour Saleh</a></td>
<td>6 Apr 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/24745.small-basic-challenge-of-the-month.aspx">Small Basic: Challenge of the Month</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>2 Apr 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/32436.microsoft-small-basic-1-2-release-notes.aspx">Microsoft Small Basic 1.2 Release Notes</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/771988/ProfileUrlRedirect.ashx">Somdip Dey - MSP Alumnus</a></td>
<td>2 Apr 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/24328.programming-home-projects-with-microsoft-small-basic-chapter-6-flash-card-math-quiz-project.aspx">Programming Home Projects with Microsoft Small Basic: Chapter 6: Flash Card Math Quiz Project</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/771988/ProfileUrlRedirect.ashx">Somdip Dey - MSP Alumnus</a></td>
<td>2 Apr 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/52722.small-basic-control-character.aspx">Small Basic: Control Character</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/211934/ProfileUrlRedirect.ashx">Edward van Biljon</a></td>
<td>1 Apr 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16386.small-basic-programming-books.aspx">Small Basic Programming Books</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2806/ProfileUrlRedirect.ashx">Santhosh Sivarajan-</a></td>
<td>30 Mar 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/17301.small-basic-sample-snake.aspx">Small Basic Sample: Snake</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/1169889/ProfileUrlRedirect.ashx">Emre Ozan Memis</a></td>
<td>23 Mar 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/52565.microsoft-small-basic-online-v1-0-how-to-build.aspx">Microsoft Small Basic Online v1.0: How to Build</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/407520/ProfileUrlRedirect.ashx">Carsten Siemens</a></td>
<td>2 Mar 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/30188.small-basic-and-the-raspberry-pi.aspx">Small Basic and the Raspberry Pi</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/633600/ProfileUrlRedirect.ashx">Philip Munts</a></td>
<td>26 Feb 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/34447.small-basic-simpler-and-cheaper-raspberry-pi-gpio.aspx">Small Basic: Simpler and Cheaper Raspberry Pi GPIO</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/633600/ProfileUrlRedirect.ashx">Philip Munts</a></td>
<td>25 Feb 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/24248.small-basic-blog.aspx">Small Basic Blog</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>24 Feb 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/40340.small-basic-how-to-use-micro-bit.aspx">Small Basic: How to Use micro:bit</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>20 Feb 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16380.small-basic-curriculum-lesson-4-1-playing-with-shapes.aspx">Small Basic Curriculum: Lesson 4.1: Playing with Shapes</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2179/ProfileUrlRedirect.ashx">Ed Price - MSFT</a></td>
<td>8 Feb 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16379.small-basic-curriculum-lesson-3-6-debugging-aids.aspx">Small Basic Curriculum: Lesson 3.6: Debugging Aids</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2179/ProfileUrlRedirect.ashx">Ed Price - MSFT</a></td>
<td>8 Feb 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16378.small-basic-curriculum-lesson-3-5-the-controls-object.aspx">Small Basic Curriculum: Lesson 3.5: The Controls Object</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2179/ProfileUrlRedirect.ashx">Ed Price - MSFT</a></td>
<td>6 Feb 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/31651.small-basic-sample-the-triangle-area-calculator.aspx">Small Basic Sample: The Triangle Area Calculator</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/771988/ProfileUrlRedirect.ashx">Somdip Dey - MSP Alumnus</a></td>
<td>5 Feb 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16397.beginning-microsoft-small-basic-chapter-4-small-basic-program-design-input-methods.aspx">Beginning Microsoft Small Basic: Chapter 4: Small Basic Program Design, Input Methods</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2179/ProfileUrlRedirect.ashx">Ed Price - MSFT</a></td>
<td>4 Feb 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/33822.small-basic-flickr.aspx">Small Basic: Flickr</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>29 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16305.small-basic-curriculum-lesson-1-4-conditions-and-loops.aspx">Small Basic Curriculum: Lesson 1.4: Conditions and Loops</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>23 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/17333.small-basic-curriculum-show-what-you-know-answer-key.aspx">Small Basic Curriculum: Show What You Know Answer Key</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>23 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/34675.small-basic-videos.aspx">Small Basic Videos</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>17 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16394.beginning-microsoft-small-basic-chapter-1-introducing-small-basic.aspx">Beginning Microsoft Small Basic: Chapter 1: Introducing Small Basic</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>16 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16391.the-developers-reference-guide-to-small-basic-chapter-5-graphicswindow-object.aspx">The Developer’s Reference Guide to Small Basic: Chapter 5: GraphicsWindow Object</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>16 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16390.the-developers-reference-guide-to-small-basic-chapter-4-textwindow-object.aspx">The Developer’s Reference Guide to Small Basic: Chapter 4: TextWindow Object</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>16 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16389.the-developers-reference-guide-to-small-basic-chapter-3-program-object.aspx">The Developer’s Reference Guide to Small Basic: Chapter 3: Program Object</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>16 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16388.the-developers-reference-guide-to-small-basic-2-overview-of-small-basic-programming.aspx">The Developer’s Reference Guide to Small Basic: 2. Overview of Small Basic Programming</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>16 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16387.the-developers-reference-guide-to-small-basic-1-introducing-small-basic.aspx">The Developer’s Reference Guide to Small Basic: 1. Introducing Small Basic</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>16 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16767.the-developers-reference-guide-to-small-basic.aspx">The Developer’s Reference Guide to Small Basic</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>16 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/30581.przewodnik-po-pierwszych-krokach-w-smallbasic-pl-pl.aspx">Przewodnik po pierwszych krokach w SmallBasic (pl-PL)</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>11 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/29933.small-basic-the-history-of-the-logo-turtle.aspx">Small Basic: The History of the Logo Turtle </a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>11 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16404.basic-computer-games-small-basic-edition-awari.aspx">Basic Computer Games - Small Basic Edition: Awari</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>11 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16407.basic-computer-games-small-basic-edition-batnum.aspx">Basic Computer Games - Small Basic Edition: Batnum</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>11 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16406.basic-computer-games-small-basic-edition-basketball.aspx">Basic Computer Games - Small Basic Edition: Basketball</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>11 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16403.basic-computer-games-small-basic-edition-animal.aspx">Basic Computer Games - Small Basic Edition: Animal</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>11 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16383.small-basic-curriculum-lesson-4-4-advanced-games.aspx">Small Basic Curriculum: Lesson 4.4: Advanced Games</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>11 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16409.basic-computer-games-small-basic-edition-blackjack.aspx">Basic Computer Games - Small Basic Edition: Blackjack</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>11 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16410.basic-computer-games-small-basic-edition-bombardment.aspx">Basic Computer Games - Small Basic Edition: Bombardment</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>11 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16405.basic-computer-games-small-basic-edition-bagels.aspx">Basic Computer Games - Small Basic Edition: Bagels</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>11 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16398.basic-computer-games-small-basic-edition-acey-ducey.aspx">Basic Computer Games - Small Basic Edition: Acey Ducey</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>11 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16400.basic-computer-games-small-basic-edition-amazing.aspx">Basic Computer Games - Small Basic Edition: Amazing</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>11 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/39435.microsoft-small-basic-v1-3-known-issues.aspx">Microsoft Small Basic v1.3: Known Issues</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>9 Jan 2019</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/14015.using-the-joysticks-game-controllers-extension-for-microsoft-small-basic.aspx">Using the Joysticks / Game Controllers Extension for Microsoft Small Basic</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>29 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/30726.small-basic-exemple-tetris-fr-fr.aspx">Small Basic: Exemple - Tetris (fr-FR)</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>29 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/24727.small-basic-sample-tetris.aspx">Small Basic Sample: Tetris</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>29 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/30727.small-basic-exemple-snake-le-jeu-du-serpent-fr-fr.aspx">Small Basic: Exemple - Snake - Le Jeu du Serpent (fr-FR)</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>29 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/30737.small-basic-exemple-jetlag-fr-fr.aspx">Small Basic: Exemple - JetLag (fr-FR)</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>29 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/17300.small-basic-sample-jetlag.aspx">Small Basic Sample: JetLag</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>29 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16408.basic-computer-games-small-basic-edition-battle.aspx">Basic Computer Games - Small Basic Edition: Battle</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>29 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/28800.how-to-add-background-music-to-a-small-basic-game.aspx">How to add background music to a Small Basic game</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>29 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/30735.small-basic-exemple-graphismes-de-jeu-fr-fr.aspx">Small Basic: Exemple - Graphismes de Jeu (fr-FR)</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>29 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/19754.small-basic-sample-gamegraphics.aspx">Small Basic Sample: GameGraphics</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>29 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/30385.small-basic-le-jeu-bataille-navale-en-detail-fr-fr.aspx">Small Basic: Le Jeu Bataille Navale en détail (fr-FR)</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>29 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/30386.small-basic-the-battleship-game-in-detail.aspx">Small Basic: The Battleship Game in detail</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>29 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/30260.small-basic-timeline-for-the-games.aspx">Small Basic: Timeline for the games</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>29 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/24402.programming-games-with-microsoft-small-basic.aspx">Programming Games with Microsoft Small Basic</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>29 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/24403.programming-games-with-small-basic-chapter-1-writing-programs.aspx">Programming Games with Small Basic: Chapter 1: Writing Programs</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>29 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16982.small-basic-curriculum-online.aspx">Small Basic Curriculum: Online</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2659/ProfileUrlRedirect.ashx">Peter Geelen</a></td>
<td>23 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/13342.small-basic.aspx">Small Basic</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2659/ProfileUrlRedirect.ashx">Peter Geelen</a></td>
<td>22 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/30036.small-basic-fr-fr.aspx">Small Basic (fr-FR)</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2659/ProfileUrlRedirect.ashx">Peter Geelen</a></td>
<td>22 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/30922.small-basic-comment-creer-une-extension-avec-vb-net-fr-fr.aspx">Small Basic: Comment Créer une Extension Avec VB.NET (fr-FR)</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2659/ProfileUrlRedirect.ashx">Peter Geelen</a></td>
<td>22 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/13340.small-basic-how-to-create-an-extension-using-vb-net.aspx">Small Basic: How to Create an Extension Using VB.NET</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2659/ProfileUrlRedirect.ashx">Peter Geelen</a></td>
<td>22 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/23237.small-basic-getting-started-guide-appendix-b-colors.aspx">Small Basic Getting Started Guide: Appendix B: Colors</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2179/ProfileUrlRedirect.ashx">Ed Price - MSFT</a></td>
<td>7 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16080.small-basic-getting-started-guide-appendix-a-fun-samples.aspx">Small Basic Getting Started Guide: Appendix A: Fun Samples</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2179/ProfileUrlRedirect.ashx">Ed Price - MSFT</a></td>
<td>7 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16077.small-basic-getting-started-guide-chapter-9-subroutines.aspx">Small Basic Getting Started Guide: Chapter 9: Subroutines</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2179/ProfileUrlRedirect.ashx">Ed Price - MSFT</a></td>
<td>7 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16076.small-basic-getting-started-guide-chapter-8-turtle-graphics.aspx">Small Basic Getting Started Guide: Chapter 8: Turtle Graphics</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2179/ProfileUrlRedirect.ashx">Ed Price - MSFT</a></td>
<td>7 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16075.small-basic-getting-started-guide-chapter-7-fun-with-shapes.aspx">Small Basic Getting Started Guide: Chapter 7: Fun with Shapes</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2179/ProfileUrlRedirect.ashx">Ed Price - MSFT</a></td>
<td>7 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/52240.small-basic-known-issue-52240-zoomed-triangle-position-to-move-is-different-in-remote.aspx">Small Basic Known Issue: 52240 - Zoomed Triangle Position to Move is Different in Remote</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>7 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16042.small-basic-difference-between-local-and-remote.aspx">Small Basic: Difference Between Local and Remote</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>7 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/23726.small-basic-reference-documentation-timer-object.aspx">Small Basic Reference Documentation: Timer Object</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/771988/ProfileUrlRedirect.ashx">Somdip Dey - MSP Alumnus</a></td>
<td>6 Dec 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/52143.small-basic-known-issue-52143-turtle-moveto-operation-sometimes-causes-error.aspx">Small Basic Known Issue: 52143 - Turtle.MoveTo Operation Sometimes Causes Error</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>27 Nov 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16066.small-basic-getting-started-guide-chapter-6-beginning-graphics.aspx">Small Basic Getting Started Guide: Chapter 6: Beginning Graphics</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2179/ProfileUrlRedirect.ashx">Ed Price - MSFT</a></td>
<td>15 Nov 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16065.small-basic-getting-started-guide-chapter-5-loops.aspx">Small Basic Getting Started Guide: Chapter 5: Loops</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2179/ProfileUrlRedirect.ashx">Ed Price - MSFT</a></td>
<td>15 Nov 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16064.small-basic-getting-started-guide-chapter-4-conditions-and-branching.aspx">Small Basic Getting Started Guide: Chapter 4: Conditions and Branching</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2179/ProfileUrlRedirect.ashx">Ed Price - MSFT</a></td>
<td>15 Nov 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16063.small-basic-getting-started-guide-chapter-3-introducing-variables.aspx">Small Basic Getting Started Guide: Chapter 3: Introducing Variables</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2179/ProfileUrlRedirect.ashx">Ed Price - MSFT</a></td>
<td>15 Nov 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16062.small-basic-getting-started-guide-chapter-2-understanding-our-first-program.aspx">Small Basic Getting Started Guide: Chapter 2: Understanding Our First Program</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2179/ProfileUrlRedirect.ashx">Ed Price - MSFT</a></td>
<td>15 Nov 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16078.small-basic-getting-started-guide-chapter-10-arrays.aspx">Small Basic Getting Started Guide: Chapter 10: Arrays</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2179/ProfileUrlRedirect.ashx">Ed Price - MSFT</a></td>
<td>15 Nov 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/30759.small-basic-comment-dessiner-un-triangle-fr-fr.aspx">Small Basic: Comment Dessiner un Triangle (fr-FR)</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2659/ProfileUrlRedirect.ashx">Peter Geelen</a></td>
<td>15 Nov 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/41397.small-basic-shapes.aspx">Small Basic: Shapes</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2659/ProfileUrlRedirect.ashx">Peter Geelen</a></td>
<td>15 Nov 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/23587.small-basic-reference-documentation-desktop-object.aspx">Small Basic Reference Documentation: Desktop Object</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/771988/ProfileUrlRedirect.ashx">Somdip Dey - MSP Alumnus</a></td>
<td>29 Oct 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/24042.small-basic-history.aspx">Small Basic: History</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>19 Oct 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/51890.small-basic-drawing-curve.aspx">Small Basic: Drawing Curve</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>16 Oct 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/25278.small-basic-controls.aspx">Small Basic: Controls</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>8 Oct 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/24089.small-basic-default-value.aspx">Small Basic: Default Value</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>8 Oct 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/30971.small-basic-optimization.aspx">Small Basic: Optimization</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/858683/ProfileUrlRedirect.ashx">RajeeshMenoth</a></td>
<td>5 Oct 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/14114.small-basic-the-unique-features.aspx">Small Basic: The Unique Features</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2179/ProfileUrlRedirect.ashx">Ed Price - MSFT</a></td>
<td>24 Sep 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/26353.small-basic-how-to-use-msdn-forum.aspx">Small Basic: How to Use MSDN Forum</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2659/ProfileUrlRedirect.ashx">Peter Geelen</a></td>
<td>2 Sep 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/51708.small-basic-textwindow.aspx">Small Basic: TextWindow</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>30 Jul 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16060.small-basic-getting-started-guide-chapter-1-an-introduction.aspx">Small Basic Getting Started Guide: Chapter 1: An Introduction</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>15 Jul 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/51595.small-basic-polygon.aspx">Small Basic: Polygon</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>5 Jun 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/51577.small-basic-compatible-systems.aspx">Small Basic: Compatible Systems</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>30 May 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/51389.small-basic-clipboard.aspx">Small Basic: Clipboard</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/37268/ProfileUrlRedirect.ashx">Richard Mueller</a></td>
<td>20 May 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/36123.small-basic-download-and-install-the-litdev-extension.aspx">Small Basic: Download and Install the LitDev Extension</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/232393/ProfileUrlRedirect.ashx">Dave Rendón</a></td>
<td>24 Apr 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/14070.small-basic-list-of-extensions.aspx">Small Basic: List of Extensions</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>22 Apr 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/51414.shapes-editor-using-polygon-for-small-basic.aspx">Shapes Editor using Polygon for Small Basic</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/37268/ProfileUrlRedirect.ashx">Richard Mueller</a></td>
<td>13 Apr 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/30517.telecharger-microsoft-small-basic-fr-fr.aspx">Télécharger Microsoft Small Basic (fr-FR)</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/1161043/ProfileUrlRedirect.ashx">sobo95</a></td>
<td>11 Apr 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/32793.microsoft-small-basic-for-beginners-getting-started.aspx">Microsoft Small Basic for Beginners: Getting Started</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/355667/ProfileUrlRedirect.ashx">Ken Cenerelli</a></td>
<td>24 Mar 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/40092.smallbasic-workbook-1-2-0-known-issues.aspx">SmallBasic.Workbook 1.2.0: Known Issues</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/657117/ProfileUrlRedirect.ashx">H Shakir</a></td>
<td>6 Mar 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16369.small-basic-curriculum-lesson-2-2-turtle-graphics.aspx">Small Basic Curriculum: Lesson 2.2: Turtle Graphics</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/657117/ProfileUrlRedirect.ashx">H Shakir</a></td>
<td>28 Feb 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/40111.small-basic-interactive-learning-with-xamarin-workbooks.aspx">Small Basic: Interactive Learning with Xamarin Workbooks</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/186553/ProfileUrlRedirect.ashx">karimSP</a></td>
<td>28 Feb 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/25196.small-basic-character-set-unicode.aspx">Small Basic: Character Set - Unicode</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/771988/ProfileUrlRedirect.ashx">Somdip Dey - MSP Alumnus</a></td>
<td>24 Feb 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/51087.small-basic-sample-flickr-photo-id.aspx">Small Basic Sample: Flickr Photo ID</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/771988/ProfileUrlRedirect.ashx">Somdip Dey - MSP Alumnus</a></td>
<td>4 Feb 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/23588.small-basic-reference-documentation-dictionary-object.aspx">Small Basic Reference Documentation: Dictionary Object</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>30 Jan 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/30943.small-basic-kinect-for-small-basic-extension-library.aspx">Small Basic: Kinect for Small Basic Extension Library</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>26 Jan 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/30259.small-basic-on-technet-gallery.aspx">Small Basic on TechNet Gallery</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/355667/ProfileUrlRedirect.ashx">Ken Cenerelli</a></td>
<td>25 Jan 2018</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/14458.the-small-basic-blog.aspx">The Small Basic Blog</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/355667/ProfileUrlRedirect.ashx">Ken Cenerelli</a></td>
<td>30 Dec 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/30666.small-basic-jak-napisac-gre-zowi-labirynt-pl-pl.aspx">Small Basic: Jak napisać grę żółwi labirynt (pl-PL)</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/355667/ProfileUrlRedirect.ashx">Ken Cenerelli</a></td>
<td>29 Dec 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/50968.small-basic-how-to-make-a-shapes-editor.aspx">Small Basic : How to make a Shapes Editor</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/1125993/ProfileUrlRedirect.ashx">Roshan Kumar Priya</a></td>
<td>23 Dec 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/31457.small-basic-timer.aspx">Small Basic: Timer</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/471361/ProfileUrlRedirect.ashx">Simple Samples</a></td>
<td>4 Dec 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/34589.small-basic-mouse.aspx">Small Basic: Mouse</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/856582/ProfileUrlRedirect.ashx">Burak Uğur</a></td>
<td>2 Dec 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/34251.small-basic-image.aspx">Small Basic: Image</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/771988/ProfileUrlRedirect.ashx">Somdip Dey - MSP Alumnus</a></td>
<td>2 Dec 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/29850.small-basic-key-input.aspx">Small Basic: Key Input</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/771988/ProfileUrlRedirect.ashx">Somdip Dey - MSP Alumnus</a></td>
<td>2 Dec 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/18192.development-map-for-becoming-a-good-programmer-using-small-basic-and-msdn.aspx">Development Map for Becoming a Good Programmer Using Small Basic and MSDN</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/1106143/ProfileUrlRedirect.ashx">Mohamed El-Qassas MVP</a></td>
<td>9 Nov 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/17767.small-basic-how-to-draw-a-triangle.aspx">Small Basic: How to Draw a Triangle</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/1106143/ProfileUrlRedirect.ashx">Mohamed El-Qassas MVP</a></td>
<td>9 Nov 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/17731.small-basic-did-you-know.aspx">Small Basic: Did You Know?</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/1106143/ProfileUrlRedirect.ashx">Mohamed El-Qassas MVP</a></td>
<td>9 Nov 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/23624.small-basic-reference-documentation-shapes-object.aspx">Small Basic Reference Documentation: Shapes Object</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/355667/ProfileUrlRedirect.ashx">Ken Cenerelli</a></td>
<td>7 Nov 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/47193.small-basic-sample-blackboard.aspx">Small Basic Sample: Blackboard</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/856582/ProfileUrlRedirect.ashx">Burak Uğur</a></td>
<td>4 Nov 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/17299.small-basic-sample-flickr-collage.aspx">Small Basic Sample: Flickr Collage </a></td>
<td><a href="https://social.technet.microsoft.com/wiki/330243/ProfileUrlRedirect.ashx">Kapil.Kumawat</a></td>
<td>3 Nov 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/17298.small-basic-sample-turtle-plus-flickr.aspx">Small Basic Sample: Turtle Plus Flickr</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/330243/ProfileUrlRedirect.ashx">Kapil.Kumawat</a></td>
<td>3 Nov 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/30672.small-basic-exemple-collage-avec-flickr-fr-fr.aspx">Small Basic: Exemple - Collage avec Flickr (fr-FR)</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>3 Nov 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/30641.small-basic-exemple-les-tableaux-fr-fr.aspx">Small Basic: Exemple - Les Tableaux (fr-FR)</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>3 Nov 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/17302.small-basic-sample-arrays.aspx">Small Basic Sample: Arrays</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/858683/ProfileUrlRedirect.ashx">RajeeshMenoth</a></td>
<td>3 Nov 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/33243.small-basic-prime-sieve.aspx">Small Basic: Prime Sieve</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/1106143/ProfileUrlRedirect.ashx">Mohamed El-Qassas MVP</a></td>
<td>17 Oct 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/24054.small-basic-community-council-focus-areas.aspx">Small Basic Community Council: Focus Areas</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>8 Oct 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/40203.small-basic-xamarin-workbooks-ja-jp.aspx">Small Basic: Xamarin Workbooks でインタラクティブな学習 (ja-JP)</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/858683/ProfileUrlRedirect.ashx">RajeeshMenoth</a></td>
<td>7 Oct 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/23723.small-basic-community-council.aspx">Small Basic Community Council</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/330243/ProfileUrlRedirect.ashx">Kapil.Kumawat</a></td>
<td>2 Oct 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/40285.small-basic-ja-jp.aspx">Small Basic コミュニティ協議会 (ja-JP)</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/1034574/ProfileUrlRedirect.ashx">M.Vignesh</a></td>
<td>2 Oct 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/21169.small-basic-sample-graphic-car-race.aspx">Small Basic Sample: Graphic Car Race</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/858683/ProfileUrlRedirect.ashx">RajeeshMenoth</a></td>
<td>30 Sep 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/36003.small-basic-how-to-use-arduino.aspx">Small Basic: How to Use Arduino</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/37268/ProfileUrlRedirect.ashx">Richard Mueller</a></td>
<td>23 Sep 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/16374.small-basic-curriculum-lesson-3-1-file-input-and-output.aspx">Small Basic Curriculum: Lesson 3.1: File Input and Output</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/1034574/ProfileUrlRedirect.ashx">M.Vignesh</a></td>
<td>14 Sep 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/20626.small-basic-read-and-write-csv-files.aspx">Small Basic: Read and Write CSV Files</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/1034574/ProfileUrlRedirect.ashx">M.Vignesh</a></td>
<td>4 Sep 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/19330.small-basic-parameter-or-return-value-range-for-math-function.aspx">Small Basic: Parameter or Return Value Range for Math Function</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/330243/ProfileUrlRedirect.ashx">Kapil.Kumawat</a></td>
<td>3 Sep 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/32425.microsoft-small-basic-v1-2-known-issues.aspx">Microsoft Small Basic v1.2: Known Issues</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/792647/ProfileUrlRedirect.ashx">Nourdine MHOUMADI</a></td>
<td>30 Aug 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/39843.small-basic-1-3-installation-guide.aspx">Small Basic 1.3: Installation Guide</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/1034574/ProfileUrlRedirect.ashx">M.Vignesh</a></td>
<td>18 Aug 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/39844.small-basic-1-3-ja-jp.aspx">Small Basic 1.3: インストール ガイド (ja-JP)</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/1034574/ProfileUrlRedirect.ashx">M.Vignesh</a></td>
<td>18 Aug 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/39855.small-basic-how-a-program-runs.aspx">Small Basic: How a Program Runs</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/1034574/ProfileUrlRedirect.ashx">M.Vignesh</a></td>
<td>18 Aug 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/39856.small-basic-ja-jp.aspx">Small Basic: プログラムが動く仕組み (ja-JP)</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>18 Aug 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/38265.small-basic-instructions-to-graduate-and-debug-with-visual-studio-2017.aspx">Small Basic: Instructions to Graduate and Debug with Visual Studio 2017</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>13 Aug 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/38261.small-basic-overflow.aspx">Small Basic: Overflow</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/757814/ProfileUrlRedirect.ashx">Dileepa Kariyawasam</a></td>
<td>26 Jul 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/38252.small-basic-sample-line-editor.aspx">Small Basic Sample: Line Editor</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/757814/ProfileUrlRedirect.ashx">Dileepa Kariyawasam</a></td>
<td>26 Jul 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/15889.small-basic-get-started.aspx">Small Basic: Get Started</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/2659/ProfileUrlRedirect.ashx">Peter Geelen</a></td>
<td>25 Jul 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/31652.small-basic-sample-nesting-subroutines.aspx">Small Basic Sample: Nesting Subroutines</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/187046/ProfileUrlRedirect.ashx">Nonki Takahashi</a></td>
<td>9 Jul 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/34917.small-basic-sample-code.aspx">Small Basic: Sample Code</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/858683/ProfileUrlRedirect.ashx">RajeeshMenoth</a></td>
<td>7 Jul 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/34288.small-basic-making-a-color-solarisation.aspx">Small Basic: Making a Color Solarisation</a></td>
<td><a href="https://social.technet.microsoft.com/wiki/37268/ProfileUrlRedirect.ashx">Richard Mueller</a></td>
<td>26 Jun 2017</td>
<td>Small Basic</td>
</tr>
<tr>
<td><a href="https://social.technet.microsoft.com/wiki/contents/articles/38099.small-basic-program-testing.aspx">Small Basic: Program Testing</a></td>