The first thing I do on a new Mac is configuring the terminal and shell. I always install Fish and bobthefish with patched nerd fonts. If you follow the steps in this blogpost, you will have a nice looking shell like mine: Install Homebrew If you haven’t installed Homebrew yet, head over to brew.sh to […]
Tag Archives: terminal
Getting a Mac ready for development
Apple computers are awesome: they are fancy machines which make your daily life easier. But every developer knows that there are a lot of things to install and configure before you can actually start programming. This guide is an overview of how I configure my Mac for development. I’m sure everyone has his own habits […]
Setup an SSH tunnel on Mac OS X
There are some apps available to setup an SSH tunnel on OS X, but you can do it very easily in the terminal. Just start a SOCKS web proxy using this SSH command: $ ssh -D 8080 -C -N username@myserver.com -p 22 Once your proxy is running you must tell OS X to use this […]
Fish shell & sudo !!
Het gebeurt maar al te vaak dat je in de terminal een commando opnieuw wilt uitvoeren maar dan met sudo ervoor. Op de meeste systemen typ je dan sudo !! om het vorige commando als super user uit te voeren, maar fish shell doet dat niet. Het is echter mogelijk om de sudo functie te […]
Fish: een handige, gebruiksvriendelijke command line shell
Zoals vele andere informatici en programmeurs breng ik dagelijks (te) veel tijd door in de command line omgeving. Alle manieren om het werk in de Terminal te versnellen zijn dan ook welkom. Fish shell is daar één van. fish is een “smart and user-friendly” command line shell voor Unix besturingssystemen (en voor Windows). Het voordeel […]
Mac: Terminal venster maximaliseren
Wanneer je op Mac OS X het Terminal venster maximaliseert zal dit venster niet steeds het hele scherm vullen. Onderaan en rechts van het scherm zal er wat ruimte overblijven. Dit komt omdat het Terminal venster met rijen en kolommen werkt, en dus niet per pixel zal vergroten/verkleinen, maar per rij. Na veel geëxperimenteer […]