- Plug in your SD card, HDD, or other block device and then use the following command to see which /dev/diskN node it's located on:
diskutil list
- Unmount the disk where “N� is the number of the disk taken from the above command:
alias gityolo='git commit -am "DEAL WITH IT" && git push -f origin master' |
#!/bin/bash | |
array=( wipe veil prism-1 prism-2 prism-3 clay piston-1 piston-2 piston-3 flash-1 flash-2 flash-3 dotted-spiral suspension confetti timer ufo splits moon strike zig-zag squiggle bubbles corona pinwheel glimmer ) | |
for i in "${array[@]}" | |
do | |
wget -nc "http://www.patatap.com/assets/A/$i.mp3" -P A/ | |
wget -nc "http://www.patatap.com/assets/B/$i.mp3" -P B/ | |
wget -nc "http://www.patatap.com/assets/C/$i.mp3" -P C/ | |
wget -nc "http://www.patatap.com/assets/D/$i.mp3" -P D/ | |
wget -nc "http://www.patatap.com/assets/E/$i.mp3" -P E/ |
_.
_/=\:<
.#/*let}
//as\@#:~/
try()]:=./
*~let:>@{#
</>)#@~*/
(+~:~/+/
/={+"
#!/bin/bash | |
ITERATION=1 | |
EXTENSION="mp4" | |
FILENAME="$HOME/Desktop/Simulator Recording.$EXTENSION" | |
while [ -e "$FILENAME" ] | |
do | |
ITERATION=$((ITERATION+1)) | |
FILENAME="$HOME/Desktop/Simulator Recording $ITERATION.$EXTENSION" |
transitioningDelegate
“do you have an animated transition for me?”<AnimatedTransitioning>
object”<AnimatedTransitioning>
object; perform the transition, and here’s the <ContextTransitioning>
that defines the container view, the from vc, the to vc, the frames, etc. tell the context when you’re done”<AnimatedTransitioning>
value does the animation and tells the <ContextTransitioning>
value when it’s donetransitioningDelegate
“do you have an interactive transition for me?”<InteractiveTransitioning>
and an <AnimatedTransitioning>
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>items</key> | |
<array> | |
<dict> | |
<key>assets</key> | |
<array> | |
<dict> |
#!/bin/bash | |
# Place this file in `.git/hooks/` | |
if which swiftlint >/dev/null; then | |
swiftlint autocorrect | |
else | |
echo "warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint" | |
fi | |
git diff --diff-filter=d --staged --name-only | grep -e '\(.*\).swift$' | while read line; do |
I hereby claim:
To claim this, I am signing this object:
// | |
// ContentView.swift | |
// SegPage | |
// | |
// Created by Joe Blau on 9/21/21. | |
// | |
import SwiftUI | |
enum Page: Identifiable, CaseIterable, CustomStringConvertible { |