This file contains hidden or 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
// Use as you wish! | |
import UIKit | |
import SnapKit | |
class ScrollStackViewController: UIViewController { | |
let scrollView = UIScrollView() | |
let contentView = UIView() | |
let stackView = UIStackView() |
This file contains hidden or 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
find /ABSOLUTE/PATH/TO/DIRECTORY/ -iname "*.EXTENSION" -exec rm '{}' ';' | |
# Confirm each one | |
find /ABSOLUTE/PATH/TO/DIRECTORY/ -iname "*.EXTENSION" -ok rm '{}' ';' |
This file contains hidden or 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 | |
# Huikee CSV-to-XLSX konvertteri by Samuli | |
# Versio 2.0, using unoconv | |
# Unicode now works | |
root_dir=$(pwd) | |
FOLDERS=$(find $root_dir -type d) | |
for fol in $FOLDERS |