├── .gitignore ├── Drafts └── part 2 chapters.md ├── Dyalog └── Minutes │ ├── Markdown │ ├── .Meddy │ └── Minutes_2017-11_11.md │ └── Minutes_2017-11_11.html ├── HTML ├── 01-Introduction.html ├── 02-Structure.html ├── 03-Packaging.html ├── 04-Logging .html ├── 05-Configuration.html ├── 06-Debugging-EXEs.html ├── 07-Handling-errors.html ├── 08-Testing.html ├── 09-Documentation.html ├── 10-Make.html ├── 11-Providing-help.html ├── 12-Scheduled-Tasks.html ├── 13-Windows-Services.html ├── 14-Windows-Event-Log.html ├── 15-Windows-Registry.html ├── 16-Creating-SetUp.exe.html ├── 17-Regular-Expressions.html ├── 18-Acre.html ├── 19-GUI.html ├── 20-Git.html ├── Appendix-01_Windows-environment-vars.html ├── Appendix-02_User-commands.html ├── Appendix-03_aplcores-&-WS-integrity.html ├── Appendix-04_Development-environment.html ├── Appendix-05_Special-characters.html ├── Appendix-06_The current directory.html ├── CSS │ ├── BlackOnWhite_print.css │ ├── BlackOnWhite_screen.css │ ├── Cookbook_AllChapters_print.css │ ├── Cookbook_AllChapters_screen.css │ ├── Cookbook_Chapter_print.css │ ├── Cookbook_Chapter_screen.css │ ├── MarkAPL_print.css │ ├── MarkAPL_screen.css │ └── snap.css ├── Dyalog_Cookbook.html ├── Images │ ├── 13_ContextMenu.png │ ├── 13_DownloadTarget.png │ ├── 13_EditMarkdown.png │ ├── 13_MyHelp_1.png │ ├── 13_MyHelp_2.png │ ├── 13_ProofRead.png │ ├── 13_Structure.png │ ├── 13_Viewer.png │ ├── ContextMenu.png │ ├── DownloadTarget.png │ ├── EditMarkdown.png │ ├── Firewall_01.jpg │ ├── HelpOnWindowCaptions.png │ ├── HelpPage_1.png │ ├── HelpPage_2.png │ ├── HelpParameters.png │ ├── HelpViewer.png │ ├── LogDog.png │ ├── LogDog2.png │ ├── MyAppEventViewer.png │ ├── MyFirstHelpPage.png │ ├── MyHelp.png │ ├── MyHelp_2.png │ ├── ProofRead.png │ ├── Stand-alone-properties.png │ ├── Structure.png │ ├── WinReg_DefaultValue.png │ ├── WinReg_MyValue.png │ ├── WinReg_maxws.png │ ├── WindowsCaptions.png │ ├── WindowsCaptionsDialogBox.png │ ├── WindowsEventLog.png │ ├── _ReadMe.txt │ ├── adoc_handleerror.jpg │ ├── adoc_handleerror.png │ ├── adoc_help.jpg │ ├── adoc_help.png │ ├── adoc_myapp_01.jpg │ ├── adoc_myapp_01.png │ ├── adoc_myapp_02.jpg │ ├── adoc_myapp_02.png │ ├── adoc_myapp_03.png │ ├── aplcore_1.png │ ├── foo.png │ ├── form_01.jpg │ ├── form_01.png │ ├── gui_example.png │ ├── originals │ │ ├── IMG_0464.JPG │ │ ├── title_page 1.png │ │ ├── title_page 1.xcf │ │ ├── title_page 2.jpg │ │ └── title_page 2.xcf │ ├── scheduler_01.png │ ├── scheduler_02.png │ ├── scheduler_03.png │ ├── title_page.jpg │ └── title_page_thumb.jpg ├── JavaScript │ ├── snap.js │ └── snap.min.js └── index.html ├── Hours.xlsx ├── README.md ├── code ├── apltree │ ├── APLTreeUtils.dyalog │ ├── DateAndTime.dyalog │ ├── EventCodes.dyalog │ ├── Execute.dyalog │ ├── FilesAndDirs.dyalog │ ├── HandleError.dyalog │ ├── IniFiles.dyalog │ ├── Logger.dyalog │ ├── Markapl.dyalog │ ├── Markdown2Help │ │ ├── Markdown2Help.dws │ │ └── help │ │ │ └── files │ │ │ ├── Back_Active.bmp │ │ │ ├── Back_Inactive.bmp │ │ │ ├── CSS │ │ │ ├── print.css │ │ │ └── screen.css │ │ │ ├── FlipDB-Team.png │ │ │ ├── Markdown2Help.dcf │ │ │ ├── Next_Active.bmp │ │ │ ├── Next_Inactive.bmp │ │ │ └── help.ico │ ├── OS.dyalog │ ├── ServiceState.dyalog │ ├── SevenZip.dyalog │ ├── Tester.dyalog │ ├── WinReg.dyalog │ ├── WinSys.dyalog │ └── WindowsEventLog.dyalog ├── foo.ini.remove_me.ini ├── markapl │ ├── APLTreeUtils.dyalog │ ├── Files │ │ ├── APLTreeUtils.dyalog │ │ ├── MarkAPL.html │ │ ├── MarkAPL.md │ │ ├── MarkAPL_CheatSheet.html │ │ ├── MarkAPL_print.css │ │ ├── MarkAPL_screen.css │ │ ├── QuickIntro.html │ │ ├── ReadMe.html │ │ └── ReadMe.md │ └── Markapl.dyalog ├── v00 │ └── LetterCount.dws ├── v01 │ └── MyApp.dyalog ├── v02 │ ├── Constants.dyalog │ ├── MyApp.dyalog │ ├── MyApp.dyapp │ └── Utilities.dyalog ├── v03 │ ├── Constants.dyalog │ ├── MyApp.dyalog │ ├── MyApp.dyapp │ └── Utilities.dyalog ├── v04 │ ├── Constants.dyalog │ ├── MyApp.dyalog │ ├── MyApp.dyapp │ └── Utilities.dyalog ├── v05 │ ├── Constants.dyalog │ ├── MyApp.dyalog │ ├── MyApp.dyapp │ ├── MyApp.ini │ └── Utilities.dyalog ├── v06 │ ├── Constants.dyalog │ ├── MyApp.dyalog │ ├── MyApp.dyapp │ ├── MyApp.ini │ └── Utilities.dyalog ├── v07 │ ├── Constants.dyalog │ ├── MyApp.dyalog │ ├── MyApp.dyapp │ ├── MyApp.ini │ └── Utilities.dyalog ├── v08 │ ├── Constants.dyalog │ ├── MyApp.dyalog │ ├── MyApp.dyapp │ ├── MyApp.ini │ ├── Tests.dyalog │ └── Utilities.dyalog ├── v09 │ ├── Constants.dyalog │ ├── MyApp.dyalog │ ├── MyApp.dyapp │ ├── MyApp.ini │ ├── Tests.dyalog │ └── Utilities.dyalog ├── v10 │ ├── Constants.dyalog │ ├── DevHelpers.dyalog │ ├── Make.bat │ ├── Make.dyalog │ ├── Make.dyapp │ ├── MyApp.dyalog │ ├── MyApp.dyapp │ ├── MyApp.ini │ ├── MyApp.ini.template │ ├── MyApp │ │ ├── MyApp.ini │ │ └── images │ │ │ └── logo.ico │ ├── Tests.dyalog │ ├── Utilities.dyalog │ └── images │ │ └── logo.ico ├── v11 │ ├── Constants.dyalog │ ├── DevHelpers.dyalog │ ├── Help │ │ └── files │ │ │ ├── Back_Active.bmp │ │ │ ├── Back_Inactive.bmp │ │ │ ├── CSS │ │ │ ├── print.css │ │ │ └── screen.css │ │ │ ├── Copyright.dyalog │ │ │ ├── FlipDB-Team.png │ │ │ ├── Markdown2Help.dcf │ │ │ ├── Next_Active.bmp │ │ │ ├── Next_Inactive.bmp │ │ │ ├── TxtToCsv.dyalog │ │ │ └── ∆TopicProperties.dyalog │ ├── Make.bat │ ├── Make.dyalog │ ├── Make.dyapp │ ├── MyApp.dyalog │ ├── MyApp.dyapp │ ├── MyApp.ini │ ├── MyApp.ini.template │ ├── MyApp │ │ ├── Help │ │ │ └── files │ │ │ │ ├── Back_Active.bmp │ │ │ │ ├── Back_Inactive.bmp │ │ │ │ ├── CSS │ │ │ │ ├── print.css │ │ │ │ └── screen.css │ │ │ │ ├── Copyright.dyalog │ │ │ │ ├── FlipDB-Team.png │ │ │ │ ├── Markdown2Help.dcf │ │ │ │ ├── Next_Active.bmp │ │ │ │ ├── Next_Inactive.bmp │ │ │ │ ├── TxtToCsv.dyalog │ │ │ │ └── ∆TopicProperties.dyalog │ │ ├── MyApp.ini │ │ └── images │ │ │ └── logo.ico │ ├── MyHelp │ │ ├── Copyright.dyalog │ │ ├── TxtToCsv.dyalog │ │ └── ∆TopicProperties.dyalog │ ├── Tests.dyalog │ ├── Utilities.dyalog │ └── images │ │ └── logo.ico ├── v12 │ ├── Constants.dyalog │ ├── DevHelpers.dyalog │ ├── Help │ │ └── files │ │ │ ├── Back_Active.bmp │ │ │ ├── Back_Inactive.bmp │ │ │ ├── CSS │ │ │ ├── print.css │ │ │ └── screen.css │ │ │ ├── Copyright.dyalog │ │ │ ├── FlipDB-Team.png │ │ │ ├── Markdown2Help.dcf │ │ │ ├── Next_Active.bmp │ │ │ ├── Next_Inactive.bmp │ │ │ ├── TxtToCsv.dyalog │ │ │ └── ∆TopicProperties.dyalog │ ├── Make.bat │ ├── Make.dyalog │ ├── Make.dyapp │ ├── MyApp.dyalog │ ├── MyApp.dyapp │ ├── MyApp.ini │ ├── MyApp.ini.template │ ├── MyApp │ │ ├── Help │ │ │ └── files │ │ │ │ ├── Back_Active.bmp │ │ │ │ ├── Back_Inactive.bmp │ │ │ │ ├── CSS │ │ │ │ ├── print.css │ │ │ │ └── screen.css │ │ │ │ ├── Copyright.dyalog │ │ │ │ ├── FlipDB-Team.png │ │ │ │ ├── Markdown2Help.dcf │ │ │ │ ├── Next_Active.bmp │ │ │ │ ├── Next_Inactive.bmp │ │ │ │ ├── TxtToCsv.dyalog │ │ │ │ └── ∆TopicProperties.dyalog │ │ ├── MyApp.ini │ │ └── images │ │ │ └── logo.ico │ ├── MyHelp │ │ ├── Copyright.dyalog │ │ ├── TxtToCsv.dyalog │ │ └── ∆TopicProperties.dyalog │ ├── Tests.dyalog │ ├── Utilities.dyalog │ └── images │ │ └── logo.ico ├── v13 │ ├── Constants.dyalog │ ├── DevHelpers.dyalog │ ├── Help │ │ └── files │ │ │ ├── Back_Active.bmp │ │ │ ├── Back_Inactive.bmp │ │ │ ├── CSS │ │ │ ├── print.css │ │ │ └── screen.css │ │ │ ├── Copyright.dyalog │ │ │ ├── FlipDB-Team.png │ │ │ ├── Markdown2Help.dcf │ │ │ ├── Next_Active.bmp │ │ │ ├── Next_Inactive.bmp │ │ │ ├── TxtToCsv.dyalog │ │ │ └── ∆TopicProperties.dyalog │ ├── Install_Service.bat │ ├── Make.bat │ ├── Make.dyalog │ ├── Make.dyapp │ ├── MakeService.dyalog │ ├── MakeService.dyapp │ ├── MyApp.dyalog │ ├── MyApp.dyapp │ ├── MyApp.ini │ ├── MyApp.ini.template │ ├── MyApp │ │ ├── Help │ │ │ └── files │ │ │ │ ├── Back_Active.bmp │ │ │ │ ├── Back_Inactive.bmp │ │ │ │ ├── CSS │ │ │ │ ├── print.css │ │ │ │ └── screen.css │ │ │ │ ├── Copyright.dyalog │ │ │ │ ├── FlipDB-Team.png │ │ │ │ ├── Markdown2Help.dcf │ │ │ │ ├── Next_Active.bmp │ │ │ │ ├── Next_Inactive.bmp │ │ │ │ ├── TxtToCsv.dyalog │ │ │ │ └── ∆TopicProperties.dyalog │ │ ├── MyApp.ini │ │ └── images │ │ │ └── logo.ico │ ├── MyAppService │ │ ├── Install_Service.bat │ │ ├── MyApp.ini │ │ ├── MyAppService.dws │ │ └── Uninstall_Service.bat │ ├── MyHelp │ │ ├── Copyright.dyalog │ │ ├── TxtToCsv.dyalog │ │ └── ∆TopicProperties.dyalog │ ├── ServiceHelpers.dyalog │ ├── Tests.dyalog │ ├── TestsForServices.dyalog │ ├── Uninstall_Service.bat │ ├── Utilities.dyalog │ └── images │ │ └── logo.ico ├── v14 │ ├── Constants.dyalog │ ├── DevHelpers.dyalog │ ├── Help │ │ └── files │ │ │ ├── Back_Active.bmp │ │ │ ├── Back_Inactive.bmp │ │ │ ├── CSS │ │ │ ├── print.css │ │ │ └── screen.css │ │ │ ├── Copyright.dyalog │ │ │ ├── FlipDB-Team.png │ │ │ ├── Markdown2Help.dcf │ │ │ ├── Next_Active.bmp │ │ │ ├── Next_Inactive.bmp │ │ │ ├── TxtToCsv.dyalog │ │ │ └── ∆TopicProperties.dyalog │ ├── Install_Service.bat │ ├── Make.bat │ ├── Make.dyalog │ ├── Make.dyapp │ ├── MakeService.dyalog │ ├── MakeService.dyapp │ ├── MyApp.dyalog │ ├── MyApp.dyapp │ ├── MyApp.ini │ ├── MyApp.ini.template │ ├── MyApp │ │ ├── Help │ │ │ └── files │ │ │ │ ├── Back_Active.bmp │ │ │ │ ├── Back_Inactive.bmp │ │ │ │ ├── CSS │ │ │ │ ├── print.css │ │ │ │ └── screen.css │ │ │ │ ├── Copyright.dyalog │ │ │ │ ├── FlipDB-Team.png │ │ │ │ ├── Markdown2Help.dcf │ │ │ │ ├── Next_Active.bmp │ │ │ │ ├── Next_Inactive.bmp │ │ │ │ ├── TxtToCsv.dyalog │ │ │ │ └── ∆TopicProperties.dyalog │ │ ├── MyApp.ini │ │ └── images │ │ │ └── logo.ico │ ├── MyAppService │ │ ├── Install_Service.bat │ │ ├── MyApp.ini │ │ ├── MyAppService.dws │ │ └── Uninstall_Service.bat │ ├── MyHelp │ │ ├── Copyright.dyalog │ │ ├── TxtToCsv.dyalog │ │ └── ∆TopicProperties.dyalog │ ├── ServiceHelpers.dyalog │ ├── Tests.dyalog │ ├── TestsForServices.dyalog │ ├── Uninstall_Service.bat │ ├── Utilities.dyalog │ └── images │ │ └── logo.ico ├── v16 │ ├── Foo.dws │ ├── Foo.iss │ ├── License.txt │ ├── ReadMe_After.txt │ ├── ReadMe_Before.txt │ ├── foo.ico │ └── foo.ini.remove_me ├── v18 │ ├── MyApp.dws │ ├── MyApp │ │ └── .acre │ │ │ ├── MyApp.changes │ │ │ ├── #._MyApp.MyApp.BusinessLogic.Find.992 │ │ │ ├── #._MyApp.MyApp.GUI.CalculateMinWidth.888 │ │ │ ├── #._MyApp.MyApp.GUI.CollectData.504 │ │ │ ├── #._MyApp.MyApp.GUI.CreateGUI.631 │ │ │ ├── #._MyApp.MyApp.GUI.CreateMainForm.104 │ │ │ ├── #._MyApp.MyApp.GUI.CreateObjectTypesGroup.104 │ │ │ ├── #._MyApp.MyApp.GUI.CreateOptionsGroup.552 │ │ │ ├── #._MyApp.MyApp.GUI.CreateRegExGroup.464 │ │ │ ├── #._MyApp.MyApp.GUI.CreateScanGroup.208 │ │ │ ├── #._MyApp.MyApp.GUI.Dialogs.ShowMsg.004 │ │ │ ├── #._MyApp.MyApp.GUI.Find.832 │ │ │ ├── #._MyApp.MyApp.GUI.GetControls.624.DEL │ │ │ ├── #._MyApp.MyApp.GUI.GuiGlobals.-60-H_Gap.956.DEL │ │ │ ├── #._MyApp.MyApp.GUI.GuiGlobals.-60-V_Gap.956.DEL │ │ │ ├── #._MyApp.MyApp.GUI.GuiUtils.CreateNamespace.448 │ │ │ ├── #._MyApp.MyApp.GUI.GuiUtils.CreateNspace.056.DEL │ │ │ ├── #._MyApp.MyApp.GUI.GuiUtils.GetRef2n.080 │ │ │ ├── #._MyApp.MyApp.GUI.Init.832 │ │ │ ├── #._MyApp.MyApp.GUI.OnFind.336 │ │ │ ├── #._MyApp.MyApp.GUI.OnKeyPress.392 │ │ │ ├── #._MyApp.MyApp.GUI.OnResize.344 │ │ │ ├── #._MyApp.MyApp.GUI.Run.916 │ │ │ ├── #._MyApp.MyApp.GUI.U.CreateNspace.048.DEL │ │ │ ├── #._MyApp.MyApp.QuadVars.736 │ │ │ ├── #._MyApp.MyApp.r.200.DEL │ │ │ ├── #._MyApp.TestCases.Test_000.152.DEL │ │ │ ├── #._MyApp.TestCases.Test_01.576 │ │ │ ├── #._MyApp.TestCases.Test_02.576 │ │ │ ├── #._MyApp.TestCases.Test_03.576 │ │ │ └── #._MyApp.r.080 │ │ │ ├── MyApp.codefile │ │ │ ├── MyApp.config │ │ │ ├── MyApp.config.src │ │ │ ├── MyApp.dyapp │ │ │ └── MyApp.identity │ ├── MyApp2.dws │ └── ReadMe.md ├── v19 │ ├── GUI.dws │ └── GUI_2.dws └── workspaces │ └── WinReg.dws ├── manuscript ├── .Cookbook ├── .Meddy ├── 01-Introduction.md ├── 02-Structure.md ├── 03-Packaging.md ├── 04-Logging .md ├── 05-Configuration.md ├── 06-Debugging-EXEs.md ├── 07-Handling-errors.md ├── 08-Testing.md ├── 09-Documentation.md ├── 10-Make.md ├── 11-Providing-help.md ├── 12-Scheduled-Tasks.md ├── 13-Windows-Services.md ├── 14-Windows-Event-Log.md ├── 15-Windows-Registry.md ├── 16-Creating-SetUp.exe.md ├── 17-Regular-Expressions.md ├── 18-Acre.md ├── 19-GUI.md ├── 20-Git.md ├── Abbreviations.txt ├── Appendix-01_Windows-environment-vars.md ├── Appendix-02_User-commands.md ├── Appendix-03_aplcores-&-WS-integrity.md ├── Appendix-04_Development-environment.md ├── Appendix-05_Special-characters.md ├── Appendix-06_The current directory.md └── images │ ├── ContextMenu.png │ ├── DownloadTarget.png │ ├── EditMarkdown.png │ ├── Firewall_01.jpg │ ├── HelpOnWindowCaptions.png │ ├── HelpPage_1.png │ ├── HelpPage_2.png │ ├── HelpParameters.png │ ├── HelpViewer.png │ ├── LogDog.png │ ├── LogDog2.png │ ├── MyAppEventViewer.png │ ├── MyFirstHelpPage.png │ ├── MyHelp.png │ ├── MyHelp_2.png │ ├── ProofRead.png │ ├── Stand-alone-properties.png │ ├── Structure.png │ ├── WinReg_DefaultValue.png │ ├── WinReg_MyValue.png │ ├── WinReg_maxws.png │ ├── WindowsCaptions.png │ ├── WindowsCaptionsDialogBox.png │ ├── WindowsEventLog.png │ ├── _ReadMe.txt │ ├── adoc_handleerror.png │ ├── adoc_help.png │ ├── adoc_myapp_01.png │ ├── adoc_myapp_02.png │ ├── adoc_myapp_03.png │ ├── aplcore_1.png │ ├── foo.png │ ├── form_01.png │ ├── gui_example.png │ ├── orig_sizes │ ├── ContextMenu_orig.png │ ├── DownloadTarget_orig.png │ ├── EditMarkdown_orig.png │ ├── HelpOnWindowCaptions_orig.png │ ├── HelpPage_1_orig.png │ ├── HelpPage_2_orig.png │ ├── HelpParameters_orig.png │ ├── HelpViewer_orig.png │ ├── LogDog2_orig.png │ ├── LogDog_orig.png │ ├── MyAppEventViewer_orig.png │ ├── MyFirstHelpPage_orig.png │ ├── MyHelp_2_orig.png │ ├── MyHelp_orig.png │ ├── ProofRead_orig.png │ ├── Stand-alone-properties.png │ ├── Structure_orig.png │ ├── WinReg_DefaultValue_orig.png │ ├── WinReg_MyValue_orig.png │ ├── WinReg_maxws_orig.png │ ├── WindowsCaptionsDialogBox_orig.png │ ├── WindowsCaptions_orig.png │ ├── WindowsEventLog_orig.png │ ├── adoc_handleerror_orig.png │ ├── adoc_help_orig.png │ ├── adoc_myapp_01_orig.png │ ├── adoc_myapp_02_orig.png │ ├── adoc_myapp_03_orig.png │ ├── aplcore_1_orig.png │ ├── foo.png │ ├── form_01_orig.png │ ├── scheduler_01_orig.png │ ├── scheduler_02_orig.png │ └── scheduler_03_orig.png │ ├── originals │ ├── IMG_0464.JPG │ ├── title_page 1.png │ ├── title_page 1.xcf │ ├── title_page 2.jpg │ └── title_page 2.xcf │ ├── scheduler_01.png │ ├── scheduler_02.png │ ├── scheduler_03.png │ ├── title_page.jpg │ └── title_page_thumb.jpg └── texts ├── de ├── CasparHauser.csv ├── CasparHauser.txt ├── EffiBriest ├── EffiBriest.csv ├── Werther ├── Werther.csv └── total.csv └── en ├── ageofinnocence.txt ├── dubliners.txt ├── heartofdarkness.txt ├── metamorphosis.txt ├── pygmalion.txt ├── shakespeare.dat ├── timemachine.txt ├── ulysses.txt ├── withthesehands.txt └── wizardoz.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/.gitignore -------------------------------------------------------------------------------- /Drafts/part 2 chapters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/Drafts/part 2 chapters.md -------------------------------------------------------------------------------- /Dyalog/Minutes/Markdown/.Meddy: -------------------------------------------------------------------------------- 1 | outputPath = '..\' -------------------------------------------------------------------------------- /Dyalog/Minutes/Markdown/Minutes_2017-11_11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/Dyalog/Minutes/Markdown/Minutes_2017-11_11.md -------------------------------------------------------------------------------- /Dyalog/Minutes/Minutes_2017-11_11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/Dyalog/Minutes/Minutes_2017-11_11.html -------------------------------------------------------------------------------- /HTML/01-Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/01-Introduction.html -------------------------------------------------------------------------------- /HTML/02-Structure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/02-Structure.html -------------------------------------------------------------------------------- /HTML/03-Packaging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/03-Packaging.html -------------------------------------------------------------------------------- /HTML/04-Logging .html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/04-Logging .html -------------------------------------------------------------------------------- /HTML/05-Configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/05-Configuration.html -------------------------------------------------------------------------------- /HTML/06-Debugging-EXEs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/06-Debugging-EXEs.html -------------------------------------------------------------------------------- /HTML/07-Handling-errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/07-Handling-errors.html -------------------------------------------------------------------------------- /HTML/08-Testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/08-Testing.html -------------------------------------------------------------------------------- /HTML/09-Documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/09-Documentation.html -------------------------------------------------------------------------------- /HTML/10-Make.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/10-Make.html -------------------------------------------------------------------------------- /HTML/11-Providing-help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/11-Providing-help.html -------------------------------------------------------------------------------- /HTML/12-Scheduled-Tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/12-Scheduled-Tasks.html -------------------------------------------------------------------------------- /HTML/13-Windows-Services.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/13-Windows-Services.html -------------------------------------------------------------------------------- /HTML/14-Windows-Event-Log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/14-Windows-Event-Log.html -------------------------------------------------------------------------------- /HTML/15-Windows-Registry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/15-Windows-Registry.html -------------------------------------------------------------------------------- /HTML/16-Creating-SetUp.exe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/16-Creating-SetUp.exe.html -------------------------------------------------------------------------------- /HTML/17-Regular-Expressions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/17-Regular-Expressions.html -------------------------------------------------------------------------------- /HTML/18-Acre.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/18-Acre.html -------------------------------------------------------------------------------- /HTML/19-GUI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/19-GUI.html -------------------------------------------------------------------------------- /HTML/20-Git.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/20-Git.html -------------------------------------------------------------------------------- /HTML/Appendix-01_Windows-environment-vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Appendix-01_Windows-environment-vars.html -------------------------------------------------------------------------------- /HTML/Appendix-02_User-commands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Appendix-02_User-commands.html -------------------------------------------------------------------------------- /HTML/Appendix-03_aplcores-&-WS-integrity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Appendix-03_aplcores-&-WS-integrity.html -------------------------------------------------------------------------------- /HTML/Appendix-04_Development-environment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Appendix-04_Development-environment.html -------------------------------------------------------------------------------- /HTML/Appendix-05_Special-characters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Appendix-05_Special-characters.html -------------------------------------------------------------------------------- /HTML/Appendix-06_The current directory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Appendix-06_The current directory.html -------------------------------------------------------------------------------- /HTML/CSS/BlackOnWhite_print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/CSS/BlackOnWhite_print.css -------------------------------------------------------------------------------- /HTML/CSS/BlackOnWhite_screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/CSS/BlackOnWhite_screen.css -------------------------------------------------------------------------------- /HTML/CSS/Cookbook_AllChapters_print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/CSS/Cookbook_AllChapters_print.css -------------------------------------------------------------------------------- /HTML/CSS/Cookbook_AllChapters_screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/CSS/Cookbook_AllChapters_screen.css -------------------------------------------------------------------------------- /HTML/CSS/Cookbook_Chapter_print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/CSS/Cookbook_Chapter_print.css -------------------------------------------------------------------------------- /HTML/CSS/Cookbook_Chapter_screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/CSS/Cookbook_Chapter_screen.css -------------------------------------------------------------------------------- /HTML/CSS/MarkAPL_print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/CSS/MarkAPL_print.css -------------------------------------------------------------------------------- /HTML/CSS/MarkAPL_screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/CSS/MarkAPL_screen.css -------------------------------------------------------------------------------- /HTML/CSS/snap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/CSS/snap.css -------------------------------------------------------------------------------- /HTML/Dyalog_Cookbook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Dyalog_Cookbook.html -------------------------------------------------------------------------------- /HTML/Images/13_ContextMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/13_ContextMenu.png -------------------------------------------------------------------------------- /HTML/Images/13_DownloadTarget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/13_DownloadTarget.png -------------------------------------------------------------------------------- /HTML/Images/13_EditMarkdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/13_EditMarkdown.png -------------------------------------------------------------------------------- /HTML/Images/13_MyHelp_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/13_MyHelp_1.png -------------------------------------------------------------------------------- /HTML/Images/13_MyHelp_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/13_MyHelp_2.png -------------------------------------------------------------------------------- /HTML/Images/13_ProofRead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/13_ProofRead.png -------------------------------------------------------------------------------- /HTML/Images/13_Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/13_Structure.png -------------------------------------------------------------------------------- /HTML/Images/13_Viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/13_Viewer.png -------------------------------------------------------------------------------- /HTML/Images/ContextMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/ContextMenu.png -------------------------------------------------------------------------------- /HTML/Images/DownloadTarget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/DownloadTarget.png -------------------------------------------------------------------------------- /HTML/Images/EditMarkdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/EditMarkdown.png -------------------------------------------------------------------------------- /HTML/Images/Firewall_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/Firewall_01.jpg -------------------------------------------------------------------------------- /HTML/Images/HelpOnWindowCaptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/HelpOnWindowCaptions.png -------------------------------------------------------------------------------- /HTML/Images/HelpPage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/HelpPage_1.png -------------------------------------------------------------------------------- /HTML/Images/HelpPage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/HelpPage_2.png -------------------------------------------------------------------------------- /HTML/Images/HelpParameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/HelpParameters.png -------------------------------------------------------------------------------- /HTML/Images/HelpViewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/HelpViewer.png -------------------------------------------------------------------------------- /HTML/Images/LogDog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/LogDog.png -------------------------------------------------------------------------------- /HTML/Images/LogDog2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/LogDog2.png -------------------------------------------------------------------------------- /HTML/Images/MyAppEventViewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/MyAppEventViewer.png -------------------------------------------------------------------------------- /HTML/Images/MyFirstHelpPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/MyFirstHelpPage.png -------------------------------------------------------------------------------- /HTML/Images/MyHelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/MyHelp.png -------------------------------------------------------------------------------- /HTML/Images/MyHelp_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/MyHelp_2.png -------------------------------------------------------------------------------- /HTML/Images/ProofRead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/ProofRead.png -------------------------------------------------------------------------------- /HTML/Images/Stand-alone-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/Stand-alone-properties.png -------------------------------------------------------------------------------- /HTML/Images/Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/Structure.png -------------------------------------------------------------------------------- /HTML/Images/WinReg_DefaultValue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/WinReg_DefaultValue.png -------------------------------------------------------------------------------- /HTML/Images/WinReg_MyValue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/WinReg_MyValue.png -------------------------------------------------------------------------------- /HTML/Images/WinReg_maxws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/WinReg_maxws.png -------------------------------------------------------------------------------- /HTML/Images/WindowsCaptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/WindowsCaptions.png -------------------------------------------------------------------------------- /HTML/Images/WindowsCaptionsDialogBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/WindowsCaptionsDialogBox.png -------------------------------------------------------------------------------- /HTML/Images/WindowsEventLog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/WindowsEventLog.png -------------------------------------------------------------------------------- /HTML/Images/_ReadMe.txt: -------------------------------------------------------------------------------- 1 | All images are resized by 80% -------------------------------------------------------------------------------- /HTML/Images/adoc_handleerror.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/adoc_handleerror.jpg -------------------------------------------------------------------------------- /HTML/Images/adoc_handleerror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/adoc_handleerror.png -------------------------------------------------------------------------------- /HTML/Images/adoc_help.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/adoc_help.jpg -------------------------------------------------------------------------------- /HTML/Images/adoc_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/adoc_help.png -------------------------------------------------------------------------------- /HTML/Images/adoc_myapp_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/adoc_myapp_01.jpg -------------------------------------------------------------------------------- /HTML/Images/adoc_myapp_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/adoc_myapp_01.png -------------------------------------------------------------------------------- /HTML/Images/adoc_myapp_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/adoc_myapp_02.jpg -------------------------------------------------------------------------------- /HTML/Images/adoc_myapp_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/adoc_myapp_02.png -------------------------------------------------------------------------------- /HTML/Images/adoc_myapp_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/adoc_myapp_03.png -------------------------------------------------------------------------------- /HTML/Images/aplcore_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/aplcore_1.png -------------------------------------------------------------------------------- /HTML/Images/foo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/foo.png -------------------------------------------------------------------------------- /HTML/Images/form_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/form_01.jpg -------------------------------------------------------------------------------- /HTML/Images/form_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/form_01.png -------------------------------------------------------------------------------- /HTML/Images/gui_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/gui_example.png -------------------------------------------------------------------------------- /HTML/Images/originals/IMG_0464.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/originals/IMG_0464.JPG -------------------------------------------------------------------------------- /HTML/Images/originals/title_page 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/originals/title_page 1.png -------------------------------------------------------------------------------- /HTML/Images/originals/title_page 1.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/originals/title_page 1.xcf -------------------------------------------------------------------------------- /HTML/Images/originals/title_page 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/originals/title_page 2.jpg -------------------------------------------------------------------------------- /HTML/Images/originals/title_page 2.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/originals/title_page 2.xcf -------------------------------------------------------------------------------- /HTML/Images/scheduler_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/scheduler_01.png -------------------------------------------------------------------------------- /HTML/Images/scheduler_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/scheduler_02.png -------------------------------------------------------------------------------- /HTML/Images/scheduler_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/scheduler_03.png -------------------------------------------------------------------------------- /HTML/Images/title_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/title_page.jpg -------------------------------------------------------------------------------- /HTML/Images/title_page_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/Images/title_page_thumb.jpg -------------------------------------------------------------------------------- /HTML/JavaScript/snap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/JavaScript/snap.js -------------------------------------------------------------------------------- /HTML/JavaScript/snap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/JavaScript/snap.min.js -------------------------------------------------------------------------------- /HTML/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/HTML/index.html -------------------------------------------------------------------------------- /Hours.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/Hours.xlsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/README.md -------------------------------------------------------------------------------- /code/apltree/APLTreeUtils.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/APLTreeUtils.dyalog -------------------------------------------------------------------------------- /code/apltree/DateAndTime.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/DateAndTime.dyalog -------------------------------------------------------------------------------- /code/apltree/EventCodes.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/EventCodes.dyalog -------------------------------------------------------------------------------- /code/apltree/Execute.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/Execute.dyalog -------------------------------------------------------------------------------- /code/apltree/FilesAndDirs.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/FilesAndDirs.dyalog -------------------------------------------------------------------------------- /code/apltree/HandleError.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/HandleError.dyalog -------------------------------------------------------------------------------- /code/apltree/IniFiles.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/IniFiles.dyalog -------------------------------------------------------------------------------- /code/apltree/Logger.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/Logger.dyalog -------------------------------------------------------------------------------- /code/apltree/Markapl.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/Markapl.dyalog -------------------------------------------------------------------------------- /code/apltree/Markdown2Help/Markdown2Help.dws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/Markdown2Help/Markdown2Help.dws -------------------------------------------------------------------------------- /code/apltree/Markdown2Help/help/files/Back_Active.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/Markdown2Help/help/files/Back_Active.bmp -------------------------------------------------------------------------------- /code/apltree/Markdown2Help/help/files/Back_Inactive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/Markdown2Help/help/files/Back_Inactive.bmp -------------------------------------------------------------------------------- /code/apltree/Markdown2Help/help/files/CSS/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/Markdown2Help/help/files/CSS/print.css -------------------------------------------------------------------------------- /code/apltree/Markdown2Help/help/files/CSS/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/Markdown2Help/help/files/CSS/screen.css -------------------------------------------------------------------------------- /code/apltree/Markdown2Help/help/files/FlipDB-Team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/Markdown2Help/help/files/FlipDB-Team.png -------------------------------------------------------------------------------- /code/apltree/Markdown2Help/help/files/Markdown2Help.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/Markdown2Help/help/files/Markdown2Help.dcf -------------------------------------------------------------------------------- /code/apltree/Markdown2Help/help/files/Next_Active.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/Markdown2Help/help/files/Next_Active.bmp -------------------------------------------------------------------------------- /code/apltree/Markdown2Help/help/files/Next_Inactive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/Markdown2Help/help/files/Next_Inactive.bmp -------------------------------------------------------------------------------- /code/apltree/Markdown2Help/help/files/help.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/Markdown2Help/help/files/help.ico -------------------------------------------------------------------------------- /code/apltree/OS.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/OS.dyalog -------------------------------------------------------------------------------- /code/apltree/ServiceState.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/ServiceState.dyalog -------------------------------------------------------------------------------- /code/apltree/SevenZip.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/SevenZip.dyalog -------------------------------------------------------------------------------- /code/apltree/Tester.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/Tester.dyalog -------------------------------------------------------------------------------- /code/apltree/WinReg.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/WinReg.dyalog -------------------------------------------------------------------------------- /code/apltree/WinSys.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/WinSys.dyalog -------------------------------------------------------------------------------- /code/apltree/WindowsEventLog.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/apltree/WindowsEventLog.dyalog -------------------------------------------------------------------------------- /code/foo.ini.remove_me.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/foo.ini.remove_me.ini -------------------------------------------------------------------------------- /code/markapl/APLTreeUtils.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/markapl/APLTreeUtils.dyalog -------------------------------------------------------------------------------- /code/markapl/Files/APLTreeUtils.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/markapl/Files/APLTreeUtils.dyalog -------------------------------------------------------------------------------- /code/markapl/Files/MarkAPL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/markapl/Files/MarkAPL.html -------------------------------------------------------------------------------- /code/markapl/Files/MarkAPL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/markapl/Files/MarkAPL.md -------------------------------------------------------------------------------- /code/markapl/Files/MarkAPL_CheatSheet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/markapl/Files/MarkAPL_CheatSheet.html -------------------------------------------------------------------------------- /code/markapl/Files/MarkAPL_print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/markapl/Files/MarkAPL_print.css -------------------------------------------------------------------------------- /code/markapl/Files/MarkAPL_screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/markapl/Files/MarkAPL_screen.css -------------------------------------------------------------------------------- /code/markapl/Files/QuickIntro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/markapl/Files/QuickIntro.html -------------------------------------------------------------------------------- /code/markapl/Files/ReadMe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/markapl/Files/ReadMe.html -------------------------------------------------------------------------------- /code/markapl/Files/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/markapl/Files/ReadMe.md -------------------------------------------------------------------------------- /code/markapl/Markapl.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/markapl/Markapl.dyalog -------------------------------------------------------------------------------- /code/v00/LetterCount.dws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v00/LetterCount.dws -------------------------------------------------------------------------------- /code/v01/MyApp.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v01/MyApp.dyalog -------------------------------------------------------------------------------- /code/v02/Constants.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v02/Constants.dyalog -------------------------------------------------------------------------------- /code/v02/MyApp.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v02/MyApp.dyalog -------------------------------------------------------------------------------- /code/v02/MyApp.dyapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v02/MyApp.dyapp -------------------------------------------------------------------------------- /code/v02/Utilities.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v02/Utilities.dyalog -------------------------------------------------------------------------------- /code/v03/Constants.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v03/Constants.dyalog -------------------------------------------------------------------------------- /code/v03/MyApp.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v03/MyApp.dyalog -------------------------------------------------------------------------------- /code/v03/MyApp.dyapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v03/MyApp.dyapp -------------------------------------------------------------------------------- /code/v03/Utilities.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v03/Utilities.dyalog -------------------------------------------------------------------------------- /code/v04/Constants.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v04/Constants.dyalog -------------------------------------------------------------------------------- /code/v04/MyApp.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v04/MyApp.dyalog -------------------------------------------------------------------------------- /code/v04/MyApp.dyapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v04/MyApp.dyapp -------------------------------------------------------------------------------- /code/v04/Utilities.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v04/Utilities.dyalog -------------------------------------------------------------------------------- /code/v05/Constants.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v05/Constants.dyalog -------------------------------------------------------------------------------- /code/v05/MyApp.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v05/MyApp.dyalog -------------------------------------------------------------------------------- /code/v05/MyApp.dyapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v05/MyApp.dyapp -------------------------------------------------------------------------------- /code/v05/MyApp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v05/MyApp.ini -------------------------------------------------------------------------------- /code/v05/Utilities.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v05/Utilities.dyalog -------------------------------------------------------------------------------- /code/v06/Constants.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v06/Constants.dyalog -------------------------------------------------------------------------------- /code/v06/MyApp.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v06/MyApp.dyalog -------------------------------------------------------------------------------- /code/v06/MyApp.dyapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v06/MyApp.dyapp -------------------------------------------------------------------------------- /code/v06/MyApp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v06/MyApp.ini -------------------------------------------------------------------------------- /code/v06/Utilities.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v06/Utilities.dyalog -------------------------------------------------------------------------------- /code/v07/Constants.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v07/Constants.dyalog -------------------------------------------------------------------------------- /code/v07/MyApp.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v07/MyApp.dyalog -------------------------------------------------------------------------------- /code/v07/MyApp.dyapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v07/MyApp.dyapp -------------------------------------------------------------------------------- /code/v07/MyApp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v07/MyApp.ini -------------------------------------------------------------------------------- /code/v07/Utilities.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v07/Utilities.dyalog -------------------------------------------------------------------------------- /code/v08/Constants.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v08/Constants.dyalog -------------------------------------------------------------------------------- /code/v08/MyApp.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v08/MyApp.dyalog -------------------------------------------------------------------------------- /code/v08/MyApp.dyapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v08/MyApp.dyapp -------------------------------------------------------------------------------- /code/v08/MyApp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v08/MyApp.ini -------------------------------------------------------------------------------- /code/v08/Tests.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v08/Tests.dyalog -------------------------------------------------------------------------------- /code/v08/Utilities.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v08/Utilities.dyalog -------------------------------------------------------------------------------- /code/v09/Constants.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v09/Constants.dyalog -------------------------------------------------------------------------------- /code/v09/MyApp.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v09/MyApp.dyalog -------------------------------------------------------------------------------- /code/v09/MyApp.dyapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v09/MyApp.dyapp -------------------------------------------------------------------------------- /code/v09/MyApp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v09/MyApp.ini -------------------------------------------------------------------------------- /code/v09/Tests.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v09/Tests.dyalog -------------------------------------------------------------------------------- /code/v09/Utilities.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v09/Utilities.dyalog -------------------------------------------------------------------------------- /code/v10/Constants.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v10/Constants.dyalog -------------------------------------------------------------------------------- /code/v10/DevHelpers.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v10/DevHelpers.dyalog -------------------------------------------------------------------------------- /code/v10/Make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v10/Make.bat -------------------------------------------------------------------------------- /code/v10/Make.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v10/Make.dyalog -------------------------------------------------------------------------------- /code/v10/Make.dyapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v10/Make.dyapp -------------------------------------------------------------------------------- /code/v10/MyApp.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v10/MyApp.dyalog -------------------------------------------------------------------------------- /code/v10/MyApp.dyapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v10/MyApp.dyapp -------------------------------------------------------------------------------- /code/v10/MyApp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v10/MyApp.ini -------------------------------------------------------------------------------- /code/v10/MyApp.ini.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v10/MyApp.ini.template -------------------------------------------------------------------------------- /code/v10/MyApp/MyApp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v10/MyApp/MyApp.ini -------------------------------------------------------------------------------- /code/v10/MyApp/images/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v10/MyApp/images/logo.ico -------------------------------------------------------------------------------- /code/v10/Tests.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v10/Tests.dyalog -------------------------------------------------------------------------------- /code/v10/Utilities.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v10/Utilities.dyalog -------------------------------------------------------------------------------- /code/v10/images/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v10/images/logo.ico -------------------------------------------------------------------------------- /code/v11/Constants.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/Constants.dyalog -------------------------------------------------------------------------------- /code/v11/DevHelpers.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/DevHelpers.dyalog -------------------------------------------------------------------------------- /code/v11/Help/files/Back_Active.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/Help/files/Back_Active.bmp -------------------------------------------------------------------------------- /code/v11/Help/files/Back_Inactive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/Help/files/Back_Inactive.bmp -------------------------------------------------------------------------------- /code/v11/Help/files/CSS/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/Help/files/CSS/print.css -------------------------------------------------------------------------------- /code/v11/Help/files/CSS/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/Help/files/CSS/screen.css -------------------------------------------------------------------------------- /code/v11/Help/files/Copyright.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/Help/files/Copyright.dyalog -------------------------------------------------------------------------------- /code/v11/Help/files/FlipDB-Team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/Help/files/FlipDB-Team.png -------------------------------------------------------------------------------- /code/v11/Help/files/Markdown2Help.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/Help/files/Markdown2Help.dcf -------------------------------------------------------------------------------- /code/v11/Help/files/Next_Active.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/Help/files/Next_Active.bmp -------------------------------------------------------------------------------- /code/v11/Help/files/Next_Inactive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/Help/files/Next_Inactive.bmp -------------------------------------------------------------------------------- /code/v11/Help/files/TxtToCsv.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/Help/files/TxtToCsv.dyalog -------------------------------------------------------------------------------- /code/v11/Help/files/∆TopicProperties.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/Help/files/∆TopicProperties.dyalog -------------------------------------------------------------------------------- /code/v11/Make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/Make.bat -------------------------------------------------------------------------------- /code/v11/Make.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/Make.dyalog -------------------------------------------------------------------------------- /code/v11/Make.dyapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/Make.dyapp -------------------------------------------------------------------------------- /code/v11/MyApp.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/MyApp.dyalog -------------------------------------------------------------------------------- /code/v11/MyApp.dyapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/MyApp.dyapp -------------------------------------------------------------------------------- /code/v11/MyApp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/MyApp.ini -------------------------------------------------------------------------------- /code/v11/MyApp.ini.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/MyApp.ini.template -------------------------------------------------------------------------------- /code/v11/MyApp/Help/files/Back_Active.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/MyApp/Help/files/Back_Active.bmp -------------------------------------------------------------------------------- /code/v11/MyApp/Help/files/Back_Inactive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/MyApp/Help/files/Back_Inactive.bmp -------------------------------------------------------------------------------- /code/v11/MyApp/Help/files/CSS/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/MyApp/Help/files/CSS/print.css -------------------------------------------------------------------------------- /code/v11/MyApp/Help/files/CSS/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/MyApp/Help/files/CSS/screen.css -------------------------------------------------------------------------------- /code/v11/MyApp/Help/files/Copyright.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/MyApp/Help/files/Copyright.dyalog -------------------------------------------------------------------------------- /code/v11/MyApp/Help/files/FlipDB-Team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/MyApp/Help/files/FlipDB-Team.png -------------------------------------------------------------------------------- /code/v11/MyApp/Help/files/Markdown2Help.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/MyApp/Help/files/Markdown2Help.dcf -------------------------------------------------------------------------------- /code/v11/MyApp/Help/files/Next_Active.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/MyApp/Help/files/Next_Active.bmp -------------------------------------------------------------------------------- /code/v11/MyApp/Help/files/Next_Inactive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/MyApp/Help/files/Next_Inactive.bmp -------------------------------------------------------------------------------- /code/v11/MyApp/Help/files/TxtToCsv.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/MyApp/Help/files/TxtToCsv.dyalog -------------------------------------------------------------------------------- /code/v11/MyApp/Help/files/∆TopicProperties.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/MyApp/Help/files/∆TopicProperties.dyalog -------------------------------------------------------------------------------- /code/v11/MyApp/MyApp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/MyApp/MyApp.ini -------------------------------------------------------------------------------- /code/v11/MyApp/images/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/MyApp/images/logo.ico -------------------------------------------------------------------------------- /code/v11/MyHelp/Copyright.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/MyHelp/Copyright.dyalog -------------------------------------------------------------------------------- /code/v11/MyHelp/TxtToCsv.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/MyHelp/TxtToCsv.dyalog -------------------------------------------------------------------------------- /code/v11/MyHelp/∆TopicProperties.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/MyHelp/∆TopicProperties.dyalog -------------------------------------------------------------------------------- /code/v11/Tests.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/Tests.dyalog -------------------------------------------------------------------------------- /code/v11/Utilities.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/Utilities.dyalog -------------------------------------------------------------------------------- /code/v11/images/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v11/images/logo.ico -------------------------------------------------------------------------------- /code/v12/Constants.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/Constants.dyalog -------------------------------------------------------------------------------- /code/v12/DevHelpers.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/DevHelpers.dyalog -------------------------------------------------------------------------------- /code/v12/Help/files/Back_Active.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/Help/files/Back_Active.bmp -------------------------------------------------------------------------------- /code/v12/Help/files/Back_Inactive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/Help/files/Back_Inactive.bmp -------------------------------------------------------------------------------- /code/v12/Help/files/CSS/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/Help/files/CSS/print.css -------------------------------------------------------------------------------- /code/v12/Help/files/CSS/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/Help/files/CSS/screen.css -------------------------------------------------------------------------------- /code/v12/Help/files/Copyright.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/Help/files/Copyright.dyalog -------------------------------------------------------------------------------- /code/v12/Help/files/FlipDB-Team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/Help/files/FlipDB-Team.png -------------------------------------------------------------------------------- /code/v12/Help/files/Markdown2Help.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/Help/files/Markdown2Help.dcf -------------------------------------------------------------------------------- /code/v12/Help/files/Next_Active.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/Help/files/Next_Active.bmp -------------------------------------------------------------------------------- /code/v12/Help/files/Next_Inactive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/Help/files/Next_Inactive.bmp -------------------------------------------------------------------------------- /code/v12/Help/files/TxtToCsv.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/Help/files/TxtToCsv.dyalog -------------------------------------------------------------------------------- /code/v12/Help/files/∆TopicProperties.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/Help/files/∆TopicProperties.dyalog -------------------------------------------------------------------------------- /code/v12/Make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/Make.bat -------------------------------------------------------------------------------- /code/v12/Make.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/Make.dyalog -------------------------------------------------------------------------------- /code/v12/Make.dyapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/Make.dyapp -------------------------------------------------------------------------------- /code/v12/MyApp.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/MyApp.dyalog -------------------------------------------------------------------------------- /code/v12/MyApp.dyapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/MyApp.dyapp -------------------------------------------------------------------------------- /code/v12/MyApp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/MyApp.ini -------------------------------------------------------------------------------- /code/v12/MyApp.ini.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/MyApp.ini.template -------------------------------------------------------------------------------- /code/v12/MyApp/Help/files/Back_Active.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/MyApp/Help/files/Back_Active.bmp -------------------------------------------------------------------------------- /code/v12/MyApp/Help/files/Back_Inactive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/MyApp/Help/files/Back_Inactive.bmp -------------------------------------------------------------------------------- /code/v12/MyApp/Help/files/CSS/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/MyApp/Help/files/CSS/print.css -------------------------------------------------------------------------------- /code/v12/MyApp/Help/files/CSS/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/MyApp/Help/files/CSS/screen.css -------------------------------------------------------------------------------- /code/v12/MyApp/Help/files/Copyright.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/MyApp/Help/files/Copyright.dyalog -------------------------------------------------------------------------------- /code/v12/MyApp/Help/files/FlipDB-Team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/MyApp/Help/files/FlipDB-Team.png -------------------------------------------------------------------------------- /code/v12/MyApp/Help/files/Markdown2Help.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/MyApp/Help/files/Markdown2Help.dcf -------------------------------------------------------------------------------- /code/v12/MyApp/Help/files/Next_Active.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/MyApp/Help/files/Next_Active.bmp -------------------------------------------------------------------------------- /code/v12/MyApp/Help/files/Next_Inactive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/MyApp/Help/files/Next_Inactive.bmp -------------------------------------------------------------------------------- /code/v12/MyApp/Help/files/TxtToCsv.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/MyApp/Help/files/TxtToCsv.dyalog -------------------------------------------------------------------------------- /code/v12/MyApp/Help/files/∆TopicProperties.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/MyApp/Help/files/∆TopicProperties.dyalog -------------------------------------------------------------------------------- /code/v12/MyApp/MyApp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/MyApp/MyApp.ini -------------------------------------------------------------------------------- /code/v12/MyApp/images/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/MyApp/images/logo.ico -------------------------------------------------------------------------------- /code/v12/MyHelp/Copyright.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/MyHelp/Copyright.dyalog -------------------------------------------------------------------------------- /code/v12/MyHelp/TxtToCsv.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/MyHelp/TxtToCsv.dyalog -------------------------------------------------------------------------------- /code/v12/MyHelp/∆TopicProperties.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/MyHelp/∆TopicProperties.dyalog -------------------------------------------------------------------------------- /code/v12/Tests.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/Tests.dyalog -------------------------------------------------------------------------------- /code/v12/Utilities.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/Utilities.dyalog -------------------------------------------------------------------------------- /code/v12/images/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v12/images/logo.ico -------------------------------------------------------------------------------- /code/v13/Constants.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/Constants.dyalog -------------------------------------------------------------------------------- /code/v13/DevHelpers.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/DevHelpers.dyalog -------------------------------------------------------------------------------- /code/v13/Help/files/Back_Active.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/Help/files/Back_Active.bmp -------------------------------------------------------------------------------- /code/v13/Help/files/Back_Inactive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/Help/files/Back_Inactive.bmp -------------------------------------------------------------------------------- /code/v13/Help/files/CSS/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/Help/files/CSS/print.css -------------------------------------------------------------------------------- /code/v13/Help/files/CSS/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/Help/files/CSS/screen.css -------------------------------------------------------------------------------- /code/v13/Help/files/Copyright.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/Help/files/Copyright.dyalog -------------------------------------------------------------------------------- /code/v13/Help/files/FlipDB-Team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/Help/files/FlipDB-Team.png -------------------------------------------------------------------------------- /code/v13/Help/files/Markdown2Help.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/Help/files/Markdown2Help.dcf -------------------------------------------------------------------------------- /code/v13/Help/files/Next_Active.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/Help/files/Next_Active.bmp -------------------------------------------------------------------------------- /code/v13/Help/files/Next_Inactive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/Help/files/Next_Inactive.bmp -------------------------------------------------------------------------------- /code/v13/Help/files/TxtToCsv.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/Help/files/TxtToCsv.dyalog -------------------------------------------------------------------------------- /code/v13/Help/files/∆TopicProperties.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/Help/files/∆TopicProperties.dyalog -------------------------------------------------------------------------------- /code/v13/Install_Service.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/Install_Service.bat -------------------------------------------------------------------------------- /code/v13/Make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/Make.bat -------------------------------------------------------------------------------- /code/v13/Make.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/Make.dyalog -------------------------------------------------------------------------------- /code/v13/Make.dyapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/Make.dyapp -------------------------------------------------------------------------------- /code/v13/MakeService.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MakeService.dyalog -------------------------------------------------------------------------------- /code/v13/MakeService.dyapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MakeService.dyapp -------------------------------------------------------------------------------- /code/v13/MyApp.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyApp.dyalog -------------------------------------------------------------------------------- /code/v13/MyApp.dyapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyApp.dyapp -------------------------------------------------------------------------------- /code/v13/MyApp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyApp.ini -------------------------------------------------------------------------------- /code/v13/MyApp.ini.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyApp.ini.template -------------------------------------------------------------------------------- /code/v13/MyApp/Help/files/Back_Active.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyApp/Help/files/Back_Active.bmp -------------------------------------------------------------------------------- /code/v13/MyApp/Help/files/Back_Inactive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyApp/Help/files/Back_Inactive.bmp -------------------------------------------------------------------------------- /code/v13/MyApp/Help/files/CSS/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyApp/Help/files/CSS/print.css -------------------------------------------------------------------------------- /code/v13/MyApp/Help/files/CSS/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyApp/Help/files/CSS/screen.css -------------------------------------------------------------------------------- /code/v13/MyApp/Help/files/Copyright.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyApp/Help/files/Copyright.dyalog -------------------------------------------------------------------------------- /code/v13/MyApp/Help/files/FlipDB-Team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyApp/Help/files/FlipDB-Team.png -------------------------------------------------------------------------------- /code/v13/MyApp/Help/files/Markdown2Help.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyApp/Help/files/Markdown2Help.dcf -------------------------------------------------------------------------------- /code/v13/MyApp/Help/files/Next_Active.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyApp/Help/files/Next_Active.bmp -------------------------------------------------------------------------------- /code/v13/MyApp/Help/files/Next_Inactive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyApp/Help/files/Next_Inactive.bmp -------------------------------------------------------------------------------- /code/v13/MyApp/Help/files/TxtToCsv.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyApp/Help/files/TxtToCsv.dyalog -------------------------------------------------------------------------------- /code/v13/MyApp/Help/files/∆TopicProperties.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyApp/Help/files/∆TopicProperties.dyalog -------------------------------------------------------------------------------- /code/v13/MyApp/MyApp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyApp/MyApp.ini -------------------------------------------------------------------------------- /code/v13/MyApp/images/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyApp/images/logo.ico -------------------------------------------------------------------------------- /code/v13/MyAppService/Install_Service.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyAppService/Install_Service.bat -------------------------------------------------------------------------------- /code/v13/MyAppService/MyApp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyAppService/MyApp.ini -------------------------------------------------------------------------------- /code/v13/MyAppService/MyAppService.dws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyAppService/MyAppService.dws -------------------------------------------------------------------------------- /code/v13/MyAppService/Uninstall_Service.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyAppService/Uninstall_Service.bat -------------------------------------------------------------------------------- /code/v13/MyHelp/Copyright.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyHelp/Copyright.dyalog -------------------------------------------------------------------------------- /code/v13/MyHelp/TxtToCsv.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyHelp/TxtToCsv.dyalog -------------------------------------------------------------------------------- /code/v13/MyHelp/∆TopicProperties.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/MyHelp/∆TopicProperties.dyalog -------------------------------------------------------------------------------- /code/v13/ServiceHelpers.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/ServiceHelpers.dyalog -------------------------------------------------------------------------------- /code/v13/Tests.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/Tests.dyalog -------------------------------------------------------------------------------- /code/v13/TestsForServices.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/TestsForServices.dyalog -------------------------------------------------------------------------------- /code/v13/Uninstall_Service.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/Uninstall_Service.bat -------------------------------------------------------------------------------- /code/v13/Utilities.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/Utilities.dyalog -------------------------------------------------------------------------------- /code/v13/images/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v13/images/logo.ico -------------------------------------------------------------------------------- /code/v14/Constants.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/Constants.dyalog -------------------------------------------------------------------------------- /code/v14/DevHelpers.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/DevHelpers.dyalog -------------------------------------------------------------------------------- /code/v14/Help/files/Back_Active.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/Help/files/Back_Active.bmp -------------------------------------------------------------------------------- /code/v14/Help/files/Back_Inactive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/Help/files/Back_Inactive.bmp -------------------------------------------------------------------------------- /code/v14/Help/files/CSS/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/Help/files/CSS/print.css -------------------------------------------------------------------------------- /code/v14/Help/files/CSS/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/Help/files/CSS/screen.css -------------------------------------------------------------------------------- /code/v14/Help/files/Copyright.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/Help/files/Copyright.dyalog -------------------------------------------------------------------------------- /code/v14/Help/files/FlipDB-Team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/Help/files/FlipDB-Team.png -------------------------------------------------------------------------------- /code/v14/Help/files/Markdown2Help.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/Help/files/Markdown2Help.dcf -------------------------------------------------------------------------------- /code/v14/Help/files/Next_Active.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/Help/files/Next_Active.bmp -------------------------------------------------------------------------------- /code/v14/Help/files/Next_Inactive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/Help/files/Next_Inactive.bmp -------------------------------------------------------------------------------- /code/v14/Help/files/TxtToCsv.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/Help/files/TxtToCsv.dyalog -------------------------------------------------------------------------------- /code/v14/Help/files/∆TopicProperties.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/Help/files/∆TopicProperties.dyalog -------------------------------------------------------------------------------- /code/v14/Install_Service.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/Install_Service.bat -------------------------------------------------------------------------------- /code/v14/Make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/Make.bat -------------------------------------------------------------------------------- /code/v14/Make.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/Make.dyalog -------------------------------------------------------------------------------- /code/v14/Make.dyapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/Make.dyapp -------------------------------------------------------------------------------- /code/v14/MakeService.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MakeService.dyalog -------------------------------------------------------------------------------- /code/v14/MakeService.dyapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MakeService.dyapp -------------------------------------------------------------------------------- /code/v14/MyApp.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyApp.dyalog -------------------------------------------------------------------------------- /code/v14/MyApp.dyapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyApp.dyapp -------------------------------------------------------------------------------- /code/v14/MyApp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyApp.ini -------------------------------------------------------------------------------- /code/v14/MyApp.ini.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyApp.ini.template -------------------------------------------------------------------------------- /code/v14/MyApp/Help/files/Back_Active.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyApp/Help/files/Back_Active.bmp -------------------------------------------------------------------------------- /code/v14/MyApp/Help/files/Back_Inactive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyApp/Help/files/Back_Inactive.bmp -------------------------------------------------------------------------------- /code/v14/MyApp/Help/files/CSS/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyApp/Help/files/CSS/print.css -------------------------------------------------------------------------------- /code/v14/MyApp/Help/files/CSS/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyApp/Help/files/CSS/screen.css -------------------------------------------------------------------------------- /code/v14/MyApp/Help/files/Copyright.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyApp/Help/files/Copyright.dyalog -------------------------------------------------------------------------------- /code/v14/MyApp/Help/files/FlipDB-Team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyApp/Help/files/FlipDB-Team.png -------------------------------------------------------------------------------- /code/v14/MyApp/Help/files/Markdown2Help.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyApp/Help/files/Markdown2Help.dcf -------------------------------------------------------------------------------- /code/v14/MyApp/Help/files/Next_Active.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyApp/Help/files/Next_Active.bmp -------------------------------------------------------------------------------- /code/v14/MyApp/Help/files/Next_Inactive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyApp/Help/files/Next_Inactive.bmp -------------------------------------------------------------------------------- /code/v14/MyApp/Help/files/TxtToCsv.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyApp/Help/files/TxtToCsv.dyalog -------------------------------------------------------------------------------- /code/v14/MyApp/Help/files/∆TopicProperties.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyApp/Help/files/∆TopicProperties.dyalog -------------------------------------------------------------------------------- /code/v14/MyApp/MyApp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyApp/MyApp.ini -------------------------------------------------------------------------------- /code/v14/MyApp/images/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyApp/images/logo.ico -------------------------------------------------------------------------------- /code/v14/MyAppService/Install_Service.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyAppService/Install_Service.bat -------------------------------------------------------------------------------- /code/v14/MyAppService/MyApp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyAppService/MyApp.ini -------------------------------------------------------------------------------- /code/v14/MyAppService/MyAppService.dws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyAppService/MyAppService.dws -------------------------------------------------------------------------------- /code/v14/MyAppService/Uninstall_Service.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyAppService/Uninstall_Service.bat -------------------------------------------------------------------------------- /code/v14/MyHelp/Copyright.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyHelp/Copyright.dyalog -------------------------------------------------------------------------------- /code/v14/MyHelp/TxtToCsv.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyHelp/TxtToCsv.dyalog -------------------------------------------------------------------------------- /code/v14/MyHelp/∆TopicProperties.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/MyHelp/∆TopicProperties.dyalog -------------------------------------------------------------------------------- /code/v14/ServiceHelpers.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/ServiceHelpers.dyalog -------------------------------------------------------------------------------- /code/v14/Tests.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/Tests.dyalog -------------------------------------------------------------------------------- /code/v14/TestsForServices.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/TestsForServices.dyalog -------------------------------------------------------------------------------- /code/v14/Uninstall_Service.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/Uninstall_Service.bat -------------------------------------------------------------------------------- /code/v14/Utilities.dyalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/Utilities.dyalog -------------------------------------------------------------------------------- /code/v14/images/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v14/images/logo.ico -------------------------------------------------------------------------------- /code/v16/Foo.dws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v16/Foo.dws -------------------------------------------------------------------------------- /code/v16/Foo.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v16/Foo.iss -------------------------------------------------------------------------------- /code/v16/License.txt: -------------------------------------------------------------------------------- 1 | The License -------------------------------------------------------------------------------- /code/v16/ReadMe_After.txt: -------------------------------------------------------------------------------- 1 | After -------------------------------------------------------------------------------- /code/v16/ReadMe_Before.txt: -------------------------------------------------------------------------------- 1 | Before -------------------------------------------------------------------------------- /code/v16/foo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v16/foo.ico -------------------------------------------------------------------------------- /code/v16/foo.ini.remove_me: -------------------------------------------------------------------------------- 1 | ; INI file of the Foo application (not really used) 2 | 3 | [Config] -------------------------------------------------------------------------------- /code/v18/MyApp.dws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp.dws -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.BusinessLogic.Find.992: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.BusinessLogic.Find.992 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.CalculateMinWidth.888: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.CalculateMinWidth.888 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.CollectData.504: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.CollectData.504 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.CreateGUI.631: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.CreateGUI.631 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.CreateMainForm.104: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.CreateMainForm.104 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.CreateObjectTypesGroup.104: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.CreateObjectTypesGroup.104 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.CreateOptionsGroup.552: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.CreateOptionsGroup.552 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.CreateRegExGroup.464: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.CreateRegExGroup.464 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.CreateScanGroup.208: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.CreateScanGroup.208 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.Dialogs.ShowMsg.004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.Dialogs.ShowMsg.004 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.Find.832: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.Find.832 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.GetControls.624.DEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.GetControls.624.DEL -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.GuiGlobals.-60-H_Gap.956.DEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.GuiGlobals.-60-H_Gap.956.DEL -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.GuiGlobals.-60-V_Gap.956.DEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.GuiGlobals.-60-V_Gap.956.DEL -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.GuiUtils.CreateNamespace.448: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.GuiUtils.CreateNamespace.448 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.GuiUtils.CreateNspace.056.DEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.GuiUtils.CreateNspace.056.DEL -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.GuiUtils.GetRef2n.080: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.GuiUtils.GetRef2n.080 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.Init.832: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.Init.832 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.OnFind.336: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.OnFind.336 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.OnKeyPress.392: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.OnKeyPress.392 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.OnResize.344: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.OnResize.344 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.Run.916: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.Run.916 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.U.CreateNspace.048.DEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.GUI.U.CreateNspace.048.DEL -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.QuadVars.736: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.QuadVars.736 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.r.200.DEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.MyApp.r.200.DEL -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.TestCases.Test_000.152.DEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.TestCases.Test_000.152.DEL -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.TestCases.Test_01.576: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.TestCases.Test_01.576 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.TestCases.Test_02.576: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.TestCases.Test_02.576 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.TestCases.Test_03.576: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.TestCases.Test_03.576 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.changes/#._MyApp.r.080: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.changes/#._MyApp.r.080 -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.codefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.codefile -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.config -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.config.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.config.src -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.dyapp: -------------------------------------------------------------------------------- 1 | Run ⎕SE.UCMD'OpenProject "c:/T/TheDyalogCookbook/code/v99/MyApp"' 2 | -------------------------------------------------------------------------------- /code/v18/MyApp/.acre/MyApp.identity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp/.acre/MyApp.identity -------------------------------------------------------------------------------- /code/v18/MyApp2.dws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/MyApp2.dws -------------------------------------------------------------------------------- /code/v18/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v18/ReadMe.md -------------------------------------------------------------------------------- /code/v19/GUI.dws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v19/GUI.dws -------------------------------------------------------------------------------- /code/v19/GUI_2.dws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/v19/GUI_2.dws -------------------------------------------------------------------------------- /code/workspaces/WinReg.dws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/code/workspaces/WinReg.dws -------------------------------------------------------------------------------- /manuscript/.Cookbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/.Cookbook -------------------------------------------------------------------------------- /manuscript/.Meddy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/.Meddy -------------------------------------------------------------------------------- /manuscript/01-Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/01-Introduction.md -------------------------------------------------------------------------------- /manuscript/02-Structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/02-Structure.md -------------------------------------------------------------------------------- /manuscript/03-Packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/03-Packaging.md -------------------------------------------------------------------------------- /manuscript/04-Logging .md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/04-Logging .md -------------------------------------------------------------------------------- /manuscript/05-Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/05-Configuration.md -------------------------------------------------------------------------------- /manuscript/06-Debugging-EXEs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/06-Debugging-EXEs.md -------------------------------------------------------------------------------- /manuscript/07-Handling-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/07-Handling-errors.md -------------------------------------------------------------------------------- /manuscript/08-Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/08-Testing.md -------------------------------------------------------------------------------- /manuscript/09-Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/09-Documentation.md -------------------------------------------------------------------------------- /manuscript/10-Make.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/10-Make.md -------------------------------------------------------------------------------- /manuscript/11-Providing-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/11-Providing-help.md -------------------------------------------------------------------------------- /manuscript/12-Scheduled-Tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/12-Scheduled-Tasks.md -------------------------------------------------------------------------------- /manuscript/13-Windows-Services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/13-Windows-Services.md -------------------------------------------------------------------------------- /manuscript/14-Windows-Event-Log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/14-Windows-Event-Log.md -------------------------------------------------------------------------------- /manuscript/15-Windows-Registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/15-Windows-Registry.md -------------------------------------------------------------------------------- /manuscript/16-Creating-SetUp.exe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/16-Creating-SetUp.exe.md -------------------------------------------------------------------------------- /manuscript/17-Regular-Expressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/17-Regular-Expressions.md -------------------------------------------------------------------------------- /manuscript/18-Acre.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/18-Acre.md -------------------------------------------------------------------------------- /manuscript/19-GUI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/19-GUI.md -------------------------------------------------------------------------------- /manuscript/20-Git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/20-Git.md -------------------------------------------------------------------------------- /manuscript/Abbreviations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/Abbreviations.txt -------------------------------------------------------------------------------- /manuscript/Appendix-01_Windows-environment-vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/Appendix-01_Windows-environment-vars.md -------------------------------------------------------------------------------- /manuscript/Appendix-02_User-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/Appendix-02_User-commands.md -------------------------------------------------------------------------------- /manuscript/Appendix-03_aplcores-&-WS-integrity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/Appendix-03_aplcores-&-WS-integrity.md -------------------------------------------------------------------------------- /manuscript/Appendix-04_Development-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/Appendix-04_Development-environment.md -------------------------------------------------------------------------------- /manuscript/Appendix-05_Special-characters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/Appendix-05_Special-characters.md -------------------------------------------------------------------------------- /manuscript/Appendix-06_The current directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/Appendix-06_The current directory.md -------------------------------------------------------------------------------- /manuscript/images/ContextMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/ContextMenu.png -------------------------------------------------------------------------------- /manuscript/images/DownloadTarget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/DownloadTarget.png -------------------------------------------------------------------------------- /manuscript/images/EditMarkdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/EditMarkdown.png -------------------------------------------------------------------------------- /manuscript/images/Firewall_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/Firewall_01.jpg -------------------------------------------------------------------------------- /manuscript/images/HelpOnWindowCaptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/HelpOnWindowCaptions.png -------------------------------------------------------------------------------- /manuscript/images/HelpPage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/HelpPage_1.png -------------------------------------------------------------------------------- /manuscript/images/HelpPage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/HelpPage_2.png -------------------------------------------------------------------------------- /manuscript/images/HelpParameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/HelpParameters.png -------------------------------------------------------------------------------- /manuscript/images/HelpViewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/HelpViewer.png -------------------------------------------------------------------------------- /manuscript/images/LogDog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/LogDog.png -------------------------------------------------------------------------------- /manuscript/images/LogDog2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/LogDog2.png -------------------------------------------------------------------------------- /manuscript/images/MyAppEventViewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/MyAppEventViewer.png -------------------------------------------------------------------------------- /manuscript/images/MyFirstHelpPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/MyFirstHelpPage.png -------------------------------------------------------------------------------- /manuscript/images/MyHelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/MyHelp.png -------------------------------------------------------------------------------- /manuscript/images/MyHelp_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/MyHelp_2.png -------------------------------------------------------------------------------- /manuscript/images/ProofRead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/ProofRead.png -------------------------------------------------------------------------------- /manuscript/images/Stand-alone-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/Stand-alone-properties.png -------------------------------------------------------------------------------- /manuscript/images/Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/Structure.png -------------------------------------------------------------------------------- /manuscript/images/WinReg_DefaultValue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/WinReg_DefaultValue.png -------------------------------------------------------------------------------- /manuscript/images/WinReg_MyValue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/WinReg_MyValue.png -------------------------------------------------------------------------------- /manuscript/images/WinReg_maxws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/WinReg_maxws.png -------------------------------------------------------------------------------- /manuscript/images/WindowsCaptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/WindowsCaptions.png -------------------------------------------------------------------------------- /manuscript/images/WindowsCaptionsDialogBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/WindowsCaptionsDialogBox.png -------------------------------------------------------------------------------- /manuscript/images/WindowsEventLog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/WindowsEventLog.png -------------------------------------------------------------------------------- /manuscript/images/_ReadMe.txt: -------------------------------------------------------------------------------- 1 | All images are resized by 80% -------------------------------------------------------------------------------- /manuscript/images/adoc_handleerror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/adoc_handleerror.png -------------------------------------------------------------------------------- /manuscript/images/adoc_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/adoc_help.png -------------------------------------------------------------------------------- /manuscript/images/adoc_myapp_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/adoc_myapp_01.png -------------------------------------------------------------------------------- /manuscript/images/adoc_myapp_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/adoc_myapp_02.png -------------------------------------------------------------------------------- /manuscript/images/adoc_myapp_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/adoc_myapp_03.png -------------------------------------------------------------------------------- /manuscript/images/aplcore_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/aplcore_1.png -------------------------------------------------------------------------------- /manuscript/images/foo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/foo.png -------------------------------------------------------------------------------- /manuscript/images/form_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/form_01.png -------------------------------------------------------------------------------- /manuscript/images/gui_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/gui_example.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/ContextMenu_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/ContextMenu_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/DownloadTarget_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/DownloadTarget_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/EditMarkdown_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/EditMarkdown_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/HelpOnWindowCaptions_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/HelpOnWindowCaptions_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/HelpPage_1_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/HelpPage_1_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/HelpPage_2_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/HelpPage_2_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/HelpParameters_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/HelpParameters_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/HelpViewer_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/HelpViewer_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/LogDog2_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/LogDog2_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/LogDog_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/LogDog_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/MyAppEventViewer_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/MyAppEventViewer_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/MyFirstHelpPage_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/MyFirstHelpPage_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/MyHelp_2_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/MyHelp_2_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/MyHelp_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/MyHelp_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/ProofRead_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/ProofRead_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/Stand-alone-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/Stand-alone-properties.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/Structure_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/Structure_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/WinReg_DefaultValue_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/WinReg_DefaultValue_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/WinReg_MyValue_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/WinReg_MyValue_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/WinReg_maxws_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/WinReg_maxws_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/WindowsCaptionsDialogBox_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/WindowsCaptionsDialogBox_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/WindowsCaptions_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/WindowsCaptions_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/WindowsEventLog_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/WindowsEventLog_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/adoc_handleerror_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/adoc_handleerror_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/adoc_help_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/adoc_help_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/adoc_myapp_01_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/adoc_myapp_01_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/adoc_myapp_02_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/adoc_myapp_02_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/adoc_myapp_03_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/adoc_myapp_03_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/aplcore_1_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/aplcore_1_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/foo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/foo.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/form_01_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/form_01_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/scheduler_01_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/scheduler_01_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/scheduler_02_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/scheduler_02_orig.png -------------------------------------------------------------------------------- /manuscript/images/orig_sizes/scheduler_03_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/orig_sizes/scheduler_03_orig.png -------------------------------------------------------------------------------- /manuscript/images/originals/IMG_0464.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/originals/IMG_0464.JPG -------------------------------------------------------------------------------- /manuscript/images/originals/title_page 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/originals/title_page 1.png -------------------------------------------------------------------------------- /manuscript/images/originals/title_page 1.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/originals/title_page 1.xcf -------------------------------------------------------------------------------- /manuscript/images/originals/title_page 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/originals/title_page 2.jpg -------------------------------------------------------------------------------- /manuscript/images/originals/title_page 2.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/originals/title_page 2.xcf -------------------------------------------------------------------------------- /manuscript/images/scheduler_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/scheduler_01.png -------------------------------------------------------------------------------- /manuscript/images/scheduler_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/scheduler_02.png -------------------------------------------------------------------------------- /manuscript/images/scheduler_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/scheduler_03.png -------------------------------------------------------------------------------- /manuscript/images/title_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/title_page.jpg -------------------------------------------------------------------------------- /manuscript/images/title_page_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/manuscript/images/title_page_thumb.jpg -------------------------------------------------------------------------------- /texts/de/CasparHauser.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/texts/de/CasparHauser.csv -------------------------------------------------------------------------------- /texts/de/CasparHauser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/texts/de/CasparHauser.txt -------------------------------------------------------------------------------- /texts/de/EffiBriest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/texts/de/EffiBriest -------------------------------------------------------------------------------- /texts/de/EffiBriest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/texts/de/EffiBriest.csv -------------------------------------------------------------------------------- /texts/de/Werther: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/texts/de/Werther -------------------------------------------------------------------------------- /texts/de/Werther.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/texts/de/Werther.csv -------------------------------------------------------------------------------- /texts/de/total.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/texts/de/total.csv -------------------------------------------------------------------------------- /texts/en/ageofinnocence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/texts/en/ageofinnocence.txt -------------------------------------------------------------------------------- /texts/en/dubliners.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/texts/en/dubliners.txt -------------------------------------------------------------------------------- /texts/en/heartofdarkness.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/texts/en/heartofdarkness.txt -------------------------------------------------------------------------------- /texts/en/metamorphosis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/texts/en/metamorphosis.txt -------------------------------------------------------------------------------- /texts/en/pygmalion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/texts/en/pygmalion.txt -------------------------------------------------------------------------------- /texts/en/shakespeare.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/texts/en/shakespeare.dat -------------------------------------------------------------------------------- /texts/en/timemachine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/texts/en/timemachine.txt -------------------------------------------------------------------------------- /texts/en/ulysses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/texts/en/ulysses.txt -------------------------------------------------------------------------------- /texts/en/withthesehands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/texts/en/withthesehands.txt -------------------------------------------------------------------------------- /texts/en/wizardoz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5jt/dyalog-cookbook/HEAD/texts/en/wizardoz.txt --------------------------------------------------------------------------------