This file contains hidden or 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
#!/usr/bin/env python | |
import os | |
import sys | |
import datetime | |
import math | |
import json | |
config = json.loads(open('/usr/syno/etc/ssl/ssl.info/server.info').read()) |
This file contains hidden or 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
x ~/osm2pgsql/build(master) $ cmake .. | |
-- Building osm2pgsql 0.91.0-dev | |
-- Boost version: 1.59.0 | |
-- Found the following Boost libraries: | |
-- system | |
-- filesystem | |
CMake Error at /opt/local/share/cmake-3.6/Modules/FindPackageHandleStandardArgs.cmake:148 (message): | |
Could NOT find PostgreSQL (missing: PostgreSQL_INCLUDE_DIR | |
PostgreSQL_TYPE_INCLUDE_DIR) | |
Call Stack (most recent call first): |
This file contains hidden or 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
threads = [] | |
for i in 0..1 | |
puts "parent: #{i}" | |
threads << Thread.new do | |
puts "child: #{i}" | |
end | |
end |