This file contains 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
/* | |
* Copyright © 2017 Denis Shurygin. All rights reserved. | |
* Licensed under the Apache License, Version 2.0 | |
*/ | |
import Foundation | |
import UIKit | |
open class LocalizationExtensions { | |
This file contains 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
class BorderedLabel: UILabel { | |
@IBInspectable var topInset: CGFloat = 0.0 | |
@IBInspectable var bottomInset: CGFloat = 0.0 | |
@IBInspectable var leftInset: CGFloat = 5.0 | |
@IBInspectable var rightInset: CGFloat = 5.0 | |
@IBInspectable var color: UIColor = .white | |
override func drawText(in rect: CGRect) { | |
let insets = UIEdgeInsets.init(top: topInset, left: leftInset, bottom: bottomInset, right: rightInset) |
This file contains 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/sh | |
# --------------------------------------------------------------------- | |
# Copyright (C) 2019 Evgeny Dats <[email protected]> | |
# | |
# This file is free software; as a special exception the author gives | |
# unlimited permission to copy and/or distribute it, with or without | |
# modifications, as long as this notice is preserved. | |
# --------------------------------------------------------------------- | |
XCODEPATH="/Applications/Xcode.app/Contents/Developer/Platforms/OSREPLACE/DeviceSupport/" |
This file contains 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 | |
# Assign the value random password to the password variable | |
rustdesk_pw=$(openssl rand -hex 4) | |
# Set or change the password | |
set_rustdesk_pw=false | |
# Get your config string from your Web portal and Fill Below | |
# Use a reverse Base64 string in the format {"host":"HOSTADDRESS","relay":"","api":"","key":"HOSTKEY"} |