Note
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iex| Links from https://www.apple.com/final-cut-pro/trial/ | |
| Final Cut Pro release notes https://support.apple.com/en-us/HT201237 | |
| What's new in Final Cut Pro https://support.apple.com/en-us/HT207877 | |
| Release history https://web.archive.org/web/20221121093911/https://en.wikipedia.org/wiki/Final_Cut_Pro_X#Release_history | |
| Final Cut Pro 10.1.3 | |
| https://secure-appldnld.apple.com/Final_Cut_Pro_X/031-05296.20140814.VRR4r/FinalCutProTrial10.1.3.dmg | |
| Final Cut Pro 10.1.4 | |
| https://secure-appldnld.apple.com/Final_Cut_Pro_X/031-02980.20141202.Jgt44/FinalCutProTrial10.1.4.dmg |
Note
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iex| # Step 1: Set priveleges | |
| $ sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -configure -allowAccessFor -allUsers -privs -all | |
| Starting... | |
| Setting allow all users to YES. | |
| Setting all users privileges to 1073742079. | |
| Done. | |
| # Step 2: Allow VNC clients |
Exporting password + one-time code data from iCloud Keychain is now officially supported in macOS Monterey and Safari 15 (for Monterey, Big Sur, and Catalina). You can access it in the Password Manager’s “gear” icon (System Preferences > Passwords on Monterey, and Safari > Passwords everywhere else), or via the File > Export > Passwords... menu item). You shouldn't need to hack up your own exporter anymore.
After my dad died, I wanted to be able to have access any of his online accounts going forward. My dad was a Safari user and used iCloud Keychain to sync his credentials across his devices. I don’t want to have to keep an OS X user account around just to access his accounts, so I wanted to export his credentials to a portable file.
| #!/bin/zsh | |
| :<<ABOUT_THIS_SCRIPT | |
| ------------------------------------------------------------------------------- | |
| Written by:William Smith | |
| Partner Program Manager | |
| Jamf | |
| bill@talkingmoose.net | |
| https://gist.github.com/talkingmoose/94882adb69403a24794f6b84d4ae9de5 |
| #!/bin/bash | |
| # | |
| # Batch Time-Lapse creation script. | |
| # | |
| # This script can be used to speed up, trim, and finally concatenate tens or | |
| # even hundreds of video clips, e.g. from a dash cam. You can do other things, | |
| # too, but the main things this script does include: | |
| # | |
| # 1. Copy across and speed up video clips from an input dir to an output dir. | |
| # 2. Trim off the first x frames of each of the copied/sped up clips. |
| #!/bin/sh -ex | |
| # Chromium update script | |
| # - forked from Superbil/chromium_update.sh | |
| # - Updated by andrepearce | |
| OS=mac | |
| DL_URL=https://download-chromium.appspot.com/dl/${OS}?type=snapshots | |
| INSTALL_DIR=/Applications | |
| TMP_DIR="/tmp/update-chrome-$RANDOM" | |
| TMP_File=chromium.zip |
| #!/bin/bash | |
| # $1 = # of seconds | |
| # $@ = What to print after "Waiting n seconds" | |
| countdown() { | |
| secs=$1 | |
| shift | |
| msg=$@ | |
| while [ $secs -gt 0 ] | |
| do | |
| printf "\r\033[KWaiting %.d seconds $msg" $((secs--)) |
| #!/bin/bash | |
| function jsonval { | |
| temp=`echo $json | sed 's/\\\\\//\//g' | sed 's/[{}]//g' | awk -v k="text" '{n=split($0,a,","); for (i=1; i<=n; i++) print a[i]}' | sed 's/\"\:\"/\|/g' | sed 's/[\,]/ /g' | sed 's/\"//g' | grep -w $prop` | |
| echo ${temp##*|} | |
| } | |
| json=`curl -s -X GET http://twitter.com/users/show/$1.json` | |
| prop='profile_image_url' | |
| picurl=`jsonval` |