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.
#!/usr/bin/env -S bash -c "docker run -p 8080:8080 -it --rm \$(docker build --progress plain -f \$0 . 2>&1 | tee /dev/stderr | grep -oP 'sha256:[0-9a-f]*')" | |
# syntax = docker/dockerfile:1.4.0 | |
FROM node:20 | |
WORKDIR /root | |
RUN npm install sqlite3 |
{ | |
// VS Code Snippers for PrimeVue components | |
// @author Zikani Nyirenda Mwase <[email protected]> | |
"p-inputtext": { | |
"scope": "vue,javascript,typescript,html", | |
"prefix": "pi:text", | |
"body": [ | |
"<div class=\"field\">", | |
" <div class=\"p-float-label\">", | |
" <InputText id=\"$1\" v-model=\"$1\"/>", |
#!/usr/bin/python | |
"""Changes remote urls for repositories in a given directory to SSH remotes | |
for repositories in a given directory. Since GitHub removed password based auth. | |
Run it using: `python chremote.py --d /path/to/directory` | |
Basic interaction is outlined below; | |
``` | |
$ ls /path/to/directory |
CREATE FUNCTION uuid_time_nextval(interval_length int default 60, interval_count int default 65536) | |
RETURNS uuid | |
LANGUAGE plpgsql | |
AS $$ | |
DECLARE | |
v_i int; | |
v_prefix_bytes int = 0; | |
v_time bigint; | |
v_bytes int[16] = '{}'; | |
v_hex text[16] = '{}'; |
all: pdf epub kindle html examples | |
BOOK_TITLE = A\ React\ Developer’s\ Guide\ to\ Hooks\ -\ Sebastien\ Castiel | |
dist: | |
@mkdir -p dist | |
pdf: dist/${BOOK_TITLE}.pdf | |
@echo '✅ PDF' |
#!/bin/bash | |
# Recommended steps: | |
# | |
# bootstrap before entering chroot | |
# copy this script into INSTALL_DIR | |
# rootinit after entering chroot | |
# x (if installing graphics) | |
# pkgs | |
# xpkgs (if installing graphics) |
/* | |
* Copyright (c) 2019 Lomaku Technologies. | |
* All Rights Reserved. | |
* 40 Estate Road, Angelo Goveya, Limbe. | |
* +265 999 388 747 | |
* https://github.com/LomakuIT | |
* | |
* Redistribution and use in source and binary forms, with or without modification, | |
* are permitted provided that the following conditions are met: | |
* |
import java.io.Closeable; | |
import java.net.InetSocketAddress; | |
import java.nio.channels.SelectionKey; | |
import java.nio.channels.Selector; | |
import java.nio.channels.ServerSocketChannel; | |
import java.nio.channels.SocketChannel; | |
import java.util.Iterator; | |
import java.util.Set; | |
public final class HttpsRedirector { |