- Rokkitt [https://mcyoung.xyz]
- Geist [For invoices: https://x.com/pontusab/status/1963129591951962120]
This file contains hidden or 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 hidden or 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 hidden or 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 | |
| } |