- Try doing First Aid using Disk Utility. Should repair any permissions that are messed up.
- Will add 2 next time I run into it :-).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Toggles hidden state of self view when using SimplePractice telehealth | |
function toggleSelfView(){ | |
var selfView = document.getElementById("publisher") | |
if (selfView.style.display === "none") { | |
selfView.style.display = "block"; | |
} else { | |
selfView.style.display = "none"; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# This script shows the previous 12 hours of Time Machine activity, then shows live logs | |
# Reference: https://superuser.com/questions/1126990/how-to-view-time-machine-log-in-macos-sierra | |
filter='processImagePath contains "backupd" and subsystem beginswith "com.apple.TimeMachine"' | |
# show the last 12 hours | |
start="$(date -j -v-12H +'%Y-%m-%d %H:%M:%S')" | |
echo "" |
Run the osquery shell with osqueryi
Show hard disk space remaining:
select path, type, round((blocks_available * blocks_size *10e-10),2) as gigs_free from mounts where path='/';
Integration test:
@Test(groups = [INTEGRATION_GROUP])
fun `$END$`(){
}
Add Kotlin logging:
Start localstack with just S3 running on port 4572 in region us-west-2
.
docker run -e "SERVICES=s3:4572" -e "DEFAULT_REGION=us-west-2" -p 4572:4572 localstack/localstack
Create an S3 bucket:
aws --endpoint-url=http://localhost:4572 s3 mb s3://test-bucket
NewerOlder