Skip to content

Instantly share code, notes, and snippets.

@red-led
red-led / write_iso.md
Created February 16, 2026 22:33
Write Linux iso to usb flash
sudo bash -c 'pv -petab /full/path/to.iso | dd of=/dev/sdX bs=16M conv=fsync status=none'

This will show progress, eta and wiil not need long sync after it's finished.

@red-led
red-led / copyTableIndexes.sql
Last active August 29, 2015 14:18
Postgres function for table indexes and privileges copying
CREATE OR REPLACE FUNCTION
copyTableIndexes(fromSchema varchar, fromTable varchar, toSchema varchar, toTable varchar)
RETURNS void AS $$
DECLARE
oneIndex record;
q text;
BEGIN
IF
NOT EXISTS(
SELECT *