This is a list of URLs to PostgreSQL EXTENSION repos, listed in alphabetical order of parent repo, with active forks listed under each parent.
⭐️ >= 10 stars
⭐️⭐️ >= 100 stars
⭐️⭐️⭐️ >= 1000 stars
Numbers of stars might not be up-to-date.
PR
clonar o (repositório) usando **git**
https://github.com/Betarena/mission_enter_world_of_sports
[Either MAIN or TEST branches]
| """Gunicorn config file. | |
| by HacKan (https://hackan.net) | |
| Find it at: https://gist.github.com/HacKanCuBa/275bfca09d614ee9370727f5f40dab9e | |
| Based on: https://gist.github.com/KodeKracker/6bc6a3a35dcfbc36e2b7 | |
| Changelog | |
| ========= | |
| See revisions to access other versions of this file. |
| // ... import necessary modules; | |
| const fs = require('fs') | |
| // import { data } from './participants' | |
| // console.log('data', data) | |
| // ... ############################## | |
| // ... [INITIALIZE]; | |
| // ... ############################## |
| version: '3.1' | |
| services : | |
| db: | |
| image: postgres:10-alpine | |
| ports: | |
| - "5432:5432" | |
| environment: | |
| POSTGRES_USER: user1 | |
| POSTGRES_PASSWORD: changeme | |
| POSTGRES_DB: tododb |
| @mixin flex-config($justify-content: false, $flex: false, $flex-direction: false, $align-items: false) | |
| display: flex; | |
| @if $justify-content != false | |
| justify-content: $justify-content; | |
| @if $flex != false | |
| flex: $flex; | |
| @if $flex-direction != false |
| [[source]] | |
| name = "pypi" | |
| url = "https://pypi.org/simple" | |
| verify_ssl = true | |
| [dev-packages] | |
| [packages] | |
| beautifulsoup4 = "*" | |
| requests = "*" |
| -- # Using nested SELECT | |
| -- # 1. List each country name where the population is larger than that of 'Russia'. | |
| SELECT name | |
| FROM world | |
| WHERE population > (SELECT population | |
| FROM world | |
| WHERE name='Russia') | |
| -- # 2. Show the countries in Europe with a per capita GDP greater than 'United Kingdom'. |