Auto-sign commits on MacOS (Globally and with different IDEs):
Get your signingkey in this way.
$ brew install gnupg gnupg2 pinentry-mac
$ git config --global user.signingkey <YOUR_SIGNING_KEY>
$ git config --global commit.gpgsign true
Auto-sign commits on MacOS (Globally and with different IDEs):
Get your signingkey in this way.
$ brew install gnupg gnupg2 pinentry-mac
$ git config --global user.signingkey <YOUR_SIGNING_KEY>
$ git config --global commit.gpgsign true
composer show -i -t
For testint purposes I have a few partitions with a clean install of macOS, these partitions contain applications I use daily. Somtimes spotlight starts applications from that volume.. that is just super annoying I use this script to unmount them after start up.
You just have to move these files
mv nl.mauriciokruijer.unmountvolumes.plist ~/Library/LaunchDeamons/
sudo mv unmountVolumes.sh /usr/local/bin/
#!/bin/sh | |
# Thanks dropbox, this db is read-only. You need to disable SIP to do this stuff now... `csrutil disable ` | |
# sudo sqlite3 /Library/Application\ Support/com.apple.TCC/TCC.db "INSERT INTO access VALUES('kTCCServiceAccessibility','com.apple.Terminal',0,1,1,NULL,NULL);" | |
check=$(xcode-select --install 2>&1) | |
echo $check | |
str="xcode-select: note: install requested for command line developer tools" | |
while [[ "$check" == "$str" ]]; | |
do |
Things I had to do using Homebrew to get my local web dev environment back up and running after migration to OSX Sierra + Xcode 8.1.
Note: I used brew reinstall
because I had already installed most of this previously under Yosemite. Probably better ways to do this, but this is what worked for me.
brew doctor
brew tap homebrew/dupes
brew tap homebrew/versions
I hereby claim:
To claim this, I am signing this object:
<?xml version="1.0" encoding="UTF-8"?> | |
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"> | |
<channel> | |
<title>Audiotour over dingen we niet kunnen zien</title> | |
<link>http://www.evdp.nl/</link> | |
<language>nl</language> | |
<copyright>© 2014 Eline van der Ploeg</copyright> | |
<itunes:subtitle>Korte audiotour over allerlei dingen</itunes:subtitle> | |
<itunes:author>Eline van der Ploeg</itunes:author> | |
<itunes:keywords>talk,technology,radio,mix</itunes:keywords> |
456 The session is malformed. | |
457 The session has an invalid origin. | |
458 The session is invalid, because the app is no longer installed. | |
459 The user has been checkpointed. The error_data will contain the URL the user needs to go to to clear the checkpoint. | |
460 The session is invalid likely because the user changed the password. | |
461 The session is invalid, because the user has reinstalled the app. | |
462 The session has a stale version. | |
463 The session has expired. | |
464 The session user is not confirmed. | |
465 The session user is invalid. |
window.console = window.console || {log:function(){}}; |