HackerTrans
TopNewTrendsCommentsPastAskShowJobs

marcmarc

no profile record

Submissions

Digital Nomadism, Mobility and Risk

shaunbusuttil.com
1 points·by marcmarc·5 anni fa·0 comments

comments

marcmarc
·3 anni fa·discuss
I recommend watching the YouTube channel Asianometry. He's covering this topic and more.
marcmarc
·5 anni fa·discuss
You can also achieve that with this uBlock filter. Just add the following to "My Filters".

  ! Hide w3schools from Google search
  *://www.w3schools.com/*
  google.*##.g:has(a[href*="www.w3schools.com"])
marcmarc
·5 anni fa·discuss
The Gini coefficient is a relative measure. It is possible for the Gini coefficient of a developing country to rise (due to increasing inequality of income) while the number of people in absolute poverty decreases. This is because the Gini coefficient measures relative, not absolute, wealth. In Capital in the 21st Century, Piketty is looking at wealth groups (top 1%, top 10%, rest of the population). And it paints a very different picture.
marcmarc
·5 anni fa·discuss
I use Emacs inside VSCode's terminal just for Magit. And I've configured Emacs to open directly with the magit-status buffer. It beats all the VSCode extensions I have tested.

  (when (string-match "code" default-directory)
    (magit-status)
    (delete-other-windows))
  (with-eval-after-load 'magit
    (define-key magit-status-mode-map (kbd "q") 'save-buffers-kill-terminal))