Skip to content

Instantly share code, notes, and snippets.

View hamsternik's full-sized avatar
:bowtie:
chasing on web x2

Nikita Khomitsevych hamsternik

:bowtie:
chasing on web x2
View GitHub Profile
@hamsternik
hamsternik / homebrew-permissions-issue.md
Created June 14, 2022 14:02 — forked from irazasyed/homebrew-permissions-issue.md
Homebrew: Permissions Denied Issue Fix (OS X / macOS)

Homebrew Permissions Denied Issues Solution

sudo chown -R $(whoami) $(brew --prefix)/*

import UIKit
import RxSwift
import RxCocoa
class AddDiscountTableViewCell: UITableViewCell {
@IBOutlet weak var discountTypeDropDown: SelectionDropDownView!
@IBOutlet weak var amountTextField: PrimaryTextField!
@IBOutlet weak var itemsDropDown: SelectionDropDownView!
@hamsternik
hamsternik / methodNames.swift
Last active March 21, 2018 15:47 — forked from kristopherjohnson/methodNames.swift
Get method names for an Objective-C class in Swift
// - Playgorund code here
// - This code generates all (private/public) method titles which stored within EAAccessoryManager class
import Foundation
import ExternalAccessory
import PlaygroundSupport
PlaygroundPage.current.needsIndefiniteExecution = true