From a8fdd6927fefe5b4c4f10457a54de1641f3a07d7 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sat, 7 Dec 2019 11:35:55 -0500 Subject: [PATCH] more docs --- README.md | 2 +- package.d | 137 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 138 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a24972..ac2c342 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ See the full list of (at least slightly) documented module here: http://arsd-off ## Links -I have [a patron](https://www.patreon.com/adam_d_ruppe) and my (almost) [weekly blog](http://dpldocs.info/this-week-in-d/) you can check out if you'd like to financially support this work or see the updates and tips I write about. +I have [a patreon](https://www.patreon.com/adam_d_ruppe) and my (almost) [weekly blog](http://dpldocs.info/this-week-in-d/) you can check out if you'd like to financially support this work or see the updates and tips I write about. ## Credits diff --git a/package.d b/package.d index f95353a..fed1e3c 100644 --- a/package.d +++ b/package.d @@ -4,5 +4,142 @@ You can usually use them independently, with few or no dependencies, so it is easy to use raw, or you can use dub packages as well. + + What are you working with? (minimal starting points now but im working on it) + + ${RAW_HTML + + } + + $(LIST + $(CLASS category-grid) + + * [#web|Web] + * [#desktop|Desktop] + * [#terminal|Terminals] + * [#database|Databases] + * [#scripting|Scripting] + * [#email|Email] + ) + + + $(H2 Categories) + + $(H3 Web) + $(LIST + $(CLASS category-grid) + + * [#web-server|Server-side code] + * [#web-api-client|Consuming HTTP APIs] + * [#web-scraper|Scraping Web Pages] + ) + + $(H4 $(ID web-server) Server-side code) + See [arsd.cgi] + + $(H4 $(ID web-api-client) Consuming HTTP APIs) + See [arsd.http2] + + $(H4 $(ID web-scraper) Scraping Web Pages) + See [arsd.dom.Document.fromUrl] + + $(H3 Desktop) + $(LIST + $(CLASS category-grid) + + * [#desktop-game|Game] + * [#desktop-gui|GUIs] + * [#desktop-webview|WebView] + ) + + $(H4 $(ID desktop-game) Games) + See [arsd.simpledisplay] and [arsd.gamehelpers]. + + $(H4 $(ID desktop-gui) GUIs) + See [arsd.minigui], [arsd.nanovega], and also: https://github.com/drug007/nanogui + + You can also do it yourself with [arsd.simpledisplay]. + + $(H4 $(ID desktop-webview) WebView) + This is a work in progress, but see [arsd.webview] + $(H3 Terminals) + $(LIST + $(CLASS category-grid) + + * [#terminal-line|Line-based] + * [#terminal-full|Full screen] + * [#terminal-html|HTML dump] + ) + + $(H4 $(ID terminal-line) Line-based) + See [arsd.terminal] + + $(H4 $(ID terminal-full) Full screen) + See [arsd.terminal] + + $(H4 $(ID terminal-html) HTML dump) + See [arsd.terminal] and [arsd.htmltotext] + + $(H3 Databases) + $(LIST + $(CLASS category-grid) + + * [#database-sql|SQL queries] + * [#database-orm|Minimal ORM] + ) + + $(H4 $(ID database-sql) SQL queries) + See [arsd.database], [arsd.mysql], [arsd.postgres], [arsd.sqlite], and [arsd.mssql]. + + $(H4 $(ID database-orm) Minimal ORM) + See [arsd.database_generation] as well as parts in [arsd.database]. + + $(H3 Scripting) + See [arsd.script] + + $(H3 Email) + $(LIST + $(CLASS category-grid) + + * [#email-sending|Sending Plain Email] + * [#email-mime|Sending HTML Email] + * [#email-processing|Processing Email] + ) + + $(H4 $(ID email-sending) Sending Plain Email) + See [arsd.email] + $(H4 $(ID email-mime) Sending HTML Email) + See [arsd.email] + $(H4 $(ID email-processing) Processing Email) + See [arsd.email] +/ module arsd;