all repos — h3rald @ 621ef2546c8ea3f9606033af42666a605733109e

The sources of https://h3rald.com

Updates
h3rald h3rald@h3rald.com
Sun, 29 Nov 2020 13:22:38 +0000
commit

621ef2546c8ea3f9606033af42666a605733109e

parent

bf5fa1696b33cbdd47a80650b23d0c2364cf1ce1

3 files changed, 56 insertions(+), 53 deletions(-)

jump to
M assets/min/Min_DeveloperGuide.htmassets/min/Min_DeveloperGuide.htm

@@ -8815,18 +8815,19 @@ <div class="operator"><p><span class="kwd"> <span class="kwd">quot</span> <strong>&rArr;</strong> <span class="kwd">a</span></span></p>

<p>Dequotes <span class="kwd">quot</span> using infix notation.</p> -<div class="note"><p>No operator precedence</p> +<p>Note that no special operator preference is defined, symbols precedence is always left-to-right. However, you can use parentheses (quotes) to evaluate expressions before others.</p> + +<div class="sidebar"><p>Example</p> -<p>No special operator preference is defined, symbols precedence is always left-to-right. However, you can use parentheses (quotes) to evaluate expressions before others.</p> +<p>The following program leaves <code>17</code> on the stack:</p> -<p>%sidebar% -Example</p> +<pre><code> (2 + (3 * 5)) infix-dequote +</code></pre> -<p>The following program leaves <code>17</code> on the stack: - (2 + (3 * 5)) infix-dequote</p> +<p>while this program leaves <code>25</code> on the stack:</p> -<p>while this program leaves <code>25</code> on the stack: - (2 + 3 * 5) infix-dequote</p></div></div> +<pre><code> (2 + 3 * 5) infix-dequote +</code></pre></div></div> <p><a id="min-operator-id-int"></a> <span class="reference-title">int</span></p>

@@ -8944,14 +8945,14 @@ <span class="reference-title">prefix-dequote</span></p>

<div class="operator"><p><span class="kwd"> <span class="kwd">quot</span> <strong>&rArr;</strong> <span class="kwd">a</span></span></p> -<p>Dequotes <span class="kwd">quot</span> using prefix notation (essentially it reverses <span class="kwd">quot</span> and dequotes it.</p> +<p>Dequotes <span class="kwd">quot</span> using prefix notation (essentially it reverses <span class="kwd">quot</span> and dequotes it).</p> -<blockquote><p>%sidebar% -Example</p> +<div class="sidebar"><p>Example</p> -<p>The following program leaves <code>4</code> on the stack: - (* 8 4) prefix-dequote -#</p></blockquote></div> +<p>The following program leaves <code>4</code> on the stack:</p> + +<pre><code>(* 8 4) prefix-dequote +</code></pre></div></div> <p><a id="min-operator-id-prompt"></a> <span class="reference-title">prompt</span></p>
A contents/fae.md

@@ -0,0 +1,41 @@

+----- +id: fae +github: fae +home: /fae/ +title: "fae 🧚" +subtitle: "Find and Edit Utility" +summary: "A minuscule utility to find and edit text in files." +content-type: project +active: true +version: 1.0.0 +download: "https://github.com/h3rald/fae/releases/download/" +----- + +### Usage + + +**fae** _pattern_ **[** _replacement_ _\-\-option1_ _\-\-option2_ ... **]** + +Where: + +* _pattern_ is a regular expression to search for. +* _replacement_ is an optional replacement stringv use \1, \2, etc. to reference captured groups). + +#### Options + +* **-a**, **\-\-apply** &mdash; Substitute all occurrences of *pattern* with *replacement* in all files without asking for confirmation. +* **-d**, **\-\-directory** &mdash; Search in the specified directory (default: .) +* **-f**, **\-\-filter** &mdash; Specify a regular expression to filter file paths. +* **-h**, **\-\-help** &mdash; Display this message. +* **-i**, **\-\-insensitive** &mdash; Case-insensitive matching. +* **-r**, **\-\-recursive** &mdash; Search directories recursively. +* **-s**, **\-\-silent** &mdash; Do not display matches. +* **-t**, **\-\-test** &mdash; Do not perform substitutions, just print results. +* **-v**, **\-\-version** &mdash; Display the program version. + +### Downloads + +* [macOS (x64)]({{$download}}v{{$version}}/{{$github}}_v{{$version}}_macosx_x64.zip) +* [Linux (x64)]({{$download}}v{{$version}}/{{$github}}_v{{$version}}_linux_x64.zip) +* [Windows (x64)]({{$download}}v{{$version}}/{{$github}}_v{{$version}}_windows_x64.zip) +
D contents/fae.nim

@@ -1,39 +0,0 @@

------ -id: fae -github: fae -home: /fae/ -title: "fae" -subtitle: "Find and Edit Utility" -summary: "A tiny utility to find and replace text in files." -content-type: project -active: true -version: 1.0.0 -download: "https://github.com/h3rald/fae/releases/download/" ------ - -### Usage - - -**fae** _pattern_ _replacement_ **[** _option1_ _option2_ ... **]** - -Where: -* _pattern_ is a regular expression to search for. -* _replacement_ is an optional replacement stringv use \1, \2, etc. to reference captured groups). - -#### Options - -* -a, --apply &mdash; Substitute all occurrences of <pattern> with <replacement> in all files without asking for confirmation. -* -d, --directory &mdash; Search in the specified directory (default: .) -* -f, --filter &mdash; Specify a regular expression to filter file paths. -* -h, --help &mdash; Display this message. -* -i, --insensitive &mdash; Case-insensitive matching. -* -r, --recursive &mdash; Search directories recursively. -* -s, --silent &mdash; Do not display matches. -* -t, --test &mdash; Do not perform substitutions, just print results. -* -v, --version &mdash; Display the program version. - -### Downloads - -* [macOS (x64)]({{$download}}v{{$version}}/{{$github}}_v{{$version}}_macosx_x64.zip) -* [Linux (x64)]({{$download}}v{{$version}}/{{$github}}_v{{$version}}_linux_x64.zip) -* [Windows (x64)]({{$download}}v{{$version}}/{{$github}}_v{{$version}}_windows_x64.zip)