Home

Awesome

👾 My Mac OS setup and applications

My Mac OS setup and the best applications I use as a Web Developer. This is a living document. I regularly update it with new tools and applications that I find useful. If you want to know more, I share more on my blog and my newsletter.

Table of content

<!-- START doctoc generated TOC please keep comment here to allow auto update --> <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> <!-- END doctoc generated TOC please keep comment here to allow auto update --> <!-- prettier-ignore-start -->

[!IMPORTANT] Disclaimer: I have been always passionate about tools. I always loved experimenting until I can find the right tool for the right task. Being a Front-End Developer requires to know the tools that exist and choose the one that will perform the task faster and better. Based on hours of research and testing, I'm sharing all the applications I believe suits the best my work and daily workflow. It's a living MacOS configuration that, I hope, will also save you time for you to enjoy life more!This is a living document. I regularly update it with new tools and applications that I find useful.

Usage

Where to find the right tool?

My Hardware

I regularly update all my hardware on a dedicated page on kit.co. Feel free to check it out!

Setup shell

Xcode 16

xcode-select --install

Homebrew - The Missing Package Manager for macOS

$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

With Homebrew comes brew-cask which will allow to install applications with the command line.

Useful commands for Homebrew
brew update                         # Fetch latest version of homebrew and formula.
brew search {app name}              # Searches all known Casks for a partial or exact match.
brew install {package name}         # Install a package
brew info --cask {app name}           # Displays information about a given Cask
brew install --cask {app name}        # Install the given cask.
brew cleanup
Cakebrew (optional) - A GUI for Cask
brew install --cask cakebrew

ZSH - An alternative shell to Bash

brew install zsh

Add this to my ~/.zshrc

export HOMEBREW_CASK_OPTS="--appdir=/Applications"

Oh My Zsh - Framework for managing your Zsh configuration

Verify that ZSH is correctly installed

zsh --version

Additionally, Zsh should be set as the default shell. Run echo $SHELL from a new terminal to confirm. Expected result: /usr/bin/zsh or similar

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

Check if Oh My Zsh was correctly installed.

Command Line Apps

⚠️ Some of the following packages are not essential but highly recommended. Some applications may depend on the installation of these packages.

GNU Coreutils - An essential package with basic tools such as ls, rm...

brew install coreutils

Wget - To download data from the web and ftp, easier than curl

brew install wget

Tree - To create beautiful indented listing of files

brew install tree

tree -L 1 # to output only the root directories and files

Nmap - A powerful command line network discovery utility

brew install nmap

The Silver Searcher - Really fast code searching tool

brew install the_silver_searcher

jq - Lightweight and flexible command-line JSON processor

brew install jq

Youtube-dl - A command line alternative to Airy

brew install youtube-dl

youtube-dl -f best 'link-of-your-own-youtube-video'

FFMPEG - To convert videos in multiple formats

brew install tesseract-lang && brew install homebrew-ffmpeg/ffmpeg/ffmpeg --with-fdk-aac --with-librsvg --with-libsoxr --with-libssh --with-tesseract --with-libvidstab --with-opencore-amr --with-openh264 --with-openjpeg --with-openssl --with-rubberband --with-webp --with-zeromq --with-zimg --with-srt --with-libvmaf --with-libxml2 --with-game-music-emu --with-libbluray --with-libbs2b --with-libcaca --with-libgsm --with-libmodplug --with-openssl@1.1 --with-rtmpdump --with-speex --with-two-lame --with-wavpack --with-xvid

More details here

blueutil - CLI for bluetooth on OSX

brew install blueutil

Speedtest-cli - The command line version of Speedtest.net

brew install speedtest-cli

Imagemagick - You can do almost everything to edit/convert images and pdfs

brew install imagemagick

DisplayPlacer - Programmatically reorganize your screens layout

brew tap jakehilborn/jakehilborn && brew install displayplacer

Fonts - Installing some fonts

brew tap homebrew/cask-fonts

brew install --cask \
    font-fira-code \
    font-source-code-pro font-source-code-pro-for-powerline \
    font-source-sans-pro

MAS - Install App Store apps from the command line

brew install mas

mas search {app name} # To search for an app

Ruby (rbenv) - To manage multiple versions of Ruby

brew install rbenv ruby-build rbenv-default-gems rbenv-gemset
echo 'eval "$(rbenv init -)"' >> ~/.zshrc
source ~/.zshrc # Apply changes

rbenv install {version}

nvm - Easily manage your node versions

⚠️ (never use brew to install nvm)

wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash

Add these lines in the $HOME/.zshrc file:

export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm

And these lines to automatically switch your node version based on the nvmrc file.

# place this after nvm initialization!
autoload -U add-zsh-hook
load-nvmrc() {
  local node_version="$(nvm version)"
  local nvmrc_path="$(nvm_find_nvmrc)"

  if [ -n "$nvmrc_path" ]; then
    local nvmrc_node_version=$(nvm version "$(cat "${nvmrc_path}")")

    if [ "$nvmrc_node_version" = "N/A" ]; then
      nvm install
    elif [ "$nvmrc_node_version" != "$node_version" ]; then
      nvm use
    fi
  elif [ "$node_version" != "$(nvm version default)" ]; then
    echo "Reverting to nvm default version"
    nvm use default
  fi
}
add-zsh-hook chpwd load-nvmrc
load-nvmrc

To default a specific node version: nvm alias default {version}

yarn - Fast, reliable, and secure dependency management.

brew install yarn

Act - Run Github Actions Locally

brew install nektos/tap/act

Git standup - Recall what you did on the last working day

brew install git-standup

Github CLI - Github on the command line

brew install github/gh/gh

Quick Look plugins

brew install --cask \
	qlcolorcode qlmarkdown qlprettypatch qlstephen \
	qlimagesize \
	quicklook-csv quicklook-json epubquicklook

Node packages to install globally

List all NPM package installed globally: npm list -g --depth 0

Applications

This is a complete list of all the applications I have on my personal and professional Mac (some apps are only on my personal computer).

🎁 Some applications can be bought individually or you can subscribe Setapp for a 7-day free trial to test multiple applications and decide the one you want to use!

Bare minimum

This is the list of the most essentials apps I would install if I was limited in the number of apps to have.

<img src="media/15878421335213.jpg" width="50" align="right">

Little Snitch - Control incoming/outgoing network traffic

Licence ~$30 Usage high Upvote on Product Hunt

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details>
CLI installation
brew install --cask little-snitch
<img src="media/15878412922030.png" width="50" align="right">

1Password - Password manager

Yearly subscription High usage Proprietary backup Upvote on Product Hunt

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details>
Extensions / plugins
<img src="media/1password-alfred.jpg" width="300">
CLI installation
brew install --cask 1password

mas install 1333542190
<img src="media/15878422056701.jpg" width="50" align="right">

Alfred 4 - Application Launcher, the best alternative for Spolight

Free Licence ~$30 Backup Dropbox High usage Upvote on Product Hunt

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details>
List of workflows I use

This is the list of the workflows I used the most (files saved in Dropbox):

CLI installation
brew install --cask alfred
<img src="media/iterm2.png" width="50" align="right">

iTerm2 - The replacement for terminal

Free Usage high Backup Dropbox Show your support Upvote on Product Hunt

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details>
CLI installation
brew install --cask iterm2

Browsers

Free

<img src="media/chrome.png" width="50" align="right">

Google Chrome

Proprietary backup

Multiple profiles

Chrome extensions
CLI installation
brew install --cask google-chrome
<img src="media/chrome-canary.png" width="50" align="right">

Google Chrome Canary

CLI installation
brew install --cask google-chrome-canary
<img src="media/firefox.png" width="50" align="right">

Firefox

CLI installation
brew install --caskfirefox
<img src="media/firefox-nightly.png" width="50" align="right">

Firefox Nightly

CLI installation
brew install --cask firefox-nightly
<img src="media/edge.png" width="50" align="right">

Microsoft Edge - The browser from Microsoft

CLI installation
brew install --cask microsoft-edge

Utilities

<img src="media/bartender.png" width="50" align="right">

Bartender 3 - Organize menu bar icons

Licence ~$20 High usage

Screenshots

  

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details>
CLI installation
brew install --cask bartender
<img src="media/flux-1.png" width="50" align="right">

f.lux - Reduce eyes fatigue

Free Usage high Show your support Upvote on Product Hunt

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details> <img src="media/flux.jpg" width="250">
CLI installation
brew install --cask flux
<img src="media/popclip.png" width="50" align="right">

PopClip - Giving more power to my mouse

Licence ~$10 Usage high Backup Dropbox for the extensions Upvote on Product Hunt

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details>
CLI installation
brew install --cask popclip
<img src="media/contexts.png" width="50" align="right">

Contexts - Window switcher

Licence ~$10 Usage high

CLI installation
brew install --cask contexts
<img src="media/cleanshotx.png" width="50" align="right">

CleanShot X - Capture your Mac’s screen like a pro.

Licence ~$30 Usage high Backup Dropbox Upvote on Product Hunt

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details>
CLI installation
brew install --cask cleanshot

Alternatives

<img src="media/text-sniper.png" width="50" align="right">

TextSniper - Extract text from images and videos

Licence ~$10 Usage low Upvote on Product Hunt

<img src="media/meetingbar.png" width="50" align="right">

MeetingBar - Never miss a meeting again

Free Usage high Upvote on Product Hunt

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details>
<img src="media/moom.png" width="50" align="right">

Moom - Move and zoom windows

Licence ~$10 Usage high Upvote on Product Hunt

<img src="media/clean-my-mac.png" width="50" align="right">

CleanMyMac X - To maintain my Mac as he was new

Licence ~$50 Usage high Upvote on Product Hunt

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details> <img src="media/cleanmymac.jpg" width="700" align="center">
CLI installation
brew install --cask cleanmymac
<img src="media/muzzle.png" width="50" align="right">

Muzzle - Silence embarrassing notifications

Free Usage high Upvote on Product Hunt

<img src="media/lungo.png" width="50" align="right">

Lungo - Prevent your Mac from going to sleep

Free Usage low Show your support Upvote on Product Hunt

<img src="media/streamdeck.png" width="50" align="right">

Stream Deck - Defining actions on buttons

Free Usage medium Backup iCloud Upvote on Product Hunt

CLI installation
brew install --cask elgato-stream-deck
<img src="media/noizio.png" width="50" align="right">

Noizio - I love birds

Free Usage low Upvote on Product Hunt

<img src="media/noizio.jpg" width="200">
CLI installation
brew install --casknoizio

mas install 928871589
<img src="media/mouseless.png" width="50" align="right">

Mouseless - Practice and learn new keyboard's shortcuts

Licence ~$20 Usage low Upvote on Product Hunt

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details> <img src="media/mouseless.jpg" width="300">
<img src="media/team-viewer.png" width="50" align="right">

TeamViewer - Remote control

Free Usage low

I only use TeamViewer when I need to debug my Mom's computer (which is located in France).

<img src="media/cardhop.png" width="50" align="right">

Cardhop - Contacts lists management

Licence ~$30 Backup iCloud Usage low Upvote on Product Hunt

Automation

<img src="media/keyboard-maestro.png" width="50" align="right">

Keyboard Maestro - The most powerful option to automate EVERYTHING on Mac

Licence ~$30 Usage high Backup Dropbox Backup Dropbox Upvote on Product Hunt

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details>
Extensions
CLI installation
brew install --cask keyboard-maestro
<img src="media/hazel.png" width="50" align="right">

Hazel - Automate repetitive tasks in a few clicks

Licence ~$30 Usage high Backup Dropbox Upvote on Product Hunt

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details>
CLI installation
brew install --cask hazel
<img src="media/raycast.png" width="50" align="right">

Raycast - Control tools with few keystrokes

Free Usage medium

CLI installation
brew install --cask raycast
<img src="media/karabiner.png" width="50" align="right">

Karabiner - Remapping my keyboards

Free Usage medium Backup Github Show your support Upvote on Product Hunt

<img src="media/better-touch-tool.png" width="50" align="right">

BetterTouch Tool - Customize multiple devices on the Mac

Licence ~$30 Usage medium Backup Dropbox Upvote on Product Hunt

CLI installation
brew install --caskbettertouchtool
<img src="media/hammerspoon.png" width="50" align="right">

Hammerspoon - OSX automation using Lua

Free Usage lowBackup Github Upvote on Product Hunt

CLI installation
brew install --caskhammerspoon

Tasks & time management

<img src="media/fantastical.png" width="50" align="right">

Fantastical - Calendar management

Free with limits High usage Upvote on Product Hunt

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details>
CLI installation
brew install --caskfantastical
<img src="media/things.png" width="50" align="right">

Things - Task manager

Licence ~$30 High usage Proprietary backup Upvote on Product Hunt

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details>
CLI installation
brew install --caskthings

mas install 904280696
<img src="media/timing.png" width="50" align="right">

Timing - To record everything I do without manual action

Yearly subscription High usage Upvote on Product Hunt

<img src="media/timing.jpg" width="700" align="center">
CLI installation
brew install --casktiming

Storage & backup management

I've used Google One many years, but decide to use Dropbox instead. The two main reasons are: integration with most of the apps I used and the offline mode out of the box.

<img src="media/dropbox.png" width="50" align="right">

Dropbox - Online Cloud Backup

Monthly subscription Usage high

I've used Google Drive storage few years but use now mainly Dropbox because of the integration with a lot of Mac OS, iOs and iPad OS apps.

To DO after install
<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details>
CLI installation
brew install --caskdropbox
<img src="media/backup-sync-google.png" width="50" align="right">

Google Backup Up & Sync

Free Usage high

To DO after install
<img src="media/forklift.png" width="50" align="right">

ForkLift - Dual pane file manager and file transfer client for macOS

Licence ~$30 Backup Dropbox Usage medium

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details>
To DO after install
<img src="media/forklift-preferences.jpg" width="400">
CLI installation
brew install --caskforklift

mas install 412448059
<img src="media/the-unarchiver.png" width="50" align="right">

The Unarchiver - The missing RAR and Zip unarchiver

Free Usage high Upvote on Product Hunt

unarchiver-options

CLI installation
brew install --caskthe-unarchiver

mas install 425424353
<img src="media/hard-disk-manager.png" width="50" align="right">

Hard Disk Manager - Maintain and manage my external hard drives

Licence ~$65 Usage low

Sometimes, some external hard drives can gave me tough times. Hard Disk Manager saved me multiple times and it's always good to check the health of your hard drives time to time.

<img src="media/harddiskmanager.jpg" width="400">
<img src="media/goodsync.png" width="50" align="right">

GoodSync - Backup/sync and file organization

Licence ~$30

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details> <img src="media/visual-studio-code.png" width="50" align="right">

Visual Studio Code - My preferred code editor

Free Usage high Backup Github

The best code editor (for my usage)

CLI installation
brew install --caskvisual-studio-code
<img src="media/tower.png" width="50" align="right">

Tower - GUI Git client

Yearly subscription Usage high Upvote on Product Hunt

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details> <img src="media/tower.jpg" width="700" align="center">
CLI installation
brew install --casktower

Diffmerge - Compare and merge files

Free Usage low

CLI installation
brew install --caskdiffmerge
<img src="media/snippetslab.png" width="50" align="right">

SnippetsLabs - Code snippets manager

Licence ~$10 Usage high Backup iCloud Backup Github

<img src="media/snippetlab-smart.jpg" width="130"> <details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details>

Other options

Extensions / plugins
Possible alternatives (to be tested)
CLI installation
mas install 1006087419
<img src="media/trailer.png" width="50" align="right">

Trailer - Github Notifications

Free Usage high Upvote on Product Hunt

<img src="media/proxyman.png" width="50" align="right">

Proxyman - Best Web Debugging Proxy for MacOS

Free Usage medium Upvote on Product Hunt

I found Proxyman when struggling making Charles working on my Mac. Proxyman make it really easy to replace any file by a local version. Useful sometimes to debug production.

<img src="media/proxyman.jpg" width="700" align="center">
<img src="media/paw.png" width="50" align="right">

Paw - Beautiful HTTP client for Mac

Backup Dropbox Usage medium Proprietary backup Upvote on Product Hunt

https://paw.cloud/extensions/

CLI installation
brew install --caskpaw
<img src="media/table-plus.png" width="50" align="right">

TablePlus - The best GUI for relational databases

Licence ~$50 Usage high

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details>
CLI installation
brew install --casktableplus
<img src="media/postman.png" width="50" align="right">

Postman - A free alternative to Paw

Free Usage medium Proprietary backup

<img src="media/mockoon.png" width="50" align="right">

Mockoon - Has never been so easy to create a mock server

Free Usage medium Upvote on Product Hunt

CLI installation
brew install --caskmockoon
<img src="media/docker.png" width="50" align="right">

Docker - Containerize everything!

Free Usage high

CLI installation
brew install docker

brew install --caskdocker-toolbox
<img src="media/altair-graphql.png" width="50" align="right">

Altair GraphQL Client - Beautiful GraphQL Client

Free Usage low Show your support

CLI installation
brew install --caskaltair-graphql-client
<img src="media/screaming-frog-seo-spider.png" width="50" align="right">

Screaming Frog SEO Spider - Website crawler to test SEO issues

Free Usage low

<img src="media/poedit.png" width="50" align="right">

Poedit - Translations made easy

Free Usage low Upvote on Product Hunt

CLI installation
brew install --caskpoedit
<img src="media/switch-hosts.png" width="50" align="right">

SwitchHosts! - Hosts management & switching

Free Usage low Upvote on Product Hunt

CLI installation
brew install --caskswitchhosts
<img src="media/core-shell.png" width="50" align="right">

Core Shell - Full featured terminal with OpenSSH support

Free Usage low

<img src="media/virtual-box.png" width="50" align="right">

VirtualBox - In case I need to debug on Windows

Free Usage low

<img src="media/smart-json-editor.png" width="50" align="right">

Smart JSON Editor - JSON data manipulation for Mac

Free Licence ~$10

Free alternative Jayson

CLI installation
mas install 1268962404
<img src="media/carbonize.png" width="50" align="right">

Carbonize - Generate beautiful code snippets

Free Usage low Upvote on Product Hunt

<img src="media/carbonize.jpg" width="700" align="center">
<img src="media/codekit.png" width="50" align="right">

CodeKit - Gulp, Grunt, Pug are on a boat

Licence ~$34 Usage low Upvote on Product Hunt

<img src="media/haskell.png" width="50" align="right">

Haskell - Haskell for Mac IDE

Licence ~$30 Usage low Upvote on Product Hunt

CLI installation
mas install Haskell

Reading & Writing

<img src="media/reeder.png" width="50" align="right">

Reeder - To stay informed

Licence ~$13 Usage high Upvote on Product Hunt

<img src="media/reeder.jpg" width="700" align="center">
CLI installation
mas install 880001334
<img src="media/scapple.png" width="50" align="right">

Scapple - Brain, ideas and connections

Licence ~$20 Usage medium Backup Dropbox Upvote on Product Hunt

<img src="media/scapple.jpg" width="700" align="center">
CLI installation
brew install --caskscapple

mas install 568020055
<img src="media/mindnode.png" width="50" align="right">

MindNode - Interactive Mind Mapping

Licence ~$30 Backup iCloud High medium Upvote on Product Hunt

What for?
What I ❤️
What I 👎
<img src="media/mindnode.jpg" width="700" align="center">
CLI installation
brew install --caskmindnode-pro

mas install 1289197285
<img src="media/notion.png" width="50" align="right">

Notion - Notes, docs, knowledge base and more, in one place

Yearly subscription Proprietary backup High usage Upvote on Product Hunt

CLI installation
brew install --casknotion
<img src="media/devonthink.png" width="50" align="right">

DEVONthink - To collect, organize and edit all my documents and articles

Licence ~200 Usage high Backup iCloud

<img src="media/devonthink.jpg" width="700" align="center">
Extensions / plugins
CLI installation
brew install --caskdevonthink
<img src="media/devonagent.png" width="50" align="right">

DEVONagent Pro - Search the web and filter the results

Licence ~$50 High medium

<img src="media/devonagent.jpg" width="700" align="center">
<img src="media/mweb.png" width="50" align="right">

MWeb - A powerful Markdown Editor

Licence ~$20 Backup iCloud Usage high Upvote on Product Hunt

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details> <img src="media/mweb.jpg" width="700" align="center">
Possible alternatives
CLI installation
mas install 1403919533
<img src="media/scrivener.png" width="50" align="right">

Scrivener - One day I want to be a writer

Licence ~$50 Usage low Backup Dropbox Upvote on Product Hunt

<img src="media/scrivener.jpg" width="700" align="center">
CLI installation
brew install --caskscrivener

mas install 1310686187
<img src="media/keynote.png" width="50" align="right">

Apple Keynote - A better alternative to Powerpoint

Free Backup iCloud Upvote on Product Hunt

Communication

<img src="media/slack.png" width="50" align="right">

Slack - Work chat and more

Free Usage high Proprietary backup Upvote on Product Hunt

Workspaces
brew install cask slack

mas install 803453959
<img src="media/airmail.png" width="50" align="right">

Airmail - My favorite email client

Free Yearly subscription Backup iCloud Usage high Upvote on Product Hunt

Filters and triage

I used "filters" on Gmail to organize most of my emails (especially newsletters, bills, recurring emails...). I wish Gmail would have an easiest way to create these filters. gmail-filters

<img src="media/airmail.jpg" width="160" align="center">
CLI installation
brew install --caskairmail

mas install 918858936

Social Media

I have a strict rule in regards to social apps on my professional Mac. I usually don't have any social / communication app that is not directly related to work (only Slack). These apps are mostly on my personal MacBook.

<img src="media/signal.png" width="50" align="right">

Signal - Signal on Mac

Free Usage low

Messenger - Facebook Messenger but on Mac

Free Usage low Upvote on Product Hunt

<img src="media/whatsapp.png" width="50" align="right">

WhatsApp - WhatsApp on Mac

Free Usage low Upvote on Product Hunt

<img src="media/discord.png" width="50" align="right">

Discord - Popular chat platform amount developers and companies

Free Usage low

I use mostly Discord to talk with HTMLHint contributors and other platforms.

<img src="media/skype.png" width="50" align="right">

Skype

Free Usage low Upvote on Product Hunt

CLI installation
brew install --caskskype

Design & Web Design

I'm not a Web Designer / Designer, but I love studying Photography, UI and UX. I try to practice as much as I can using the following applications.

<img src="media/eagle.png" width="50" align="right">

Eagle - Organize my design library

Yearly subscription Usage high Backup Dropbox Upvote on Product Hunt

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details>
Extensions / plugins
<img src="media/rightfont.png" width="50" align="right">

Rightfont 5 - The best font manager for Mac

Licence ~$35 Usage medium Backup Dropbox Upvote on Product Hunt

<img src="media/rightfont-5.jpg" width="700" align="center"> <img src="media/iconjar.png" width="50" align="right">

IconJar - Best icon manager

Yearly subscription Usage low Backup Dropbox Upvote on Product Hunt

<img src="media/iconjar.jpg" width="700" align="center">
<img src="media/adobe-creative-cloud.png" width="50" align="right">

Adobe Creative Cloud

Monthly subscription Proprietary backup Usage high

CLI installation
brew install --caskadobe-creative-cloud
<img src="media/figma.png" width="50" align="right">

Figma

Free Usage low Usage medium Proprietary backup Upvote on Product Hunt

I'm planning in using more Figma as I don't want to renew Sketch in regards to my real usage.

CLI installation
brew install --caskfigma
<img src="media/sketch.png" width="50" align="right">

Sketch

Yearly subscription Usage medium Backup Dropbox Upvote on Product Hunt

Still a reference (vs Adobe XD and Figma) but I didn't renew my licence in 2019. Planning in using Figma instead when needed.

CLI installation
brew install --casksketch
<img src="media/sketchpacks.png" width="50" align="right">

Sketchpacks

Free Usage low

To manage plugins for Sketch

Zeplin

Usage medium Proprietary backup Upvote on Product Hunt

Used Zeplin mostly at work. I remember when it first came out. A lot of updates and improvements since.

<img src="media/color-snapper.png" width="50" align="right">

ColorSnapper2 - Collect, organize and share colors

Licence ~$20 Usage medium

My go-to color-picker.

CLI installation
brew install --caskcolorsnapper
Alternatives
CLI installation
brew install --casksip
<img src="media/image-optim.png" width="50" align="right">

ImageOptim - Optimize images

Free Usage low Upvote on Product Hunt

CLI installation
brew install --caskimageoptim

Audio & Video production

<img src="media/vlc.png" width="50" align="right">

VLC - A Media player built by my compatriots

Free Usage high Show your support

It's not because it was build by French people that I love this app!

<img src="media/loopback.png" width="50" align="right">

Loopback - Cable-free audio routing for Mac

Licence ~$100 Usage low

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details> <img src="media/audiohijack.png" width="50" align="right">

Audio Hijack - Record any audio

Licence ~$50 Usage low

<details> <summary>What for? - What I ❤️ - What I 👎</summary>
What for?
What I ❤️
What I 👎
</details> <img src="media/ecammlive.png" width="50" align="right">

Ecamm Live - The simplest tool for doing live streaming on Facebook / Youtube

Free Usage medium

<img src="media/streamlabs-obs.png" width="50" align="right">

Streamlabs OBS - The best (and free) streaming app

Free Usage medium

<img src="media/screenflow.png" width="50" align="right">

Screenflow 9 - Screen recording and editing like a pro

Licence ~$100 Usage low Backup Dropbox Upvote on Product Hunt

<img src="media/power-prompter.png" width="50" align="right">

Power Prompter -

Licence ~$50 Usage low

<img src="media/twitch.png" width="50" align="right">

Twitch - The well-known streaming platform

Free Usage medium

Miscellaneous

<img src="media/keykey.png" width="50" align="right">

KeyKey - A minimalist touch typing tutor for Mac

Licence ~$20 Usage low Upvote on Product Hunt

<img src="media/typefu.png" width="50" align="right">

Type Fu - Typing training

Free Usage medium

The only typing program that has a "Code" practice section

<img src="media/typesy.png" width="50" align="right">

Typesy - When I want to compete with my wife

Licence ~$30 Usage low

<img src="media/gpg-suite.png" width="50" align="right">

GPG Suite - Encrypt, decrypt, sign and verify files or messages.

Free Usage high

<img src="media/hue-sync.png" width="50" align="right">

Hue Sync - Sync my lights with audio / video files

Free Usage low

CLI installation
brew install --cask

Mac preferences

Dock

Add spaces to my dock

defaults write com.apple.dock persistent-apps -array-add '{"tile-type"="spacer-tile";}'; killall Dock

dock-perso

Web Applications

Inspiration

Heavily inspired by the works from:

Icons and images

All logos and brand/applications names are registered and below to their owners.

<div>Icons made by <a href="https://www.flaticon.com/authors/pixel-perfect" title="Pixel perfect">Pixel perfect</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a></div> <div>Icons made by <a href="https://www.flaticon.com/authors/flat-icons" title="Flat Icons">Flat Icons</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a></div> <div>Icons made by <a href="https://www.flaticon.com/authors/prettycons" title="prettycons">prettycons</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a></div>

Licence

MIT