The following debugging information was generated by Atom Beautify
on Thu Feb 16 2017 13:55:34 GMT+0000 (GMT)
.
This file contains 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
Extraction.findAll({ | |
where: { | |
archived: false | |
}, | |
attributes: ['id', 'createdAt', 'updatedAt'], | |
include: [ | |
{ | |
model: ExtractionTemplate, | |
attributes: ['id'], | |
where: { |
This file contains 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
#!/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 |
This file contains 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
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 |
This file contains 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
void main() { | |
DateTime? started; | |
if (started == null || started.year < 1900) { | |
print('no date'); | |
} | |
} |