Damus

Recent Notes

राज profile picture
अणीमाण्डव्य उवाच। आचतुर्दशकाद्वर्षान्नभविष्यतिपातकम्। महाभारत आदिपर्व अष्टाधिकशततमोऽध्याय॥ परन्तु। न त्वेव तु कृतोऽधर्मः कर्तुर्भवति निष्फलः। अमुकस्मृतिविशेष चतुर्थोऽध्याय १७३ ॥ इसीलिए। असमर्थस्य बालस्य पिता वा यदि वा गुरुः। यमुद्दिश्य चरेद्धर्मं ॰ । आंगिरसस्मृति ३२ ॥
राज profile picture
वर्तमान में यूट्यूब के लिए यह एक मात्र विकल्प है। अनेकत्रित है। लोकप्रियता भी कुछ स्तर तक है। आप्पिल गूगिल फेसबूक आज के अंकीय दुर्विगम उपवन। जिनका उपयोग यथा न्यून तथा उचित।
https://podcastindex.org/
राज profile picture
ध्वनि अभिलेखों के लिए यह वैटीडीएलपी॰ उपकरण अधिक सक्षम। मुख्यतः अभिलेख नामकरण अनुकूलन सुविधा के कारण। प्रक्रिया विकल्प यथा।
--restrict-filenames
--trim-filenames 32
-o "%(epoch+19800>%Y%m%d%H%M%S)s-%(id)s.%(ext)s" https://github.com/yt-dlp/yt-dlp
राज profile picture
नोस्टर अतिरिक्त अधिकाम्श जालभ्रमण ईमाक्स एल्फीड पर ही हो जाता है। अभिलेखावरोहण के लिए यह डबल्यूगेट उपकरण बहुत उपयोगी।
⚡️1
राज profile picture
;;; wget.el

(defun wgetdl (url)
(interactive (list (read-string "wget url: ")))
(async-shell-command (concat "wget --content-disposition --restrict-file-names=ascii -P ~/dl " "\"" url "\"") (generate-new-buffer-name "wgetdl") "*Messages*"))

(global-set-key (kbd "C-c w") 'wgetdl)

(define-key elfeed-show-mode-map (kbd "W") (lambda () (interactive) (kill-new (shr-url-at-point nil)) (message "downloading...") (wgetdl (car kill-ring))))
राज profile picture
;; emacs lisp interface to sdcv for looking up words in local stardict format dictionaries
;; requires: sdcv and stardict data files installed and running
;; usage: M-x sdict or C-c d and enter or paste search word. spacebar to scroll. q to exit buffer. period for new search.
;; based on github jamescherti/quick-sdcv.el
राज profile picture
;;; sdict.el

(defconst sdict-outbuf "*sdict*")
(defconst sdict-errbuf "*Messages*")
(defconst sdict-cmd "sdcv --non-interactive --utf8-output ")

(defun sdict (word)
(interactive (list (read-string "dict search: ")))
(get-buffer-create sdict-outbuf)
(with-current-buffer sdict-outbuf
(let ((inhibit-read-only t))
(erase-buffer)
(shell-command (concat sdict-cmd word) sdict-outbuf sdict-errbuf))
(special-mode)
(local-set-key (kbd ".") 'sdict)
(switch-to-buffer sdict-outbuf)))

(provide 'sdict)

;; (require 'sdict)
;; (global-set-key (kbd "C-c d") 'sdict)
Derek Ross · 3w
Check out ngit. GitWorkshop.dev
DanConwayDev · 3w
There have been 1 or 2 attempts at this. I thought about doing it as an option bundled in ngit-cli, but uiltimately, its never made it to the top of the todo list. If you have created a PR with nostr, and nostr signs each push, you are signing the data anyway with nostr.