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
#!/bin/zsh | |
:<<ABOUT_THIS_SCRIPT | |
------------------------------------------------------------------------------- | |
Written by:William Smith | |
Partner Program Manager | |
Jamf | |
[email protected] | |
https://gist.github.com/talkingmoose/94882adb69403a24794f6b84d4ae9de5 |
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 |
#!/bin/bash | |
# Source: https://gist.github.com/dimo414/10d6f162fb6d72f517a041d28d92314f | |
# | |
# This is a basic heartbeat monitoring script suitible for adding to | |
# a machine's crontab to receive alerts (via https://healthchecks.io) | |
# when the machine is unhealthy. | |
# | |
# I use it to keep an eye on my headless Raspberry Pi, but it should | |
# work for most Linux machines. | |
# |
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
#!/bin/bash | |
# For Camera Photos that need the following fix: | |
# - the DateTimeOriginal was in the filename (the actual time you want as Exif.Image.DateTimeOriginal, and File System Modification Date/Time) | |
# - The File System Modification Date/Time is wrong | |
# - the Exif.Image.DateTime was never set or was wrong | |
# - the Exif.Photo.DateTimeDigitized was never set or was wrong | |
# - the Exif.Image.DateTime was never set but exists in the MetadataDate |
#!/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/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/sh | |
# | |
# borg-backup.sh - BorgBackup shell script | |
# | |
# Author: Thomas Hurst <[email protected]> | |
# | |
# No warranty expressed or implied. Beware of dog. Slippery when wet. | |
# This isn't going to be your *only* backup method, right? | |
# | |
# Synopsis: |
#!/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. |
# Copyright 2015 Andrew Gunnerson <[email protected]> | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, |