Skip to content

Instantly share code, notes, and snippets.

@abdellatifLabr
abdellatifLabr / SKILL.md
Last active February 28, 2026 11:32
parquet-cli skill for coding agents
name description license compatibility metadata
parquet-cli
Work with Parquet files - view schema, metadata, contents, and convert between formats
MIT
opencode
audience use-case
developers
data-files
#! /bin/sh
get_meminfo_value() {
echo $(echo "$1" | grep -w "$2" | tr -s " " | cut -d ' ' -f 2)
}
mem_util() {
local meminfo="$(cat /proc/meminfo)"
local total=$(get_meminfo_value "$meminfo" MemTotal)
local free=$(get_meminfo_value "$meminfo" MemFree)
@abdellatifLabr
abdellatifLabr / broadcast-channel.md
Created November 25, 2023 10:49 — forked from davestewart/broadcast-channel.md
Example of using BroadcastChannel to communicate with pages in the same domain

screenshot