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
Show hidden characters
| { | |
| "recommendations": [ | |
| // Python & Data Science | |
| "ms-python.python", | |
| "ms-python.vscode-pylance", | |
| "ms-python.debugpy", | |
| "ms-python.python-targets", | |
| "charliermarsh.ruff", | |
| "KevinRose.python-indent", | |
| "ms-toolsai.jupyter", |
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
| import Foundation | |
| struct StuffForm { | |
| let uuid: String? | |
| let petUuid: String | |
| let name: String | |
| let type: String | |
| let price: Double |
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
| import UIKit | |
| final class StuffFormViewController: UIViewController { | |
| @IBOutlet weak var nameLabel: UITextField! | |
| @IBOutlet weak var typeLabel: UITextField! | |
| @IBOutlet weak var priceLabel: UITextField! | |
| var petUuid: String! | |
| var stuff: StuffModel? { |
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
| disabled_rules: # rule identifiers to exclude from running | |
| - colon | |
| - comma | |
| - control_statement | |
| - function_parameter_count | |
| opt_in_rules: # some rules are only opt-in | |
| - empty_count | |
| # Find all the available rules by running: | |
| # swiftlint rules | |
| included: # paths to include during linting. `--path` is ignored if present. |
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
| #!/usr/bin/bash | |
| dnf install chromium chromium-libs-media-freeworld | |
| mv /usr/lib64/opera/libffmpeg.so /usr/lib64/opera/libffmpeg.so.original | |
| ln -sf /usr/lib64/chromium-browser/libffmpeg.so.freeworld /usr/lib64/opera/libffmpeg.so | |
| echo 'Opera patch applyied!' |