Skip to content

Instantly share code, notes, and snippets.

View rnmhdn's full-sized avatar

levi scott rnmhdn

  • Planet Earth
View GitHub Profile
@rnmhdn
rnmhdn / README.md
Created May 12, 2026 09:24
A bilingual date widget for Awesome Window Manager that displays the current date in both Persian (Solar Hijri) and French (Gregorian) formats, updating every minute.

Cultural Date Widget for Awesome WM

A bilingual date widget for Awesome Window Manager that displays the current date in both Persian (Solar Hijri) and French (Gregorian) formats, updating every minute.

Preview

The widget displays dates in this format:

📅 ۲۱ اردیبهشت | mardi 21 mai
@rnmhdn
rnmhdn / README.md
Created May 12, 2026 09:11
A lightweight dictionary lookup tool for Linux that displays word definitions in a beautiful popup window and automatically adds them to your Anki flashcard deck. Perfect for language learners who want a seamless look-up-to-flashcard workflow.

📚 Lookup — Dictionary Popup with Automatic Anki Card Creation

A lightweight dictionary lookup tool for Linux that displays word definitions in a beautiful popup window and automatically adds them to your Anki flashcard deck. Perfect for language learners who want a seamless look-up-to-flashcard workflow.

What It Does

  1. Looks up a word using the dict command with the WordNet dictionary
  2. Displays the definition in a stylish AwesomeWM popup (with scroll support)
  3. Automatically adds the word and definition to an Anki-compatible TSV file
  4. Avoids duplicates — tells you if a word is already in your deck
@rnmhdn
rnmhdn / README.md
Created May 12, 2026 09:06
A lightweight Awesome WM widget that displays V2Ray proxy status with Wi‑Fi connection awareness. Toggle your proxy with a single click, with visual feedback that makes your connection state immediately clear.

Proxy Toggle Widget for Awesome WM

A lightweight Awesome WM widget that displays V2Ray proxy status with Wi‑Fi connection awareness. Toggle your proxy with a single click, with visual feedback that makes your connection state immediately clear.

Features

  • Wi‑Fi aware: Automatically detects Wi‑Fi connection state
  • Visual indicators: Clear icons for all states
  • Single-click toggle: Left click to toggle V2Ray proxy (only when Wi‑Fi is connected)
  • Manual refresh: Right click to refresh status without toggling
@rnmhdn
rnmhdn / DeepseekChatExporter.js
Last active May 12, 2026 09:01
A lightweight bookmarklet that extracts complete conversations from DeepSeek Chat and copies them to your clipboard in a clean, readable format.
javascript:(function(){
const SCROLL_STEP = 300; // pixels per scroll jump
const STABLE_DELAY = 1500; // time without new messages before we stop
const MAX_RETRIES = 15; // safety limit
// Find the scrollable container that holds .ds-message elements
const sample = document.querySelector('.ds-message');
if (!sample) { alert('No conversation found.'); return; }
let container = sample.parentElement;
@rnmhdn
rnmhdn / main.js
Created September 29, 2019 16:09
Vuejs filter to convert english digits to Persian.
Vue.filter('persianize', strr => strr.replace(/\d/g, d => '۰۱۲۳۴۵۶۷۸۹'[d]))