<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/"> <channel><title>Entropic Blog by Jakub Dundalek</title> <description>Compression of Software Journey</description><link>https://dundalek.com</link> <atom:link href="https://dundalek.com/feed.xml" rel="self" type="application/rss+xml"/> <item><title>Beyond Chat: Tree-based Problem Solving</title> <description>&lt;p&gt;Problem solving and software design is essentially a graph search in a solution space. Yet most generative AI interfaces force us into linear conversations.&lt;/p&gt;</description> <pubDate>Mon, 01 Dec 2025 00:00:00 +0000</pubDate><link>https://dundalek.com/entropic/tree-based</link> <guid isPermaLink="true">https://dundalek.com/entropic/tree-based</guid> </item> <item><title>Normalize Sharing Scrappy Fiddles</title> <description>&lt;p&gt;I’ve always been curious in nature and experimenting with countless projects. Some make it as open source to &lt;a href="https://github.com/dundalek"&gt;Github&lt;/a&gt;. Many more just sit on my disk, never seeing daylight.&lt;/p&gt;</description> <pubDate>Sat, 01 Nov 2025 00:00:00 +0000</pubDate><link>https://dundalek.com/entropic/scrappy-fiddles</link> <guid isPermaLink="true">https://dundalek.com/entropic/scrappy-fiddles</guid> </item> <item><title>Code Tours as Code for Developer Onboarding</title> <description>&lt;p&gt;How to onboard a new developer to a codebase?&lt;/p&gt;</description> <pubDate>Thu, 09 Oct 2025 00:00:00 +0000</pubDate><link>https://dundalek.com/entropic/code-tours</link> <guid isPermaLink="true">https://dundalek.com/entropic/code-tours</guid> </item> <item><title>Facing the Paradox of Software Visualization</title> <description>&lt;p&gt;The paper &lt;a href="https://web.archive.org/web/20220101103405/https://cs.brown.edu/~spr/papers/svparadox.pdf"&gt;The Paradox of Software Visualization&lt;/a&gt; by Steven Reiss opens with a question:&lt;/p&gt;</description> <pubDate>Fri, 02 May 2025 00:00:00 +0000</pubDate><link>https://dundalek.com/entropic/softviz-paradox</link> <guid isPermaLink="true">https://dundalek.com/entropic/softviz-paradox</guid> </item> <item><title>Interactive Shell UI and JavaFX</title> <description>&lt;p&gt;It’s been a while since the last update about Closh. The reason is that I wanted to finish the GraalVM port before a release. Unfortunately, the port proved more difficult. I kept working on it but kept running into more issues delaying the release. So I finally claimed a defeat in this round and went for a &lt;a href="https://github.com/dundalek/closh/releases/tag/v0.5.0"&gt;release&lt;/a&gt; without it.&lt;/p&gt;</description> <pubDate>Tue, 02 Jun 2020 00:00:00 +0000</pubDate><link>https://dundalek.com/entropic/interactive-shell-ui-and-javafx</link> <guid isPermaLink="true">https://dundalek.com/entropic/interactive-shell-ui-and-javafx</guid> </item> <item><title>Working with data on the Command Line</title> <description>&lt;p&gt;Often times there is a need to extract information or do a transformation involving structured data in formats like JSON, XML and others. For one-off tasks a command line is very useful but traditional tools like &lt;code class="highlighter-rouge"&gt;sed&lt;/code&gt; and &lt;code class="highlighter-rouge"&gt;awk&lt;/code&gt; are lacking in these cases. What other tools can we use to work with data on the command line?&lt;/p&gt;</description> <pubDate>Wed, 02 Jan 2019 00:00:00 +0000</pubDate><link>https://dundalek.com/entropic/working-with-data-on-the-command-line</link> <guid isPermaLink="true">https://dundalek.com/entropic/working-with-data-on-the-command-line</guid> </item> <item><title>Script mode design proposal for Closh</title> <description>&lt;p&gt;The purpose of this post is to go through possible features and summarize the design of the script mode for &lt;a href="https://github.com/dundalek/closh"&gt;Closh&lt;/a&gt;. It can be divided into two parts. I am going to start with definition of CLI arguments. The second part describes details of the script mode behavior.&lt;/p&gt;</description> <pubDate>Mon, 17 Dec 2018 00:00:00 +0000</pubDate><link>https://dundalek.com/entropic/script-mode-design-proposal-for-closh</link> <guid isPermaLink="true">https://dundalek.com/entropic/script-mode-design-proposal-for-closh</guid> </item> <item><title>Closh: Where we are and what's next</title> <description>&lt;p&gt;I’ve been using bash for a nearly a decade and half. During that time I’ve seen very little innovation of bash and command line shells in general. The frustration with lack of innovation culminated in October last year. As I’ve been discovering the power and beauty of Clojure I got a spark of inspiration. I hacked together a proof of concept to see if it would be viable to use Clojure as a language for a shell. This effort then lead me to building a &lt;a href="https://github.com/dundalek/closh"&gt;full-blown command line shell&lt;/a&gt;.&lt;/p&gt;</description> <pubDate>Tue, 12 Jun 2018 00:00:00 +0000</pubDate><link>https://dundalek.com/entropic/closh-where-we-are-and-whats-next</link> <guid isPermaLink="true">https://dundalek.com/entropic/closh-where-we-are-and-whats-next</guid> </item> <item><title>Shell Auto-completion Systems</title> <description>&lt;p&gt;One great feature of modern command shells that improves experience is the tab-completion of commands. After typing part of a command and hitting the TAB key the shell presents list of possible completions of a given command. For some commands the completions are quite sophisticated. Lets look how it works for most common shells.&lt;/p&gt;</description> <pubDate>Wed, 18 Jan 2017 00:00:00 +0000</pubDate><link>https://dundalek.com/entropic/shell-auto-completion</link> <guid isPermaLink="true">https://dundalek.com/entropic/shell-auto-completion</guid> </item> <item><title>Combining CLI and GUI</title> <description>&lt;p&gt;The command-line interface (CLI) is a powerful way to control computers. However, it is also quite difficult to learn and more complicated to use. Graphical user interfaces (GUI) offer alternative approach that is more intuitive and easier to use but they loose some power. My goal is to explore an approach that takes power from CLI and intuitiveness from GUIs.&lt;/p&gt;</description> <pubDate>Wed, 04 Jan 2017 00:00:00 +0000</pubDate><link>https://dundalek.com/entropic/combining-cli-and-gui</link> <guid isPermaLink="true">https://dundalek.com/entropic/combining-cli-and-gui</guid> </item> </channel> </rss>