Skip to content

Instantly share code, notes, and snippets.

resolvectl dns enp2s0f0 192.168.1.254
https://docs.google.com/document/u/0/create
@remymiguk
remymiguk / gist:eb6fad2391170735b50aa5e47c55e786
Created June 9, 2025 00:37
Tutorial how to compile and install pgModeler from source code
##################################################
## 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
@remymiguk
remymiguk / PostgreSQL-EXTENSIONs.md
Created December 27, 2023 23:44 — forked from joelonsql/PostgreSQL-EXTENSIONs.md
1000+ PostgreSQL EXTENSIONs

🗺🐘 1000+ PostgreSQL EXTENSIONs

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.

@remymiguk
remymiguk / exampe-config.js
Created February 23, 2022 23:08 — forked from yyx990803/exampe-config.js
A vite plugin that loads the specified deps over CDN during dev, and downloads/includes them into bundle during build.
// 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'
@remymiguk
remymiguk / Program.cs
Created April 25, 2021 11:38 — forked from mpetrinidev/Program.cs
Call Github Graphql Api using c#
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");