Skip to content

Instantly share code, notes, and snippets.

View Vandcarlos's full-sized avatar

Vandcarlos Mouzinho Sandes Junior Vandcarlos

View GitHub Profile
@Vandcarlos
Vandcarlos / extensions.jsonc
Last active February 25, 2026 20:19
VS Code config
{
"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",
import Foundation
struct StuffForm {
let uuid: String?
let petUuid: String
let name: String
let type: String
let price: Double
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? {
@Vandcarlos
Vandcarlos / .swiftlint.yml
Created April 10, 2020 04:55
SwiftLint configs
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.
@Vandcarlos
Vandcarlos / opera-codecs.sh
Last active December 18, 2018 12:39
Enable proprietary video codecs on opera
#!/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!'