From a710a56f99781be43b47f9cd152a3882fba38f05 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 20 Nov 2023 05:20:21 +0000 Subject: [PATCH] Publishing site on 2023-11-20 05:20:21 from commit 8aa4ead68 - Remove Gin@html@width and Gin@html@float --- doc/development/feature/mind-map/index.html | 20 +- doc/development/literature/index.html | 182 ++++++------- .../literature/tavenrath2016-fig1.png | Bin 10299 -> 10299 bytes doc/development/literature/tex4iki0y.png | Bin 0 -> 14451 bytes doc/development/plan/step-001/index.html | 10 +- doc/survey/document-viewer/index.html | 18 +- doc/survey/reference-management/index.html | 22 +- recentchanges/index.atom | 246 +++++++++--------- recentchanges/index.html | 160 ++++++------ recentchanges/index.rss | 222 ++++++++-------- 10 files changed, 440 insertions(+), 440 deletions(-) diff --git a/doc/development/feature/mind-map/index.html b/doc/development/feature/mind-map/index.html index f50fbe9ccc..fa5950af2f 100644 --- a/doc/development/feature/mind-map/index.html +++ b/doc/development/feature/mind-map/index.html @@ -136,34 +136,34 @@

Software

diff --git a/doc/development/literature/index.html b/doc/development/literature/index.html index 802d30df26..56c1086951 100644 --- a/doc/development/literature/index.html +++ b/doc/development/literature/index.html @@ -110,42 +110,42 @@

1 Bret Victor

-

+

2 Alan Kay

-

https://www.youtube.com/watch?v=YyIQKBzIuBY, HPI -

+

3 Design of electronic books

-

Reading and Writing the Electronic Book 3 -

Designing for Digital Reading 3 -

+

4 Software engineering

-

Dreaming in code: two dozen programmers, three years, 4,732 bugs, and 4 -

+

5 Workflow

-

In

In The cognitive basis for academic workflows, Lisa D. Harper looks at sensemaking models as a way to understand academic workflows. -

+

6 Scene graphs

-

Handling Massive Transform Updates in a Scenegraph 6

+

extract just transform nodes to a transform tree

-
@@ -279,8 +279,8 @@

6

-

-

The world matrix is used for shader, culling, bounding box, collision +

+

The world matrix is used for shader, culling, bounding box, collision detection.


6

pict + style=" clear: both; " />

Figure 1: Example tree
@@ -303,7 +303,7 @@

6
-

Lazy incremental computation for efficient scene graph rendering 6

-

Update algorithm

-

Incremental context-dependent analysis for language-based editors 6

-

Incremental attribute evaluation: A flexible algorithm for lazy 6 -

They use a semantic scene graph as in Separating semantics from rendering: a +

They use a semantic scene graph as in Separating semantics from rendering: a scene graph based architecture for graphics applications Tobler (2011) — traversal cost is high — caching eliminates this cost. -

caching however occurs an overhead (see Table 1 of paper) at startup +

caching however occurs an overhead (see Table 1 of paper) at startup time -

need to benchmark the number of draw calls to see when it will pay off: -

need to benchmark the number of draw calls to see when it will pay off: + draw -calls, 6

can be parallelised +

can be parallelised

-

Separating semantics from rendering: a scene graph based architecture for 6 -

semantic graph is used to keep application state inside of graph -

application acts like a compiler -

semantic scene graph

semantic graph is used to keep application state inside of graph +

application acts like a compiler +

semantic scene graph rendering scene graph -

a single semantic scene graph node can build many intermediate rendering scene +

a single semantic scene graph node can build many intermediate rendering scene graph nodes that differ based on rendering backend -

applicator nodes are trees as well -

transformation

+

applicator nodes are trees as well +

transformation

  • -

    children: transformation matrices +

    children: transformation matrices

  • -

    aggregator: matrix multiplication

-

LOD node: returns a different scene graph based on level -

multiple-view has both:

+

aggregator: matrix multiplication

+

LOD node: returns a different scene graph based on level +

multiple-view has both:

  • -

    shared data +

    shared data

  • -

    private data

-

for

+

private data

+

for

  • -

    traversal cache +

    traversal cache

  • -

    traversal state

-

editing of semantic nodes

+

traversal state

+

editing of semantic nodes

-

rendering scene graph is cached by creating scene graph forest +

rendering scene graph is cached by creating scene graph forest

-

Scene-Graph-As-Bus: Collaboration between Heterogeneous Stand-alone 6 -

networking -

+

networking +

OpenSceneGraph

-

TODO -

+

TODO +

7 Attribute grammars

-

Attribute grammars were first introduced by Knuth. They consist of a normal +

Attribute grammars were first introduced by Knuth. They consist of a normal grammar, but augmented with attributes. Attributes are the results of calculations based on the values and attributes of nodes in the parse tree. Knuth (1968). -

One issue with attributes grammars is determining the order of evaluation. One +

One issue with attributes grammars is determining the order of evaluation. One naive approach is to use a topological sort based on the dependency graph of the attributes.

-

+

@@ -544,7 +544,7 @@

7 Steinlechner et al. (2019). -

Data structure

+

Data structure

interface 7    { }
-

Attribute grammar (UUAGC syntax)

+

Attribute grammar (UUAGC syntax)

syn 7    Sum

-

-

In this example, the attribute grammar defines a

+

In this example, the attribute grammar defines a synthesised attribute Sum. The order of evaluation is bottom-up and since this grammar only uses a synthesised attribute, it is an S-attributed grammar. -

There are also special classes of attribute grammars than can be evaluated in a +

There are also special classes of attribute grammars than can be evaluated in a single pass during parsing despite having both synthesised attributes and inherited attributes. -

For a synthesised attribute

For a synthesised attribute α -and production 7 ABC the -semantic function for S.α can -depend on attributes from A, -B, or -C. -

For the inherited attribute

For the inherited attribute β -on the same production, B.β can -depend on attributes from S, -A, or -C (every other symbol). -

However, to evaluate a general class of attribute grammars, a specific traversal +

However, to evaluate a general class of attribute grammars, a specific traversal would be needed for each attribute grammar depending on the dependencies for the semantic functions. There existed algorithms that can take a specific attribute grammar and compute a traversal function for an attribute. Some of these are @@ -716,7 +716,7 @@

7 Bransen et al. (2012). -

These algorithms are often used in an ahead of time compiler in order to generate +

These algorithms are often used in an ahead of time compiler in order to generate a static tree-walker evaluator. However, in some applications, an online version may be useful for dynamic editing of values on the trees or changes to the tree structure itself (e.g., a language editor). This merges the work in attribute grammars @@ -726,7 +726,7 @@

7 Ramalingam and Reps (1993). -

In order to use attribute grammars in a way that they can be composable (in FP, +

In order to use attribute grammars in a way that they can be composable (in FP, @@ -735,11 +735,11 @@

7 Sloane et al. (2010). -

+

8 Incremental computing

-

+

9 Self-adjusting computation

@@ -1233,7 +1233,7 @@

-Last edited Thu Feb 24 02:29:38 2022 +Last edited Mon Nov 20 05:17:01 2023 diff --git a/doc/development/literature/tavenrath2016-fig1.png b/doc/development/literature/tavenrath2016-fig1.png index 8f4bd6677f4ba481a9c408cd44c7005469fdce02..c55e2dec28e4052356d2ce967c64adf14b39c2de 100644 GIT binary patch delta 65 zcmdlTusdKvFPjM8g2x`eHcpOF=QlF2GBnXPFt9Q((EEMPWb!|CC21tF_+@1s3_#%N L>gTe~DWM4f|LPT3 delta 65 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 Renard Step 001


-
+ @@ -12581,7 +12581,7 @@

Project Renard Step 001


-
+ @@ -14884,7 +14884,7 @@

Project Renard Step 001


-
+ @@ -15142,7 +15142,7 @@

Project Renard Step 001


-
+ @@ -17913,7 +17913,7 @@

Project Renard Step 001


-
+ diff --git a/doc/survey/document-viewer/index.html b/doc/survey/document-viewer/index.html index ee5013a3a2..0ce6447320 100644 --- a/doc/survey/document-viewer/index.html +++ b/doc/survey/document-viewer/index.html @@ -109,34 +109,34 @@

List of document viewers

diff --git a/doc/survey/reference-management/index.html b/doc/survey/reference-management/index.html index 6af8e37875..5391cc04ef 100644 --- a/doc/survey/reference-management/index.html +++ b/doc/survey/reference-management/index.html @@ -113,37 +113,37 @@

List of reference managers

diff --git a/recentchanges/index.atom b/recentchanges/index.atom index 58073b261d..ed3d1f36f6 100644 --- a/recentchanges/index.atom +++ b/recentchanges/index.atom @@ -17,7 +17,129 @@ Project Renard ikiwiki -2023-11-20T05:03:45Z +2023-11-20T05:17:01Z + + change to doc/development/literature on Project Renard + + http://project-renard.github.io//recentchanges/change_8aa4ead683d17e3bd3654dd95dcb23dcf1835adf/ + + + + zaki.mughal + + + + + + 2023-11-20T05:17:01Z + 2023-11-20T05:17:01Z + + + + + + + + + +<div id="change-8aa4ead683d17e3bd3654dd95dcb23dcf1835adf" class="metadata"> +<span class="desc"><br />Changed pages:</span> +<span class="pagelinks"> + + +<a href="https://github.com/project-renard/project-renard.github.io/commit/8aa4ead683d17e3bd3654dd95dcb23dcf1835adf" title="diff" rel="nofollow"><img src="http://project-renard.github.io//wikiicons/diff.png" alt="diff" /></a>doc/development/literature + + +</span> +<span class="desc"><br />Changed by:</span> +<span class="committer"> + +zaki.mughal + +</span> +<span class="desc"><br />Commit type:</span> +<span class="committype">git</span> +<span class="desc"><br />Date:</span> +<span class="changedate"><span class="date">05:17:01 11/20/23</span></span> +<span class="desc"><br /></span> + +</div> +<div class="changelog"> + + +Remove Gin@html@width and Gin@html@float<br /> + + +</div> + +<!-- 8aa4ead683d17e3bd3654dd95dcb23dcf1835adf --> + + + + + + + + change to doc/development/literature on Project Renard + + http://project-renard.github.io//recentchanges/change_77ef2bb568f9fa75f31e5c06c05b6438b2c62670/ + + + + zaki.mughal + + + + + + 2023-11-20T05:15:57Z + 2023-11-20T05:15:57Z + + + + + + + + + +<div id="change-77ef2bb568f9fa75f31e5c06c05b6438b2c62670" class="metadata"> +<span class="desc"><br />Changed pages:</span> +<span class="pagelinks"> + + +<a href="https://github.com/project-renard/project-renard.github.io/commit/77ef2bb568f9fa75f31e5c06c05b6438b2c62670" title="diff" rel="nofollow"><img src="http://project-renard.github.io//wikiicons/diff.png" alt="diff" /></a>doc/development/literature + + +</span> +<span class="desc"><br />Changed by:</span> +<span class="committer"> + +zaki.mughal + +</span> +<span class="desc"><br />Commit type:</span> +<span class="committype">git</span> +<span class="desc"><br />Date:</span> +<span class="changedate"><span class="date">05:15:57 11/20/23</span></span> +<span class="desc"><br /></span> + +</div> +<div class="changelog"> + + +Remove input@path<br /> + + +</div> + +<!-- 77ef2bb568f9fa75f31e5c06c05b6438b2c62670 --> + + + + + + change to .github/workflows/main.yml on Project Renard @@ -6064,128 +6186,6 @@ Add url to setup<br /> - - - change to .github/workflows/main.yml on Project Renard - - http://project-renard.github.io//recentchanges/change_832ef3a9973387065bf2a54f775e6efe564256af/ - - - - zaki.mughal - - - - - - 2021-01-17T09:54:08Z - 2021-01-17T09:54:08Z - - - - - - - - - -<div id="change-832ef3a9973387065bf2a54f775e6efe564256af" class="metadata"> -<span class="desc"><br />Changed pages:</span> -<span class="pagelinks"> - - -<a href="https://github.com/project-renard/project-renard.github.io/commit/832ef3a9973387065bf2a54f775e6efe564256af" title="diff" rel="nofollow"><img src="http://project-renard.github.io//wikiicons/diff.png" alt="diff" /></a>.github/workflows/main.yml - - -</span> -<span class="desc"><br />Changed by:</span> -<span class="committer"> - -zaki.mughal - -</span> -<span class="desc"><br />Commit type:</span> -<span class="committype">git</span> -<span class="desc"><br />Date:</span> -<span class="changedate"><span class="date">09:54:08 01/17/21</span></span> -<span class="desc"><br /></span> - -</div> -<div class="changelog"> - - -Recursive checkout<br /> - - -</div> - -<!-- 832ef3a9973387065bf2a54f775e6efe564256af --> - - - - - - - - change to .github/workflows/main.yml on Project Renard - - http://project-renard.github.io//recentchanges/change_a69e19c272138e3137b176c7a8f58375508f6ad3/ - - - - zaki.mughal - - - - - - 2021-01-17T09:44:44Z - 2021-01-17T09:44:44Z - - - - - - - - - -<div id="change-a69e19c272138e3137b176c7a8f58375508f6ad3" class="metadata"> -<span class="desc"><br />Changed pages:</span> -<span class="pagelinks"> - - -<a href="https://github.com/project-renard/project-renard.github.io/commit/a69e19c272138e3137b176c7a8f58375508f6ad3" title="diff" rel="nofollow"><img src="http://project-renard.github.io//wikiicons/diff.png" alt="diff" /></a>.github/workflows/main.yml - - -</span> -<span class="desc"><br />Changed by:</span> -<span class="committer"> - -zaki.mughal - -</span> -<span class="desc"><br />Commit type:</span> -<span class="committype">git</span> -<span class="desc"><br />Date:</span> -<span class="changedate"><span class="date">09:44:44 01/17/21</span></span> -<span class="desc"><br /></span> - -</div> -<div class="changelog"> - - -Add to PERL5LIB with entire path<br /> - - -</div> - -<!-- a69e19c272138e3137b176c7a8f58375508f6ad3 --> - - - - - diff --git a/recentchanges/index.html b/recentchanges/index.html index 71c0831424..a40a6bc7db 100644 --- a/recentchanges/index.html +++ b/recentchanges/index.html @@ -117,6 +117,86 @@ + +
+ + +Remove Gin@html@width and Gin@html@float
+ + +
+ + + + + + + + + + + + +
+ + +Remove input@path
+ + +
+ + + + + + + + + + + diff --git a/recentchanges/index.rss b/recentchanges/index.rss index 929794a774..df347eeb39 100644 --- a/recentchanges/index.rss +++ b/recentchanges/index.rss @@ -10,7 +10,117 @@ Project Renard ikiwiki -Mon, 20 Nov 2023 05:03:45 +0000 +Mon, 20 Nov 2023 05:17:01 +0000 + + change to doc/development/literature on Project Renard + + http://project-renard.github.io//recentchanges/change_8aa4ead683d17e3bd3654dd95dcb23dcf1835adf/ + + http://project-renard.github.io/recentchanges/#change-8aa4ead683d17e3bd3654dd95dcb23dcf1835adf + + zaki.mughal + + + Mon, 20 Nov 2023 05:17:01 +0000 + 2023-11-20T05:17:01Z + + + + + + + + +<div id="change-8aa4ead683d17e3bd3654dd95dcb23dcf1835adf" class="metadata"> +<span class="desc"><br />Changed pages:</span> +<span class="pagelinks"> + + +<a href="https://github.com/project-renard/project-renard.github.io/commit/8aa4ead683d17e3bd3654dd95dcb23dcf1835adf" title="diff" rel="nofollow"><img src="http://project-renard.github.io//wikiicons/diff.png" alt="diff" /></a>doc/development/literature + + +</span> +<span class="desc"><br />Changed by:</span> +<span class="committer"> + +zaki.mughal + +</span> +<span class="desc"><br />Commit type:</span> +<span class="committype">git</span> +<span class="desc"><br />Date:</span> +<span class="changedate"><span class="date">05:17:01 11/20/23</span></span> +<span class="desc"><br /></span> + +</div> +<div class="changelog"> + + +Remove Gin@html@width and Gin@html@float<br /> + + +</div> + +<!-- 8aa4ead683d17e3bd3654dd95dcb23dcf1835adf --> + + + + + + change to doc/development/literature on Project Renard + + http://project-renard.github.io//recentchanges/change_77ef2bb568f9fa75f31e5c06c05b6438b2c62670/ + + http://project-renard.github.io/recentchanges/#change-77ef2bb568f9fa75f31e5c06c05b6438b2c62670 + + zaki.mughal + + + Mon, 20 Nov 2023 05:15:57 +0000 + 2023-11-20T05:15:57Z + + + + + + + + +<div id="change-77ef2bb568f9fa75f31e5c06c05b6438b2c62670" class="metadata"> +<span class="desc"><br />Changed pages:</span> +<span class="pagelinks"> + + +<a href="https://github.com/project-renard/project-renard.github.io/commit/77ef2bb568f9fa75f31e5c06c05b6438b2c62670" title="diff" rel="nofollow"><img src="http://project-renard.github.io//wikiicons/diff.png" alt="diff" /></a>doc/development/literature + + +</span> +<span class="desc"><br />Changed by:</span> +<span class="committer"> + +zaki.mughal + +</span> +<span class="desc"><br />Commit type:</span> +<span class="committype">git</span> +<span class="desc"><br />Date:</span> +<span class="changedate"><span class="date">05:15:57 11/20/23</span></span> +<span class="desc"><br /></span> + +</div> +<div class="changelog"> + + +Remove input@path<br /> + + +</div> + +<!-- 77ef2bb568f9fa75f31e5c06c05b6438b2c62670 --> + + + + change to .github/workflows/main.yml on Project Renard @@ -5469,116 +5579,6 @@ Add url to setup<br /> - - - change to .github/workflows/main.yml on Project Renard - - http://project-renard.github.io//recentchanges/change_832ef3a9973387065bf2a54f775e6efe564256af/ - - http://project-renard.github.io/recentchanges/#change-832ef3a9973387065bf2a54f775e6efe564256af - - zaki.mughal - - - Sun, 17 Jan 2021 09:54:08 +0000 - 2021-01-17T09:54:08Z - - - - - - - - -<div id="change-832ef3a9973387065bf2a54f775e6efe564256af" class="metadata"> -<span class="desc"><br />Changed pages:</span> -<span class="pagelinks"> - - -<a href="https://github.com/project-renard/project-renard.github.io/commit/832ef3a9973387065bf2a54f775e6efe564256af" title="diff" rel="nofollow"><img src="http://project-renard.github.io//wikiicons/diff.png" alt="diff" /></a>.github/workflows/main.yml - - -</span> -<span class="desc"><br />Changed by:</span> -<span class="committer"> - -zaki.mughal - -</span> -<span class="desc"><br />Commit type:</span> -<span class="committype">git</span> -<span class="desc"><br />Date:</span> -<span class="changedate"><span class="date">09:54:08 01/17/21</span></span> -<span class="desc"><br /></span> - -</div> -<div class="changelog"> - - -Recursive checkout<br /> - - -</div> - -<!-- 832ef3a9973387065bf2a54f775e6efe564256af --> - - - - - - change to .github/workflows/main.yml on Project Renard - - http://project-renard.github.io//recentchanges/change_a69e19c272138e3137b176c7a8f58375508f6ad3/ - - http://project-renard.github.io/recentchanges/#change-a69e19c272138e3137b176c7a8f58375508f6ad3 - - zaki.mughal - - - Sun, 17 Jan 2021 09:44:44 +0000 - 2021-01-17T09:44:44Z - - - - - - - - -<div id="change-a69e19c272138e3137b176c7a8f58375508f6ad3" class="metadata"> -<span class="desc"><br />Changed pages:</span> -<span class="pagelinks"> - - -<a href="https://github.com/project-renard/project-renard.github.io/commit/a69e19c272138e3137b176c7a8f58375508f6ad3" title="diff" rel="nofollow"><img src="http://project-renard.github.io//wikiicons/diff.png" alt="diff" /></a>.github/workflows/main.yml - - -</span> -<span class="desc"><br />Changed by:</span> -<span class="committer"> - -zaki.mughal - -</span> -<span class="desc"><br />Commit type:</span> -<span class="committype">git</span> -<span class="desc"><br />Date:</span> -<span class="changedate"><span class="date">09:44:44 01/17/21</span></span> -<span class="desc"><br /></span> - -</div> -<div class="changelog"> - - -Add to PERL5LIB with entire path<br /> - - -</div> - -<!-- a69e19c272138e3137b176c7a8f58375508f6ad3 --> - - -