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.
| resolvectl dns enp2s0f0 192.168.1.254 |
| https://docs.google.com/document/u/0/create |
| ################################################## | |
| ## Install PostgreSQL and other needed packages ## | |
| # Update the package lists and update the system | |
| sudo apt update && sudo apt upgrade -y | |
| # Install the latest version of PostgreSQL | |
| sudo apt install postgresql postgresql-common postgresql-contrib -y | |
| # Install build libs and tools |
| ss -tulnp | grep 'LISTEN' |
A Pen by Steve Halford on CodePen.
| // example vite.config.js | |
| import { cdn } from './vite-plugin-cdn' | |
| export default { | |
| plugins: [ | |
| // also supported: esm.run, jspm | |
| // loads the dep over the CDN during dev | |
| // auto downloads and includes into the bundle during build | |
| cdn('skypack', { | |
| vue: '^3.0.5' |
| class Program | |
| { | |
| static async Task Main(string[] args) | |
| { | |
| var httpClient = new HttpClient | |
| { | |
| BaseAddress = new Uri("https://api.github.com/graphql") | |
| }; | |
| httpClient.DefaultRequestHeaders.Add("User-Agent", "MyConsoleApp"); |