npm config ls -l | grep config
; cli configs
; userconfig /home/ubuntu/.npmrc
globalconfig = "/data/storage/node-v0.8.8-linux-x64/etc/npmrc"
userconfig = "/home/ubuntu/.npmrc"
https://github.com/laravel/valet/issues/375#issuecomment-629801919 | |
Nginx is looking for a favicon.ico file at the root level. | |
Instead, for Laravel projects, it should look in the public folder. | |
Just add /public on the files paths inside your config file, and run valet restart: | |
location = /public/favicon.ico { access_log off; log_not_found off; } | |
location = /public/robots.txt { access_log off; log_not_found off; } |
-- https://github.com/tekezo/Karabiner/issues/814 | |
-- HANDLE SCROLLING WITH MOUSE BUTTON PRESSED | |
local scrollMouseButton = 2 | |
local deferred = false | |
overrideOtherMouseDown = | |
hs.eventtap.new( | |
{hs.eventtap.event.types.rightMouseDown}, | |
function(e) | |
deferred = true |