The Test Your Sexual Knowledge iOS app does not collect any user data of any kind. The app does not access the Internet at all.
It is totally offline app
we would ask you to purchase or subscribe once. and then you have a life time access.
Thanks
The Test Your Sexual Knowledge iOS app does not collect any user data of any kind. The app does not access the Internet at all.
It is totally offline app
we would ask you to purchase or subscribe once. and then you have a life time access.
Thanks
| #!/bin/bash | |
| echo -e "##=====> changing default shell to /bin/bash" | |
| chsh -s /bin/bash | |
| echo -e "##=====> installing homebrew" | |
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" | |
| echo -e "##=====> refreshing the environment" |
| func downsample(imageAt imageURL: URL, | |
| to pointSize: CGSize, | |
| scale: CGFloat = UIScreen.main.scale) -> UIImage? { | |
| // Create an CGImageSource that represent an image | |
| let imageSourceOptions = [kCGImageSourceShouldCache: false] as CFDictionary | |
| guard let imageSource = CGImageSourceCreateWithURL(imageURL as CFURL, imageSourceOptions) else { | |
| return nil | |
| } | |
| import UIKit | |
| @objc public protocol TimerLabelDelegate { | |
| optional func countdownStarted() | |
| optional func countdownFinished() | |
| } | |
| public extension NSTimeInterval { | |
| var int: Int { |
| extension Int { | |
| func times(b: (Int) -> ()) { | |
| for i in 0..<self { | |
| b(i) | |
| } | |
| } | |
| } | |
| 3.times { print($0) } |
| # Xcode | |
| build/* | |
| *.pbxuser | |
| !default.pbxuser | |
| *.mode1v3 | |
| !default.mode1v3 | |
| *.mode2v3 | |
| !default.mode2v3 | |
| *.perspectivev3 | |
| !default.perspectivev3 |
| // | |
| // Calculator.swift | |
| // | |
| // Created by Mohamed Hegab on 8/22/15. | |
| // Copyright (c) 2015 The Dark Dimension. All rights reserved. | |
| // | |
| import UIKit | |
| /// The alignment for drawing an String inside a bounding rectangle. |