RSSAmplifier

Blog

Entropic Blog by Jakub Dundalek

Compression of Software Journey

dundalek.comRSS feed ↗10 posts

Latest posts

Beyond Chat: Tree-based Problem Solving

Problem solving and software design is essentially a graph search in a solution space. Yet most generative AI interfaces force us into linear conversations.

Normalize Sharing Scrappy Fiddles

I’ve always been curious in nature and experimenting with countless projects. Some make it as open source to Github . Many more just sit on my disk, never seeing daylight.

Code Tours as Code for Developer Onboarding

How to onboard a new developer to a codebase?

Facing the Paradox of Software Visualization

The paper The Paradox of Software Visualization by Steven Reiss opens with a question:

Interactive Shell UI and JavaFX

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 release without it.

Working with data on the Command Line

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 sed and awk are lacking in these cases. What other tools can we use to work with data on the command line?

Script mode design proposal for Closh

The purpose of this post is to go through possible features and summarize the design of the script mode for Closh . 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.

Closh: Where we are and what's next

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…

Shell Auto-completion Systems

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.

Combining CLI and GUI

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.