-
Mastering PostgreSQL 15: Build, administer, and maintain database applications efficiently with PostgreSQL 15
- Hans-Jürgen Schönig
-
PostgreSQL Administration Cookbook - Great Book for simple recepies on different sub-topics.
-
Simon Riggs, Gianni Ciolli
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Resources I found while reading about postgreSQL during my GSoC Journey'23. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import json | |
import os | |
zone_id = os.environ['CF_ZONE_ID'] | |
token='Bearer '+ os.environ['CF_AUTH_TOKEN'] | |
authentication={'Authorization' : token} | |
list_url="https://api.cloudflare.com/client/v4/zones/{0}/dns_records".format(zone_id) | |
delete_url="https://api.cloudflare.com/client/v4/zones/{0}/dns_records/{1}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Run Code -Code runner for C/C++ codes | |
rc() { | |
#!/bin/bash | |
PROG_NAME=$1 | |
g++ -Werror $PROG_NAME | |
if [[ $? == 0 ]]; then | |
./a.out | |
fi | |
} |