Inspired by "Parsing CSS with Parsec".
Just quick notes and code that you can play with in REPL.
By @kachayev
| using System; | |
| using System.Collections.Generic; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| // https://gist.github.com/ecounysis/7889b67704a26f26369399a636105233 | |
| // https://netsuite.custhelp.com/app/answers/detail/a_id/42169/kw/C%23%20>%20RESTlet%20Authentication%20Using%20Token%20(Token-Based%20Authentication) | |
| namespace OAuth | |
| { |
Inspired by "Parsing CSS with Parsec".
Just quick notes and code that you can play with in REPL.
By @kachayev
| ;;; all code in this function lifted from the clojure-mode function | |
| ;;; from clojure-mode.el | |
| (defun clojure-font-lock-setup () | |
| (interactive) | |
| (set (make-local-variable 'lisp-indent-function) | |
| 'clojure-indent-function) | |
| (set (make-local-variable 'lisp-doc-string-elt-property) | |
| 'clojure-doc-string-elt) | |
| (set (make-local-variable 'font-lock-multiline) t) |