test url share

test url share, updated 9/23/24, 7:24 PM

categoryOther
collectionsDev Stuff
visibility1
  verified

About Eric Asberry

Computer geek, software developer, writer, bicycle rider and occasional runner, if something scary is chasing me.

Tag Cloud


https://dev.to/stephencweiss/running-vscode-on-linux-hitting-my-watcher-limit-and-what-to-do-about-it-52i0


https://a42.us/about/


https://a42.us/2024/07/01/VSCode-Fails-To-Start-On-Ubuntu/


https://a42.us/about/


https://a42.us/2020/01/22/Flush-MacOS-DNS-Cache/


https://a42.us/

code --verbose
vscode ENOSPC: System limit for number of file watchers reached
sudo sysctl fs.inotify.max_user_watches=524288
sudo sysctl -p
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf
sudo sysctl -p
sudo killall -HUP mDNSResponder

https://en.wikipedia.org/wiki/Hidden_file_and_hidden_directory


https://bombich.com/

ls -a .*
for x in `ls -a | egrep '^\\.\\w' | egrep -v 'atom|Web|DS_Store|cache|vagra
nt'`;
do
cp -rpv $x ~/dotfiles;
done
for x in `somecommand`
ls -a | egrep '^\\.\\w' | egrep -v 'atom|Web|DS_Store|cache|vagrant'
egrep '^\\.\\w'

https://a42.us/about/


https://a42.us/2020/01/07/Copying-dot-files-from-the-shell/


https://www.npmjs.com/package/pem


https://support.apple.com/en-us/HT210176


https://support.google.com/chrome/a/forum/AAAARjBu3mE6KCMDoHdkTc/?hl=zh-Hant


https://a42.us/about/


https://a42.us/2019/10/10/This-Is-Unsafe/


https://stackoverflow.com/questions/20696041/window-openurl-blank-not-working-on-imac-safari

$(document).on('click', '.my-button', function(e) {
$.ajax({
method: 'POST',
url: '/api/call/to/get/the/url/we/need/to/open',
error: function (status, err) { },
success: function (data) {
window.open(data.redirectUrl);
}
});
});

https://a42.us/about/


https://a42.us/2019/07/25/Safari-blocking-new-window-opened-from-clicking-button-in-web-application/

$(document).on('click', '.my-button', function(e) {
$.ajax({
method: 'POST',
async: false,
url: '/api/call/to/get/the/url/we/need/to/open',
error: function (status, err) { },
success: function (data) {
var newWindow = window.open();
newWindow.location = data.redirectUrl;
}
})
});

https://docs.docker.com/engine/userguide/networking/default_network/custom-docker0


https://docs.docker.com/engine/userguide/networking/default_network/custom-docker0


https://a42.us/about/


https://a42.us/2017/06/14/SOLVED-Docker-Networking-On-Fedora-Linux-Fails-When-I-m-Connected-To-VPN/

{
"bip": "192.168.1.1/24"
}
sudo service docker restart

https://a42.us/%22http://amzn.to/2dGgEkP


https://a42.us/about/


https://a42.us/2016/09/30/Pairing-a-Logitech-MX-Master-Mouse-with-Ubuntu-16-04-Using-Bluetooth/


https://a42.us/about/


https://a42.us/2016/09/18/Quick-tip-for-joining-lines-with-a-separator-in-vim/

hciconfig hci0 sspmode 1
hciconfig hci0 down
hciconfig hci0 up
:%s/\\n/,/