Cachapa Blog https://blog.cachapa.xyz/ Recent content on Cachapa Blog Hugo -- gohugo.io en-us 2023 © Captain Arepa, lorem ipsum blah blah blah, yadda yadda yadda, etc etc etc. Mon, 30 Jan 2023 00:00:00 +0000 Hello World! https://blog.cachapa.xyz/posts/hello/ Mon, 30 Jan 2023 00:00:00 +0000 https://blog.cachapa.xyz/posts/hello/ Yeah, I made a blog. Guess I&rsquo;ll start writing more frequently and wotnot, mainly about personal projects and random stuff. And&hellip; that&rsquo;s it! <p>Yeah, I made a blog. Guess I&rsquo;ll start writing more frequently and wotnot, mainly about personal projects and random stuff. And&hellip; that&rsquo;s it!</p> Showcase https://blog.cachapa.xyz/showcase/ Wed, 18 Jul 2018 00:00:00 +0000 https://blog.cachapa.xyz/showcase/ Header 2 Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam nec interdum metus. Aenean rutrum ligula sodales ex auctor, sed tempus dui mollis. Curabitur ipsum dui, aliquet nec commodo at, tristique eget ante. Donec quis dolor nec nunc mollis interdum vel in purus. Sed vitae leo scelerisque, sollicitudin elit sed, congue ante. In augue nisl, vestibulum commodo est a, tristique porttitor est. Proin laoreet iaculis ornare. Nullam ut neque quam. <h2 id="header-2">Header 2</h2> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam nec interdum metus. Aenean rutrum ligula sodales ex auctor, sed tempus dui mollis. Curabitur ipsum dui, aliquet nec commodo at, tristique eget ante. <strong>Donec quis dolor nec nunc mollis interdum vel in purus</strong>. Sed vitae leo scelerisque, sollicitudin elit sed, congue ante. In augue nisl, vestibulum commodo est a, tristique porttitor est. Proin laoreet iaculis ornare. Nullam ut neque quam.</p> <blockquote> <p>Fusce pharetra suscipit orci nec tempor. Quisque vitae sem sit amet sem mollis consequat. Sed at imperdiet lorem. Vestibulum pharetra faucibus odio, ac feugiat tellus sollicitudin at. Pellentesque varius tristique mi imperdiet dapibus. Duis orci odio, sodales lacinia venenatis sit amet, feugiat et diam.</p> </blockquote> <h3 id="header-3">Header 3</h3> <p>Nulla libero turpis, lacinia vitae cursus ut, auctor dictum nisl. Fusce varius felis nec sem ullamcorper, at convallis nisi vestibulum. Duis risus odio, porta sit amet placerat mollis, tincidunt non mauris. Suspendisse fringilla, <code>odio a dignissim pharetra</code>, est urna sollicitudin urna, eu scelerisque magna ex vitae tellus.</p> <div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-css" data-lang="css"><span style="color:#75715e">/* PostCSS code */</span> <span style="color:#f92672">pre</span> { <span style="color:#66d9ef">background</span>: <span style="color:#ae81ff">#1a1a1d</span>; <span style="color:#66d9ef">padding</span>: <span style="color:#ae81ff">20</span><span style="color:#66d9ef">px</span>; <span style="color:#66d9ef">border-radius</span>: <span style="color:#ae81ff">8</span><span style="color:#66d9ef">px</span>; <span style="color:#66d9ef">font-size</span>: <span style="color:#ae81ff">1</span><span style="color:#66d9ef">rem</span>; <span style="color:#66d9ef">overflow</span>: <span style="color:#66d9ef">auto</span>; <span style="color:#960050;background-color:#1e0010">@media</span> <span style="color:#960050;background-color:#1e0010">(--phone)</span> <span style="color:#960050;background-color:#1e0010">{</span> <span style="color:#66d9ef">white-space</span>: <span style="color:#66d9ef">pre-wrap</span>; <span style="color:#66d9ef">word-wrap</span>: <span style="color:#66d9ef">break-word</span>; } <span style="color:#f92672">code</span> { <span style="color:#66d9ef">background</span>: <span style="color:#66d9ef">none</span> <span style="color:#75715e">!important</span>; <span style="color:#66d9ef">color</span>: <span style="color:#ae81ff">#ccc</span>; <span style="color:#66d9ef">padding</span>: <span style="color:#ae81ff">0</span>; <span style="color:#66d9ef">font-size</span>: <span style="color:#66d9ef">inherit</span>; } <span style="color:#960050;background-color:#1e0010">}</span> </code></pre></div><div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-js" data-lang="js"><span style="color:#75715e">// JS code </span><span style="color:#75715e"></span> <span style="color:#66d9ef">const</span> <span style="color:#a6e22e">menuTrigger</span> <span style="color:#f92672">=</span> document.<span style="color:#a6e22e">querySelector</span>(<span style="color:#e6db74">&#39;.menu-trigger&#39;</span>) <span style="color:#66d9ef">const</span> <span style="color:#a6e22e">menu</span> <span style="color:#f92672">=</span> document.<span style="color:#a6e22e">querySelector</span>(<span style="color:#e6db74">&#39;.menu&#39;</span>) <span style="color:#66d9ef">const</span> <span style="color:#a6e22e">mobileQuery</span> <span style="color:#f92672">=</span> <span style="color:#a6e22e">getComputedStyle</span>(document.<span style="color:#a6e22e">body</span>).<span style="color:#a6e22e">getPropertyValue</span>(<span style="color:#e6db74">&#39;--phoneWidth&#39;</span>) <span style="color:#66d9ef">const</span> <span style="color:#a6e22e">isMobile</span> <span style="color:#f92672">=</span> () =&gt; window.<span style="color:#a6e22e">matchMedia</span>(<span style="color:#a6e22e">mobileQuery</span>).<span style="color:#a6e22e">matches</span> <span style="color:#66d9ef">const</span> <span style="color:#a6e22e">isMobileMenu</span> <span style="color:#f92672">=</span> () =&gt; { <span style="color:#a6e22e">menuTrigger</span>.<span style="color:#a6e22e">classList</span>.<span style="color:#a6e22e">toggle</span>(<span style="color:#e6db74">&#39;hidden&#39;</span>, <span style="color:#f92672">!</span><span style="color:#a6e22e">isMobile</span>()) <span style="color:#a6e22e">menu</span>.<span style="color:#a6e22e">classList</span>.<span style="color:#a6e22e">toggle</span>(<span style="color:#e6db74">&#39;hidden&#39;</span>, <span style="color:#a6e22e">isMobile</span>()) } <span style="color:#a6e22e">isMobileMenu</span>() <span style="color:#a6e22e">menuTrigger</span>.<span style="color:#a6e22e">addEventListener</span>(<span style="color:#e6db74">&#39;click&#39;</span>, () =&gt; <span style="color:#a6e22e">menu</span>.<span style="color:#a6e22e">classList</span>.<span style="color:#a6e22e">toggle</span>(<span style="color:#e6db74">&#39;hidden&#39;</span>)) window.<span style="color:#a6e22e">addEventListener</span>(<span style="color:#e6db74">&#39;resize&#39;</span>, <span style="color:#a6e22e">isMobileMenu</span>) </code></pre></div><div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-html" data-lang="html"><span style="color:#75715e">&lt;!-- HTML code --&gt;</span> &lt;<span style="color:#f92672">section</span> <span style="color:#a6e22e">id</span><span style="color:#f92672">=</span><span style="color:#e6db74">&#34;main&#34;</span>&gt; &lt;<span style="color:#f92672">div</span>&gt; &lt;<span style="color:#f92672">h1</span> <span style="color:#a6e22e">id</span><span style="color:#f92672">=</span><span style="color:#e6db74">&#34;title&#34;</span>&gt;{{ .Title }}&lt;/<span style="color:#f92672">h1</span>&gt; {{ range .Pages }} {{ .Render &#34;summary&#34;}} {{ end }} &lt;/<span style="color:#f92672">div</span>&gt; &lt;/<span style="color:#f92672">section</span>&gt; </code></pre></div><h4 id="header-4">Header 4</h4> <p>Curabitur scelerisque felis viverra varius scelerisque. Ut enim libero, molestie gravida blandit at, mollis ornare tellus. Cras arcu mi, ultrices vel pulvinar vel, volutpat eu tortor. Nullam nec eros quis massa ultrices iaculis sed in metus. Praesent sollicitudin sem sit amet orci tempor gravida.</p> <ul> <li>Maecenas elementum vitae nibh vitae porttitor.</li> <li>Aenean consequat, risus ut cursus placerat, arcu nulla sodales risus, ut molestie tellus tellus et dui.</li> <li>Integer imperdiet turpis vitae lacus imperdiet, ut ornare ligula auctor. Integer in mi eu velit vehicula suscipit eget vulputate nulla.</li> <li>Etiam vitae enim quis velit lobortis placerat a ut sem. <ul> <li>Curabitur lobortis ante sit amet orci pulvinar, sollicitudin viverra nunc accumsan.</li> <li>Praesent fermentum orci quis leo facilisis posuere.</li> </ul> </li> </ul> <p>Aliquam erat volutpat. In hac habitasse platea dictumst. Nunc ut tincidunt mauris. Sed at gravida risus, id semper magna. Nullam vitae enim mattis, sodales neque non, pharetra elit. Cras sit amet sagittis augue, et finibus turpis. Ut tempus tincidunt diam vel pharetra. Nulla porttitor odio sit amet nulla scelerisque, quis aliquam mi imperdiet. Sed tincidunt dui vel tellus vestibulum rhoncus. Donec tempus ultrices velit.</p> About https://blog.cachapa.xyz/about/ Mon, 01 Jan 0001 00:00:00 +0000 https://blog.cachapa.xyz/about/ Me&hellip; I&rsquo;m an Android/backend developer of sorts and&hellip; Go check my page to know more about me, lmao. This Site&hellip; This is my blog. Or something like that. In here I&rsquo;ll write about unimportant stuff and projects. Think of this as a place where I can write polite and civilized stuff. But&hellip; Here, some cunny. That&rsquo;s all! <h3 id="me">Me&hellip;</h3> <p>I&rsquo;m an Android/backend developer of sorts and&hellip; Go check <a href="https://cachapa.xyz" target="_blank" rel="noopener noreferrer">my page</a> to know more about me, lmao.</p> <h3 id="this-site">This Site&hellip;</h3> <p>This is my blog. Or something like that. In here I&rsquo;ll write about unimportant stuff and projects. Think of this as a place where I can write polite and civilized stuff.</p> <h3 id="but">But&hellip;</h3> <p>Here, some cunny.</p> <p><img src="https://blog.cachapa.xyz/img/nahida_noodles.jpeg" alt="image"></p> <blockquote> <p><em>That&rsquo;s all!</em></p> </blockquote>