Skip to content

Commit

Permalink
Post: Replace inline style with class
Browse files Browse the repository at this point in the history
It's been a while, I forgot I had already solved this with a class that handled inline `pre` elements
  • Loading branch information
beeceej committed Jun 26, 2024
1 parent 82fe938 commit 85575a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions content/17-emacs-and-back-again.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
The primary tech stack at my job at the time was nearly all JVM Spring Boot based. The JVM and Spring frustrated me, the feedback loops were not great, and heavily tied to IDE's like intellij, and for all the benefits the JVM provided felt over abstracted, simple things were difficult, and difficult things were easy. Only if you knew the framework inside and out. I explored functional programming as an escape from the JVM OOP framework hell. Part of that journey led me to emacs. I thought I was slashing through the jungle away from object oriented programming, but I found myself on a journey stripping away layers of abstraction that made work a slog.
<br>
<br>
That journey brought me to emacs, first with evil-mode spacemacs, and then next to a small-er homegrown set up, built up organically over a few years. I played with <pre style="display: inline">common lisp</pre> and <pre style="display: inline">SLIME</pre>, switched from <pre style="display: inline">helm</pre> to <pre style="display: inline">ivy</pre>, switched between <pre style="display: inline">lsp-mode</pre> to <pre style="display: inline">eglot</pre>, configured my <pre style="display: inline">evil-mode</pre> keybindings, learned new git tricks through <pre style="display: inline">magit</pre>. At work, I wrote <pre style="display: inline">go</pre> and <pre style="display: inline">python</pre> and <pre style="display: inline">terraform</pre>, all in emacs. I was really productive, the invisible string separating me from the tools I was using was fairly short and thin.
That journey brought me to emacs, first with evil-mode spacemacs, and then next to a small-er homegrown set up, built up organically over a few years. I played with <pre class="inline">common lisp</pre> and <pre class="inline">SLIME</pre>, switched from <pre class="inline">helm</pre> to <pre class="inline">ivy</pre>, switched between <pre class="inline">lsp-mode</pre> to <pre class="inline">eglot</pre>, configured my <pre class="inline">evil-mode</pre> keybindings, learned new git tricks through <pre class="inline">magit</pre>. At work, I wrote <pre class="inline">go</pre> and <pre class="inline">python</pre> and <pre class="inline">terraform</pre>, all in emacs. I was really productive, the invisible string separating me from the tools I was using was fairly short and thin.
<br>
<br>
This close relationship between me-and-my-code-editor directly mirrors how I innately approach things, more focused on the journey than the destination. Which in many ways competes with the way the business world works, focused more on delivery and results rather than how it felt getting there. There is also a fair amount of burden in peeling back layers of complexity and abstraction. Especially in regards to a developers toolset.
Expand All @@ -13,4 +13,4 @@
Also, I got a new job and it was back to the JVM. Back to Intellij, I took a step back from personal projects, and adopted Intellij as my primary IDE. Things mostly just worked, and it was a relief not having to worry about configuration or breaking changes from updating packages. I became a bit more hands off. The invisible string between my tools and I became a bit longer and thicker. Probably, the swing back to the IDE and Java was a course correction from my hubris in exploration, content to set up camp and chill out a bit.
<br>
<br>
Two layoffs later and now I'm coming back to emacs, not because it's the best editor out there, and not because I love writing <pre style="display: inline">elisp</pre>. Probably I'm coming back because the journey and exploration, to me, is more fulfilling than the destination.
Two layoffs later and now I'm coming back to emacs, not because it's the best editor out there, and not because I love writing <pre class="inline">elisp</pre>. Probably I'm coming back because the journey and exploration, to me, is more fulfilling than the destination.
2 changes: 1 addition & 1 deletion posts/posts.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ var (
Path: "notes/17-emacs-and-back-again.html",
Title: "Emacs And Back Again",
Posted: "2024-06-18",
Updated: "2024-06-18",
Updated: "2024-06-25",
Tags: []string{"editor", "ide", "emacs", "code"},
}
Posts = []Post{
Expand Down

0 comments on commit 85575a9

Please sign in to comment.