show dbs
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
Hola, mundo. | |
Line 6. |
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
{ | |
"categories": [ | |
{ | |
"id": 1, | |
"name": "Two-Pointer Patterns", | |
"chronology": 1, | |
"subcategories": [ | |
{ | |
"id": 101, | |
"name": "Meeting in the Middle (Sorted Arrays)", |
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 | |
# Check if an argument (Swift file name) was provided | |
if [ "$#" -ne 1 ]; then | |
echo "Usage: $0 <Swift File>" | |
exit 1 | |
fi | |
SWIFT_FILE=$1 | |
BASE_NAME=${SWIFT_FILE%.*} |
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
import Vapor | |
import RediStack | |
/** | |
The following is a routes file for a Vapor server that exposes two routes, "get" and "set", both of which accept query params. | |
The "get" route returns the value of a given key if it exists, while the "set" route stores each provided key/value pair in a Redis cache. | |
As per Vapor's conventions, the Redis configuration exists in the `Sources/App/Controllers/configure.swift` file which is not included in this Gist. | |
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
fileprivate func removePreviousViewController() { | |
guard let navigationController = self.navigationController else { return } | |
let controllerToRemove = "ConfirmationViewController" | |
var allControllers = navigationController.viewControllers | |
for (index, controller) in allControllers.enumerated() { | |
let name = String(describing: type(of: controller)) | |
if name == controllerToRemove { | |
allControllers.remove(at: index) |
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
func fillOther(view: UIView) { | |
NSLayoutConstraint.activate([ | |
leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor), | |
trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor), | |
topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor), | |
bottomAnchor.constraint(equalTo: view.safeAreaLayoutGuide.bottomAnchor) | |
]) | |
} |
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
// UIViewController extension to get root VC | |
func getRootViewController(of nestedViewController: UIViewController) -> UIViewController? { | |
return nestedViewController.view.window?.rootViewController | |
} | |
// In use inside non-root VC | |
let vc = UINavigationController(rootViewController: CurrencySelectorViewController(type: type)) | |
vc.modalPresentationStyle = .overFullScreen | |
if let root = getRootViewController(of: self) { |
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
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { | |
guard let scene = (scene as? UIWindowScene) else { return } | |
let vc = ViewController() | |
let nc = UINavigationController(rootViewController: vc) | |
window = UIWindow(frame: scene.coordinateSpace.bounds) | |
window?.windowScene = scene | |
window?.rootViewController = nc | |
window?.makeKeyAndVisible() |
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
// ExchangeRate API Supported Currencies | |
const currencies = { | |
"AED": { | |
"FIELD2": "UAE Dirham", | |
"FIELD3": "United Arab Emirates" | |
}, | |
"AFN": { | |
"FIELD2": "Afghan Afghani", | |
"FIELD3": "Afghanistan" | |
}, |
NewerOlder