hdiutil create -size 400m -fs HFS+ /tmp/400.dmg
hdiutil attach /tmp/400.dmg -mountpoint /Users/jwhitmarsh/Library/Developer/CoreSimulator/Devices/{guid}
see list of volumes
mount
void main() { | |
DateTime? started; | |
if (started == null || started.year < 1900) { | |
print('no date'); | |
} | |
} |
The following debugging information was generated by Atom Beautify
on Thu Feb 16 2017 13:55:34 GMT+0000 (GMT)
.
Assuming you've used home-brew to install and upgrade Postgres, you can perform the following steps. | |
Stop current Postgres server: | |
launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist | |
Initialize a new 9.5 database: | |
initdb /usr/local/var/postgres9.5 -E utf8 |
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: nginx | |
# Required-Start: $local_fs $remote_fs | |
# Required-Stop: $local_fs $remote_fs | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: S 0 1 6 | |
# Short-Description: nginx initscript | |
# Description: nginx | |
### END INIT INFO |
Extraction.findAll({ | |
where: { | |
archived: false | |
}, | |
attributes: ['id', 'createdAt', 'updatedAt'], | |
include: [ | |
{ | |
model: ExtractionTemplate, | |
attributes: ['id'], | |
where: { |