fixing a bunch of broken stuff I think

This commit is contained in:
Chris Cochrun 2022-02-25 14:16:41 -06:00
parent 0dbc3ead0e
commit 8bace887a2
1551 changed files with 299 additions and 57481 deletions

View file

@ -1 +0,0 @@
&#32; submitted by &#32; <a href="https://www.reddit.com/user/ideasman_42"> /u/ideasman_42 </a> <br/> <span><a href="https://gitlab.com/ideasman42/emacs-doc-show-inline">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/emacs/comments/r9q794/ann_docshowinline_inline_docstring_display_for_cc/">[comments]</a></span>

View file

@ -1,10 +0,0 @@
<p class="text">Chicago is called &quot;The Second City&quot; because most of it was rebuilt after the great Chicago fire. Some of the iconic architectural buildings in the Chicago sky line were built during this era of the city&#39;s history. If you take the historical river tour, the guides will almost celebrate the Great Fire. According to their telling of story, Chicago wouldn&#39;t be the city it is if the fire hadn&#39;t taken everything to the ground.</p>
<p class="text">Our lives seem to be made up of a series of moments where everything is taken to ground. We graduate high school and we leave a world of achievements and failures, friends and enemies and a place where at least we knew who we were and then, we enter into college, join the armed forces, or begin a career and we start all over again. We change jobs and we start over. We get married and we start over. We have children and we start over. We retire and we start over again.</p>
<p class="text">Some of these times of starting over are predictable and anticipated. Other times, like a hurricane making landfall, these moments happen suddenly and overwhelm our lives, leaving us with nothing more than memories and the struggle to carry on.</p>
<p class="text">And there are times when the church is taken down to the ground as well. Throughout our history, the church has been forced to go back to basics after some kind of catastrophic event. The Roman Empire falls so monks hide in monasteries and copy the Scriptures over and over. The Bible survives because of their dedication. The Bamboo Curtain cuts off Chinese Christians from the rest of the world. After decades of isolation, the world was afraid the Chinese church had been lost. When communications were reestablished, the world found out that not only had the Chinese church survived, ...</p><p class="more"><a href="https://www.christianitytoday.com/scot-mcknight/2021/november/from-ground-up.html">Continue reading</a>...</p>
<p><br /><a href="https://rss.beaconads.com/click.php?z=1289806&k=c779018782158d93282944b4f7dd4d03&a=190598&c=12378230" target="_blank"><img src="https://rss.beaconads.com/img.php?z=1289806&k=c779018782158d93282944b4f7dd4d03&a=190598&c=12378230" border="0" alt="" /></a></p>
7

View file

@ -1 +0,0 @@
<table> <tr><td> <a href="https://www.reddit.com/r/unixporn/comments/r5tb8h/hlwm_give_some_love_to_herbstluftwm/"> <img src="https://preview.redd.it/2saqtx6zvr281.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=8b853455b0b93230b24172fee41726be5eccfa2b" alt="[HLWM] Give some love to herbstluftwm !!" title="[HLWM] Give some love to herbstluftwm !!" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/GlyderZ_SP"> /u/GlyderZ_SP </a> <br/> <span><a href="https://i.redd.it/2saqtx6zvr281.png">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/unixporn/comments/r5tb8h/hlwm_give_some_love_to_herbstluftwm/">[comments]</a></span> </td></tr></table>

View file

@ -1 +0,0 @@
<!-- SC_OFF --><div class="md"><h3>Insert Character without shifting other string in the same line</h3> <p><code> My interval | 0 1 2 3 4 | | | + - - - - -+ ↑ insert char here </code></p> <h3>Can I insert some character in the uparrow position without shifting the RIGHT plug sign?</h3> <h3>Is there any shortcut key to do so</h3> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/ellipticcode0"> /u/ellipticcode0 </a> <br/> <span><a href="https://www.reddit.com/r/emacs/comments/r53k5e/insert_character_without_shift_the_characters_on/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/emacs/comments/r53k5e/insert_character_without_shift_the_characters_on/">[comments]</a></span>

View file

@ -1,38 +0,0 @@
<p>I have been pretty busy since my last update here, but that does not mean I
havent had the time to explore a couple of things for my everyday Emacs usage.</p>
<p>Lately I had to deal with some Java and some JavaScript. No fancy libraries on
top of them, no languages built upon them, just plain, old Java and JavaScript.
I took that as a chance to familiarize myself with
<a href="https://microsoft.github.io/language-server-protocol/">LSP</a> and especially with
<a href="https://github.com/joaotavora/eglot">Eglot</a>, one of the two (to my knowledge)
packages that add LSP support to Emacs. Why Eglot and not
<a href="https://github.com/emacs-lsp/lsp-mode">lsp-mode</a>? Simple: I like how Eglot
leverages <code class="language-plaintext highlighter-rouge">project.el</code> and Flymake, tools I heavily rely on, and I also like how
quickly it enabled me to type Java and JavaScript code.</p>
<div class="language-emacs-lisp highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="p">(</span><span class="nv">add-hook</span> <span class="ss">'java-mode-hook</span> <span class="nf">#'</span><span class="nv">eglot-ensure</span><span class="p">)</span>
<span class="p">(</span><span class="nv">add-hook</span> <span class="ss">'js-mode-hook</span> <span class="nf">#'</span><span class="nv">eglot-ensure</span><span class="p">)</span>
</code></pre></div></div>
<p>Neat, huh?</p>
<p>Eglot works well with Company, Xref, and ElDoc, so coding in Java finally makes
sense in Emacs. Granted, I havent used it on a big project and I am sure the
likes of IntelliJ IDEA and Eclipse do wonders, but none of them has the editing
capabilities or the openness to infinite customization that Emacs offers.</p>
<p>Another tool that entered my day-to-day computing is the built-in
version-control system, or VC for short. My love for
<a href="https://www.manueluberti.eu/emacs/2017/11/09/magit/">Magit</a> is well-known, but
on my way to a vanilla Emacs appreciation I thought I could give VC a try. It
turns out most of the things I need to do with my Git-versioned projects can be
done from <code class="language-plaintext highlighter-rouge">vc-dir</code>. This means that instead of <kbd>C-x g</kbd> for
<code class="language-plaintext highlighter-rouge">magit-status</code> I have been using <kbd>C-x p v</kbd> for <code class="language-plaintext highlighter-rouge">project-vc-dir</code>. When
its time to get my hands dirty with some advanced Git-fu, Magit is always next
to me.</p>
<p>One thing should be obvious here: Magit is more powerful and feature rich than
the built-in VC, so I do not intend to drop Magit as quickly I dropped
Projectile and Flycheck. Why dont I just use Magit, then, you ask. For the same
reason I tried Eglot instead of installing Eclipse, Id reply. Curiosity will
not kill any cat in my house.</p>

View file

@ -1 +0,0 @@
<!-- SC_OFF --><div class="md"><p>When I do</p> <p>Shift + [2@] it prints &quot; in place of @</p> <p>Shift + [4$] prints some unknown symbol in place of $</p> <p>Shift + [-_] prints + in place of -</p> <p>There are many others.</p> <p>What should I do.</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Code-eat-sleep"> /u/Code-eat-sleep </a> <br/> <span><a href="https://www.reddit.com/r/archlinux/comments/rd5ujw/help_keyboard_broken/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/archlinux/comments/rd5ujw/help_keyboard_broken/">[comments]</a></span>