Digital Nomadism, Mobility and Risk
shaunbusuttil.com1 pointsby marcmarc0 comments
! Hide w3schools from Google search
*://www.w3schools.com/*
google.*##.g:has(a[href*="www.w3schools.com"]) (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)) function curry(fn, args) {
if (typeof args == "undefined" || args.length < fn.length)
return function() {
if (typeof args == "undefined")
args = [];
return curry(fn, args.concat(Array.prototype.slice.call(arguments)));
};
return fn.apply(this, args);
}
var add = curry(function(a, b, c) { return a + b + c;});