Skip to content

Instantly share code, notes, and snippets.

View aryabharat's full-sized avatar
🎯
Focusing

Bharat Arya aryabharat

🎯
Focusing
View GitHub Profile
@aryabharat
aryabharat / pg_get_table_sizes.sql
Created April 4, 2025 08:50 — forked from hatarist/pg_get_table_sizes.sql
PostgreSQL: get table size (data & index & toast)
SELECT
*,
pg_size_pretty(table_bytes) AS table,
pg_size_pretty(index_bytes) AS index,
pg_size_pretty(total_bytes) AS total
FROM (
SELECT
*, total_bytes - index_bytes - COALESCE(toast_bytes, 0) AS table_bytes
FROM (
SELECT
@aryabharat
aryabharat / disable_wifi_hotspot.bat
Created December 22, 2017 19:41 — forked from Mithrandir0x/disable_wifi_hotspot.bat
Two little batch files to create a cozy WiFi hotspot from the laptop Snatched from xda-developers, yet I don't remember the thread. Kudos to the author.
netsh wlan stop hostednetwork
pause