5 open source tools I can't live without

Increase your productivity inside and outside the terminal by keeping these tools in your own bag of tricks.
124 readers like this.
woman on laptop sitting at the window

CC BY 3.0 US Mapbox Uncharted ERG

Some time ago, I engaged with a Twitter thread that went viral among techies. The challenge? Pick only five tools that you cannot live without. I started to think about this in relation to my everyday life, and picking just five tools was not easy. I use many tools that I consider essential, such as my IRC client to connect with my colleagues and friends (yes, I still use IRC), a good text editor to hack on things, a calendar app to keep organized, and a videoconferencing platform when more direct interaction is needed.

So let me put a twist on this challenge: Pick just five open source tools that boost your productivity. Here's my list; please share yours in the comments.

tmate

Oh, I love this tool. tmate is a fork of the well-known tmux terminal multiplexer that allows you to start a tmux session and share it over SSH. You can use it for pair programming (which is my primary use case) or for remote control.

If you collaborate often with your team members, and you want an easy, distro-agnostic, open source way to program with them (and sharing terminal access is enough for you), this is definitely a must-add to your list.

Get more info on tmate's website, or check out the code on GitHub.

ix

ix is a command-line pastebin. You don't need to install anything; you can create new pastes just by curling to the ix.io site. For example, echo Hello world. | curl -F 'f:1=<-' ix.io will give you a link to ix.io where the message "Hello world" is pasted. This is very convenient when you want to share logs for debugging purposes or to save config files in servers where you don't have a desktop environment.

One downside is that the source code is not yet published, even though it is intended to be free and open source. If you are the author and are reading this post, please post the code so that we can contribute to the polishing process.

asciinema

Yes, this is another terminal tool. asciinema allows you to record your terminal. There are many ways to use it, but I generally use it to make demos for presentations. It's very easy to use, and there are packages available for many Linux distributions and other platforms.

To see how it works, check out this cool demo. Isn't it great?

Get more information on asciinema's website and access its source code on GitHub.

GNOME Pomodoro

OK, that's enough with the terminal tools. Now I want to share this simple gem for getting and staying organized. Have you heard about the Pomodoro Technique? Pomodoro is basically a time-management tool. It uses a tomato-shaped timer that helps you split your time into work chunks and breaks (by default, 25 minutes of work followed by five-minute breaks). And, after every four pomodoros, you take a longer break (15 minutes by default). The idea is that you stay focused during the work time, and you stretch and relax on the breaks.

This sounds very, very simple, and you might be hesitant to allow a tomato-shaped clock to control your life, but it definitely helped me get better organized and avoid exhaustion when trying to focus on many things at the same time.

Whatever your role, I highly recommend this practice. And among the many different tools that implement it, I recommend the GNOME Pomodoro app. It's available for major GNU/Linux distros, so it requires that you use the GNOME desktop environment (this might be its downside).

Check out more information on GNOME Pomodoro's website, and access its GitHub repo to get the source code and learn how you can contribute.

Jitsi

Last but not least is Jitsi. When you're working on a remote, globally distributed team, you need a way to connect with people. Instant messaging is good, but sometimes it's better to have a quick meeting to discuss things face to face (well, seeing each other faces). There are a lot of videoconferencing tools available, but I like Jitsi a lot. Not only because it's free and open source, but also because it provides a clean, functional interface. You can set up your own Jitsi server (for business purposes), but you can also try out a public Jitsi instance by going to the Jitsi Meet website.

A good practice for setting up this kind of meeting: use it only when you have a clear agenda in mind. And always ask yourself, can this meeting be an email instead? Follow these guidelines and use Jitsi with caution, and your workday will be extremely productive!

Learn more on Jitsi's website and start contributing by accessing its GitHub repository.


I hope my list helps you reach the next level in productivity. What are your five, can't-do-without-them, open source productivity tools? Let me know in the comments!

What to read next
User profile image.
Senior software engineer at Red Hat, former Outreachy/GSoC intern, FOSS passionate and tech in general enthusiast. Eager to learn about new technologies. to contribute to different open-source projects and to get new people involved with the open-source philosophy. Currently, I'm a contributor mainly in the OpenStack Shared Filesystems as a Service (Manila) project.

10 Comments

I hadn't heard of tmate or ix, so thanks for those! The pomodoro technique is intriguing to me. I might try it.

This is a great list, thanks!

screen -x also has ability to share terminal.

Is there a reason you used a closed source item, ix, when fiche or Termbin are both widely known, widely used, and fully open source. Just pipe anything to `nc termbin.com 9999' and you'll get back a url custom to that paste.

https://github.com/solusipse/fiche

ix is just a bash function and can be snarfed with,

curl ix.io/client > ix
chmod +x ix
./ix -h

Yeah, but its also closed source and requires a client. Termbin uses nc which is built-in to most all systems, and doesn't require an additional client.

$: cat /var/log | nc termbin.com 9999
Termbin.com/uh7h4s

In reply to by Steeve

Yes, I prefer IRC as well. Certainly better than Slack (mainly due to Slack's horrid, non-configurable and non-replaceable UI).

Mind you, IRC could be more fun to use if there were clients using the ComicChat "protocol" <g>.

Handy list.

I'm installing and giving Pomodoro a try right now. I know there are a few out there but I like trying something recommended or that somebody else uses to help vet out the half-baked ones.

The problem I find with Jitsi is that in order for it to work, the people you need to communicate with has to also use it (or be open to use it). This goes professionally and personally, which is one reason why Zoom continues to be popular. At least it has a cross-platform client.

Funny that. As a teacher, during lockdown I had to run video teaching sessions for my A level maths students (16-18 year old). When I emailed them, one said they were not allowed to attend any Zoom meetings. I am assuming that parents had concerns over privacy. When I said we were using Jitsi the reply was "Oh. OK."
As for cross platform client, we simply used the browser based Jitsi Meet, simply send them the link and password and job is, as they say, a good one.

In reply to by dragonbite

A theory I've been testing lately is that other people's resistance to open source is largely in the promoter's (me, in my test cases) mind. People use lots of different platforms for meetings and Internet collaboration, and rarely do you get a counter-offer. It's not common to invite someone to a Zoom meeting only to get a message back from them saying they'd rather use Google Hangouts, for instance. People simply agree to meet you where you've proposed.

So far, I've had the same success when I casually proposed my Jitsi server as a meeting place. If I'm the one initiating a meeting, people just go along with whatever solution has been pitched. With Jitsi, a browser is all the user needs. Very very cross platform. So, my strategy is to use open source at least when initiating meetings.

So far, this has been working well for me, but as always your mileage may vary.

In reply to by dragonbite

Thanks Victoria for sharing your top 5.
Like for tmate !
Though personally I wouldn't consider any of those as "I can't live without" :-)

Creative Commons LicenseThis work is licensed under a Creative Commons Attribution-Share Alike 4.0 International License.