- Serving private content with signed URLs and signed cookies
- Create a key pair for a trusted key group
import os | |
import requests | |
import csv | |
import time | |
def fetch_all_users(api_key): | |
url = "https://api.clerk.dev/v1/users" | |
headers = { | |
"Authorization": f"Bearer {api_key}", |
#include <libpq-fe.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
void close_connection(PGconn *connection, int code) { | |
PQfinish(connection); | |
exit(code); | |
} | |
// If the retrieved data is not a tuble |
package main | |
import ( | |
"io" | |
"log" | |
"net" | |
"net/http" | |
"sync" | |
) |
Neovim and Vim both come bundled with a standard plugin called Netrw. Netrw acts a file explorer (similar to NERDTree), but more importantly has the ability to work with scp (as well as sftp, rcp, ftp, and lots of others :h netrw-nread
) to let you edit files and browse directories that are hosted on a remote machine, inside of your local Vim instance.
This is useful since you are able to use your Vim setup and plugins without copying over your dotfiles to the remote machine. As well, since the file is copied to your local machine, there will be no delay when typing.
This is optional for Vim, but required for Neovim (check this Neovim issue explaining why).