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 | |
# The right time | |
xcrun simctl status_bar booted override --time 09:41 | |
# WiFi & Cellular network | |
xcrun simctl status_bar booted override --dataNetwork wifi | |
xcrun simctl status_bar booted override --wifiBars 3 | |
xcrun simctl status_bar booted override --cellularBars 4 | |
# 100% battery level | |
xcrun simctl status_bar booted override --batteryLevel 100 |
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
import Foundation | |
import CFNetwork | |
public class FTPUpload { | |
fileprivate let ftpBaseUrl: String | |
fileprivate let directoryPath: String | |
fileprivate let username: String | |
fileprivate let password: String |
// This sketches a script that will sample images from an AVAsset at a | |
// new framerate. This might be used to transcode a movie or create an | |
// animated GIF. | |
import AppKit | |
import AVFoundation | |
import CoreMedia | |
let FPS = 12 // The target framerate for the new movie. | |
let frameDuration = CMTimeMake(1, Int32(FPS)) |