Command Line
pry -r ./config/app_init_file.rb- load your app into a pry session (look at the file loaded by config.ru)pry -r ./config/environment.rb- load your rails into a pry session
Debugger
| // | |
| // Color+Codable.swift | |
| // FirestoreCodableSamples | |
| // | |
| // Created by Peter Friese on 18.03.21. | |
| // | |
| import SwiftUI | |
| // Inspired by https://cocoacasts.com/from-hex-to-uicolor-and-back-in-swift |
| from lxml import html | |
| import requests | |
| import re | |
| import os | |
| def createDir(path): | |
| if not os.path.exists(path): os.makedirs(path) | |
| # Settings | |
| iosVersion = "12.1" |
| import Foundation | |
| public class Storage { | |
| fileprivate init() { } | |
| enum Directory { | |
| // Only documents and other data that is user-generated, or that cannot otherwise be recreated by your application, should be stored in the <Application_Home>/Documents directory and will be automatically backed up by iCloud. | |
| case documents | |
Command Line
pry -r ./config/app_init_file.rb - load your app into a pry session (look at the file loaded by config.ru)pry -r ./config/environment.rb - load your rails into a pry sessionDebugger
| git ls-files -z | xargs -0n1 git blame -w | perl -n -e '/^.*\((.*?)\s*[\d]{4}/; print $1,"\n"' | sort -f | uniq -c | sort -n |