<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>xx1000 on lecture-notes</title><link>https://rrkurnova.github.io/lecture-notes/tags/xx1000/</link><description>Recent content in xx1000 on lecture-notes</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Sun, 17 Sep 2023 07:44:00 +0700</lastBuildDate><atom:link href="https://rrkurnova.github.io/lecture-notes/tags/xx1000/index.xml" rel="self" type="application/rss+xml"/><item><title>hello world</title><link>https://rrkurnova.github.io/lecture-notes/0048/</link><pubDate>Sun, 17 Sep 2023 07:44:00 +0700</pubDate><guid>https://rrkurnova.github.io/lecture-notes/0048/</guid><description>chart.js animation with svg svg diagram youtube image table link list equation quote bold &amp;amp; italics 1st section 2nd section 3rd section chart.js Link to heading animation with svg Link to heading svg Link to heading diagram Link to heading flowchart LR B --> I &amp; P --> O &amp; E B(("Begin")) I[/"Input"/] P["Process"] O[/"Output"/] E(("End")) flowchart LR B --> I --> P --> O --> E B(("Begin")) I[/"Input"/] P["</description></item><item><title>svg rect</title><link>https://rrkurnova.github.io/lecture-notes/0047/</link><pubDate>Fri, 15 Sep 2023 19:43:00 +0700</pubDate><guid>https://rrkurnova.github.io/lecture-notes/0047/</guid><description>predefined shapes svg rect, width, height rect, x, y rect, stroke, color, opacity (fill: none) rect, fill, color, opacity rect, animate rect, rotate rect, scale predefined shapes Link to heading There are at least seven predefined SVG shape elements that can be used, which are rectangle, circle, ellipse, line, polyline, polygon, and path (W3Schools, 2023). Here the first shape element is presented, rectangle rect element.
svg Link to heading Default values width=&amp;quot;300&amp;quot; height=&amp;quot;150&amp;quot; rect, width, height Link to heading Code {{&amp;lt; html &amp;gt;}} &amp;lt;svg style=&amp;#34;background: #eee;&amp;#34;&amp;gt; &amp;lt;rect width=&amp;#34;50&amp;#34; height=&amp;#34;50&amp;#34;&amp;gt;&amp;lt;/rect&amp;gt; &amp;lt;/svg&amp;gt; {{&amp;lt; /html &amp;gt;}} Result rect, x, y Link to heading Code {{&amp;lt; html &amp;gt;}} &amp;lt;svg style=&amp;#34;background: #eee;&amp;#34;&amp;gt; &amp;lt;rect x=&amp;#34;80&amp;#34; y=&amp;#34;40&amp;#34; width=&amp;#34;50&amp;#34; height=&amp;#34;50&amp;#34;&amp;gt;&amp;lt;/rect&amp;gt; &amp;lt;/svg&amp;gt; {{&amp;lt; /html &amp;gt;}} Result rect, stroke, color, opacity (fill: none) Link to heading Code {{&amp;lt; html &amp;gt;}} &amp;lt;svg style=&amp;#34;background: #eee;&amp;#34;&amp;gt; &amp;lt;rect x=&amp;#34;40&amp;#34; y=&amp;#34;25&amp;#34; width=&amp;#34;100&amp;#34; height=&amp;#34;60&amp;#34; style=&amp;#34; stroke: blue; stroke-width: 2px; fill: none;&amp;#34;&amp;gt; &amp;lt;/rect&amp;gt; &amp;lt;rect x=&amp;#34;70&amp;#34; y=&amp;#34;45&amp;#34; width=&amp;#34;100&amp;#34; height=&amp;#34;60&amp;#34; style=&amp;#34; stroke: blue; stroke-width: 2px; fill: none;&amp;#34;&amp;gt; &amp;lt;/rect&amp;gt; &amp;lt;rect x=&amp;#34;120&amp;#34; y=&amp;#34;65&amp;#34; width=&amp;#34;100&amp;#34; height=&amp;#34;60&amp;#34; style=&amp;#34; stroke: blue; stroke-width: 2px; stroke-opacity: 0.</description></item><item><title>shortcode html</title><link>https://rrkurnova.github.io/lecture-notes/0046/</link><pubDate>Fri, 15 Sep 2023 17:30:00 +0700</pubDate><guid>https://rrkurnova.github.io/lecture-notes/0046/</guid><description>description test notes description Link to heading Include pure HTML with CSS and JS in a Markdown post using shortcode.
test Link to heading Following is a SVG image whose border is added using JS
Sorry, your browser does not support inline SVG. Hello, World! with the lines of code are
{{&amp;lt; html &amp;gt;}} &amp;lt;svg id=&amp;#34;fig1&amp;#34; height=&amp;#34;100&amp;#34; width=&amp;#34;100&amp;#34;&amp;gt; &amp;lt;circle cx=&amp;#34;50&amp;#34; cy=&amp;#34;50&amp;#34; r=&amp;#34;40&amp;#34; stroke=&amp;#34;black&amp;#34; stroke-width=&amp;#34;3&amp;#34; fill=&amp;#34;red&amp;#34; /&amp;gt; Sorry, your browser does not support inline SVG.</description></item><item><title>html css js</title><link>https://rrkurnova.github.io/lecture-notes/0042/</link><pubDate>Tue, 12 Sep 2023 05:32:00 +0700</pubDate><guid>https://rrkurnova.github.io/lecture-notes/0042/</guid><description>an example html html + CSS (int) html + CSS (ext) html + JS (int) html + JS (ext) html + CSS (ext) + JS (ext) challenges notes an example Link to heading A HTML file can be supported by CSS and JS.
html Link to heading Pure HTML having following structure &amp;lt;html&amp;gt; &amp;lt;head&amp;gt; &amp;lt;title&amp;gt;HTML only&amp;lt;/title&amp;gt; &amp;lt;/head&amp;gt; &amp;lt;body&amp;gt; &amp;lt;h1&amp;gt;Introduction&amp;lt;/h1&amp;gt; &amp;lt;p&amp;gt;..&amp;lt;/p&amp;gt; &amp;lt;h2&amp;gt;Some information&amp;lt;/h2&amp;gt; &amp;lt;p&amp;gt;..&amp;lt;/p&amp;gt; &amp;lt;h3&amp;gt;First information&amp;lt;/h3&amp;gt; &amp;lt;p&amp;gt;..&amp;lt;/p&amp;gt; &amp;lt;h3&amp;gt;Last information&amp;lt;/h3&amp;gt; &amp;lt;p&amp;gt;..&amp;lt;/p&amp;gt; &amp;lt;h2&amp;gt;Closing information&amp;lt;/h2&amp;gt; &amp;lt;p&amp;gt;.</description></item><item><title>collecting sand</title><link>https://rrkurnova.github.io/lecture-notes/0041/</link><pubDate>Mon, 11 Sep 2023 20:22:00 +0700</pubDate><guid>https://rrkurnova.github.io/lecture-notes/0041/</guid><description>13-sep 11-sep 10-sep notes 13-sep Link to heading Air Prim-A Diamod Hills Pantai Kuta url https://maps.app.goo.gl/15Vk8yLzJExE484j8 11-sep Link to heading Teh Botol Tebing Atuh-Diamond url https://maps.app.goo.gl/eGewk2tHQPQKFiZZ9 Air Alfamart Pantai Atuh url https://maps.app.goo.gl/3tJLGeLU5G7amvE19 Air Aqua Molenteng Pelabuhan Buyuk url https://maps.app.goo.gl/4XuzYF1YHgMU4PV8A 10-sep Link to heading Air Indomaret Pantai Pandawa url https://maps.app.goo.gl/iCEzRns3TKcx4QoF8 notes Link to heading Category is only temporary and subject to change. It would be related to independent study-like course or something.</description></item><item><title>hugo-chart</title><link>https://rrkurnova.github.io/lecture-notes/0040/</link><pubDate>Sun, 10 Sep 2023 04:20:00 +0700</pubDate><guid>https://rrkurnova.github.io/lecture-notes/0040/</guid><description>result refs test result Link to heading refs Link to heading hugo-chat (Shen et al., 2023) test Link to heading {{&amp;lt; chart 90 200 &amp;gt;}} { type: &amp;#39;bar&amp;#39;, data: { labels: [&amp;#39;Red&amp;#39;, &amp;#39;Blue&amp;#39;, &amp;#39;Yellow&amp;#39;, &amp;#39;Green&amp;#39;, &amp;#39;Purple&amp;#39;, &amp;#39;Orange&amp;#39;], datasets: [{ label: &amp;#39;Bar Chart&amp;#39;, data: [12, 19, 18, 16, 13, 14], backgroundColor: [ &amp;#39;rgba(255, 99, 132, 0.2)&amp;#39;, &amp;#39;rgba(54, 162, 235, 0.2)&amp;#39;, &amp;#39;rgba(255, 206, 86, 0.2)&amp;#39;, &amp;#39;rgba(75, 192, 192, 0.2)&amp;#39;, &amp;#39;rgba(153, 102, 255, 0.</description></item><item><title>hugo shortcode numpad</title><link>https://rrkurnova.github.io/lecture-notes/0038/</link><pubDate>Sat, 09 Sep 2023 10:48:00 +0700</pubDate><guid>https://rrkurnova.github.io/lecture-notes/0038/</guid><description>result markdown shortcode javascript result Link to heading A numpad only for numbers is can be built as follow markdown Link to heading Put following line in a Markdown file {{&amp;lt; numpad &amp;gt;}} shortcode Link to heading It is save in layouts/shortcode/numpad.html {{ $js := resources.Get &amp;#34;js/numpad.js&amp;#34; }} {{ $file := $js | resources.Minify }} {{ $url := $file.Permalink | relURL }} &amp;lt;script type=&amp;#34;text/javascript&amp;#34; src=&amp;#34;{{ $url }}&amp;#34;&amp;gt;&amp;lt;/script&amp;gt; &amp;lt;div id=&amp;#34;numpad&amp;#34;&amp;gt;&amp;lt;/div&amp;gt; &amp;lt;script&amp;gt; numpad(); &amp;lt;/script&amp;gt; javascript Link to heading It is saved in assets/js/numpad.</description></item><item><title>hugo shortcode button</title><link>https://rrkurnova.github.io/lecture-notes/0037/</link><pubDate>Sat, 09 Sep 2023 05:05:00 +0700</pubDate><guid>https://rrkurnova.github.io/lecture-notes/0037/</guid><description>introduction partials javascript button code result to-do introduction Link to heading Hugo Shortcodes are specialized markdown syntax that can be used to extend basic markdown, which can be considered as templates that can be called from Hugo markdown files to add HTML snippets to the final rendered HTML (Hicks, 2020). Shortcodes are add short snippets of Hugo code, Markdown, or HTML to a page (Chef, 2023). Shortcodes are simple snippets inside the content files calling built-in or custom templates (Lahoti, 2020).</description></item><item><title>google drive short intro</title><link>https://rrkurnova.github.io/lecture-notes/0029/</link><pubDate>Mon, 04 Sep 2023 17:44:00 +0700</pubDate><guid>https://rrkurnova.github.io/lecture-notes/0029/</guid><description>google drive web vs desktop pros and cons be aware of prohibited content web apps used (most) daily google drive Link to heading It is an online strorage solution launched by Google in April 2012, which is primarily used for file storage and backup, but it is also a popular tool for project collaboration by bussinesses, schools, and individuals (Stephenson, 2021). It is a cloud-based storage solution that allows you to save files online and access them anywhere or upload files and edit them online from any smartphone, tablet, or computer securely (Nolledo, 2020).</description></item><item><title>docx4svg v1</title><link>https://rrkurnova.github.io/lecture-notes/0027/</link><pubDate>Sat, 02 Sep 2023 20:35:00 +0700</pubDate><guid>https://rrkurnova.github.io/lecture-notes/0027/</guid><description>A Microsoft Word 2007 document can be converted into SVG image using online conversion tools, where one of them is GroupDocs, which is a cloud-based document management and collaboration software that enables user to collaborate and share various documents with functionality to annotate, display, compare, e-sign, convert, and assamble documents (Lavi, 2022).
an example Link to heading Figure 1 shows an example, which is available at docx4svg/fff2f3e2.
&lt;?xml version="1.0" encoding="utf-8" standalone="</description></item><item><title>hugo-chart xy scatter</title><link>https://rrkurnova.github.io/lecture-notes/0044/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://rrkurnova.github.io/lecture-notes/0044/</guid><description>result refs test result Link to heading refs Link to heading hugo-chat (Shen et al., 2023) https://stackoverflow.com/a/36954310/9475509 test Link to heading {{&amp;lt; chart 80 300 &amp;gt;}} { type: &amp;#39;scatter&amp;#39;, data: { datasets: [ { label: &amp;#39;wander = 0&amp;#39;, pointRadius: 4, pointBackgroundColor: &amp;#34;rgba(255,0,0,0.5)&amp;#34;, showLine: true, fill: false, borderColor: &amp;#34;rgba(255,0,0,0.5)&amp;#34;, lineTension: 0.0, data: [ {x: 10, y:0.020}, {x: 20, y:0.030}, {x: 30, y:0.095}, {x: 40, y:0.155}, {x: 50, y:0.175}, {x: 60, y:0.</description></item></channel></rss>