-
sql – How to get a list column names and datatype of a table in PostgreSQL? – Stack Overflow
“select column_name,data_type
from information_schema.columns
where table_name = ‘table_name’;” -
The Easy Way To Edit com.apple.Boot.plist | The Black Apple
“cd /Library/Preferences/SystemConfiguration”
-
Retry connecting to mongo if initial connect fails · GitHub
“var connectWithRetry = function() {
return mongoose.connect(mongoUrl, function(err) {
if (err) {
console.error(‘Failed to connect to mongo on startup – retrying in 5 sec’, err);
setTimeout(connectWithRetry, 5000);
}
});
};
connectWithRetry();”