Update --mk
This commit is contained in:
parent
549c60fd68
commit
bea7216a0f
1 changed files with 15 additions and 0 deletions
|
@ -61,5 +61,20 @@
|
|||
;; (add-hook 'after-init-hook (lambda () (org-agenda-list) (me/split-h3)))
|
||||
;; (org-agenda-list))
|
||||
|
||||
(defvar mk/useful-websites
|
||||
'(("https://regexr.com/" regex debug)
|
||||
("https://regex101.com/" regex debug)
|
||||
("https://www.regextester.com/" regex debug)
|
||||
("https://extendsclass.com/regex-tester.html#python" regex debug)))
|
||||
|
||||
(defvar mk/mirror-website
|
||||
"Locally mirror a website using `wget -mkEpnp <ur>`")
|
||||
|
||||
(defvar mk/useful-regex
|
||||
'(("[\w\s]+:" "match any word or space that precede the :")
|
||||
("\[.*\]" "search for anything in square brackets")
|
||||
("[A-Za-z]+" "upper and lowercase english alphabet")
|
||||
("[0-9]" "numbers from 0 to 9")
|
||||
("[A-Za-z\-\.]" "upper and lowercase english alphabet, - and .")
|
||||
("(a-z)" "a, - and z")
|
||||
("(\s+|,)" "spaces or a comma")))
|
||||
|
|
Loading…
Add table
Reference in a new issue