Skip to content

Instantly share code, notes, and snippets.

View hongphuc5497's full-sized avatar
🐧
Focusing

Hong Phuc hongphuc5497

🐧
Focusing
View GitHub Profile
const SamplePromise = (index) => {
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve(`Promise ${index}`);
}, 1000);
});
};
const withoutPromiseAll = () => {
console.time('Without Promise.all');
@hongphuc5497
hongphuc5497 / drop-multiple-datatbases-with-postgresql.md
Last active June 19, 2024 14:19
How to drop multiple databases in PostgreSQL
  1. Connect to PostgreSQL server via command line: psql -d postgre
  2. At the prompt, type SQL query to construct DROP DATABASE statement then that statement via \gexec meta-command
  3. Replace test with your desired pattern

Some alternative ways :

  • Anonymous code block
  • Using a shell script
SELECT 'DROP DATABASE ' || quote_ident(datname) || ';'
def reverse_array(arr)
temp = []
lastIndex = arr.length - 1
arr.length.times do
temp << arr[lastIndex]
lastIndex -= 1
end
return temp