This file contains hidden or 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
#!/usr/bin/env python3 | |
# vim: set fileencoding=utf8 : | |
import tornado.ioloop | |
from tornado.options import options, define | |
from tornado_sqlalchemy import SQLAlchemy | |
from sqlalchemy import create_engine, Column, Integer, String | |
from sqlalchemy.ext.declarative import declarative_base | |
from sqlalchemy.orm import sessionmaker |
This file contains hidden or 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
// You'll need the following Swift Packages | |
// - https://github.com/siteline/SwiftUI-Introspect | |
// - https://github.com/steipete/InterposeKit | |
// DisclosureGroup(...) | |
.introspectViewController { controller in | |
func findViews(_ view: UIView, depth: Int = 0) { | |
for sub in view.subviews { | |
findViews(sub, depth: depth + 1) | |
} |
OlderNewer