summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--software/c.page12
-rw-r--r--software/sql.page4
-rw-r--r--tmp/c_coding4
-rw-r--r--tmp/sql.page14
4 files changed, 11 insertions, 23 deletions
diff --git a/software/c.page b/software/c.page
index a0cb064..e1c3416 100644
--- a/software/c.page
+++ b/software/c.page
@@ -46,7 +46,9 @@ Other References
------------------
"Spiral Rule" trick for understanding type/pointer definitions:
-http://c-faq.com/decl/spiral.anderson.html
+<http://c-faq.com/decl/spiral.anderson.html>
+
+"The Lost Art of C Structure Packing": <http://www.catb.org/esr/structure-packing/>
Notable C Libraries
---------------------
@@ -57,10 +59,10 @@ incremental, simple, error messages.
Zed Shaw Notes
----------------
- * cachegrind/callgrind: http://c.learncodethehardway.org/book/ex41.html
- * bstring ("better string"): http://c.learncodethehardway.org/book/ex36.html
- * testing: http://c.learncodethehardway.org/book/ex30.html
- * debug macros: http://c.learncodethehardway.org/book/ex20.html
+ * cachegrind/callgrind: <http://c.learncodethehardway.org/book/ex41.html>
+ * bstring ("better string"): <http://c.learncodethehardway.org/book/ex36.html>
+ * testing: <http://c.learncodethehardway.org/book/ex30.html>
+ * debug macros: <http://c.learncodethehardway.org/book/ex20.html>
Auto-Indent Styling
---------------------
diff --git a/software/sql.page b/software/sql.page
index 791fd56..c485133 100644
--- a/software/sql.page
+++ b/software/sql.page
@@ -1,3 +1,7 @@
+---
+format: md
+toc: no
+...
# SQL
diff --git a/tmp/c_coding b/tmp/c_coding
deleted file mode 100644
index 68760f9..0000000
--- a/tmp/c_coding
+++ /dev/null
@@ -1,4 +0,0 @@
-
-The Lost Art of C Structure Packing
-http://www.catb.org/esr/structure-packing/
-
diff --git a/tmp/sql.page b/tmp/sql.page
deleted file mode 100644
index 901a0fd..0000000
--- a/tmp/sql.page
+++ /dev/null
@@ -1,14 +0,0 @@
----
-format: rst
-categories: cs
-toc: no
-...
-
-===================================
-SQL: Structured Query Language
-===================================
-
-
-SELECT
----------
-Eg, ``SELECT * From table_name``. ``DISTINCT`` returns no duplicates.