A complete gdb to lldb command map.
- Print object
(lldb) po responseObject
(lldb) po [responseObject objectForKey@"state"]
- p - Print primitive type
| ========================================== ========================================== | |
| TMUX COMMAND WINDOW (TAB) | |
| ========================================== ========================================== | |
| List tmux ls List ^b w | |
| New -s <session> Create ^b c | |
| Attach att -t <session> Rename ^b , <name> | |
| Rename rename-session -t <old> <new> Last ^b l (lower-L) | |
| Kill kill-session -t <session> Close ^b & |
A complete gdb to lldb command map.
(lldb) po responseObject
(lldb) po [responseObject objectForKey@"state"]
| class Singleton { | |
| class var sharedInstance: Singleton { | |
| struct Static { | |
| static var token: dispatch_once_t = 0 | |
| static var instance: Singleton! | |
| } | |
| dispatch_once(&Static.token) { | |
| Static.instance = Singleton() | |
| } | |
| return Static.instance |
| // | |
| // Geohash.swift | |
| // mn_ios | |
| // | |
| // Created by Alex Bosworth on 11/26/14. | |
| // Copyright (c) 2014 adylitica. All rights reserved. | |
| // | |
| import Foundation | |
| import MapKit |
| interface=eth0 | |
| address=192.168.0.8 | |
| netmask=24 | |
| broadcast=192.168.0.255 | |
| gateway=192.168.0.1 |
| ### | |
| # VSFTPD.CONF for virtual users with write/read/delete permissions | |
| ### | |
| anonymous_enable=NO | |
| local_enable=YES | |
| write_enable=YES | |
| local_umask=022 | |
| xferlog_enable=YES | |
| connect_from_port_20=YES | |
| chown_uploads=YES |