Skip to content

Instantly share code, notes, and snippets.

View roz0n's full-sized avatar
🍣

Arnold Rozon roz0n

🍣
View GitHub Profile
@roz0n
roz0n / test1.txt
Created April 2, 2025 22:57
Test Public Gist 1
Hola, mundo.
Line 6.
@roz0n
roz0n / data.json
Created February 22, 2025 05:00
Test
{
"categories": [
{
"id": 1,
"name": "Two-Pointer Patterns",
"chronology": 1,
"subcategories": [
{
"id": 101,
"name": "Meeting in the Middle (Sorted Arrays)",
@roz0n
roz0n / compile_swift_steps.sh
Created April 10, 2024 05:16
Automates the process of transforming a Swift file through the various stages of compilation: from Swift code to SIL, from SIL to LLVM IR, and finally to assembly.
#!/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%.*}
@roz0n
roz0n / mongodb_cheat_sheet.md
Created December 6, 2022 19:58 — forked from bradtraversy/mongodb_cheat_sheet.md
MongoDB Cheat Sheet

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database

@roz0n
roz0n / routes.swift
Last active September 19, 2021 23:23
RC Database Server (Swift/Vapor)
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.
@roz0n
roz0n / remove-prev-vc.swift
Created April 16, 2021 01:10
Remove Previous ViewController in UINavigationController
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)
@roz0n
roz0n / FillOther.swift
Last active April 10, 2021 08:08
UIView fillOther
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)
])
}
@roz0n
roz0n / detached-vc-solution.swift
Created February 22, 2021 06:13
Presenting from detached view controllers in Swift
// 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) {
@roz0n
roz0n / programmatic-ui.swift
Created February 21, 2021 18:59
iOS SceneDelegate Programmatic UI Setup
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()
@roz0n
roz0n / guap-country-currency-data.js
Last active February 13, 2021 02:04
Combine ExchangeRate API currency codes, ISO codes, and full country names
// ExchangeRate API Supported Currencies
const currencies = {
"AED": {
"FIELD2": "UAE Dirham",
"FIELD3": "United Arab Emirates"
},
"AFN": {
"FIELD2": "Afghan Afghani",
"FIELD3": "Afghanistan"
},