Lecture 1: Introduction to Research — [📝Lecture Notebooks] [
Lecture 2: Introduction to Python — [📝Lecture Notebooks] [
Lecture 3: Introduction to NumPy — [📝Lecture Notebooks] [
Lecture 4: Introduction to pandas — [📝Lecture Notebooks] [
Lecture 5: Plotting Data — [📝Lecture Notebooks] [[
This file contains 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
sudo profiles show -type enrollment | |
systemextensionsctl list | |
ls -la /Library/LaunchAgents /Library/LaunchDaemons ~/Library/LaunchAgents | |
plutil -p /Library/Receipts/InstallHistory.plist | |
ls -la /Library/LaunchAgents | |
ls -la /Library/LaunchDaemons | |
ls -la ~/Library/LaunchAgents |
This file contains 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
-- Close Spotify | |
tell application "Spotify" to quit | |
-- Wait for Spotify to close (adjust the delay if needed) | |
delay 2 | |
-- Reopen Spotify | |
tell application "Spotify" to activate | |
-- Hide Spotify |
This file contains 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/bash | |
while true | |
do | |
killall corespeechd | |
echo "running" | |
sleep .3 | |
done |
This file contains 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
# Replace the output and file name | |
# Assuming you are in the same directory of the file to encrypt | |
zip -er OUTPUTNAME.zip FILENAME.txt | |
# You will be prompted to enter password for decryption |