-
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();”
Mês: março 2019
Update (weekly)
-
node.js – Install dependencies globally and locally using package.json – Stack Overflow
“npm config set prefix ~/npm, add $HOME/npm/bin to $PATH by appending export PATH=$HOME/npm/bin:$PATH to your ~/.bashrc”
Update (weekly)
-
Multiple cursors in Visual Studio Code – Stack Overflow
“Ctrl+Shift+L / Cmd+Shift+L selects all instances of the current highlighted word”
-
Quickly search index of all files on nas? | Page 2 | iXsystems Community
“/usr/libexec/locate.updatedb”
-
Gmail Tip #17: Advanced Search – View Multiple Labels – Jim’s Tips
“label:Label1 label:Label2”