Skip to content

Instantly share code, notes, and snippets.

View ecounysis's full-sized avatar

Eric Christensen ecounysis

View GitHub Profile
@ecounysis
ecounysis / OAuthBase.cs
Last active May 14, 2024 22:33 — forked from ChanahC/OAuthBase.cs
OAuth 1.0 library recommended by NetSuite for c#
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
{
@ecounysis
ecounysis / css-parser.md
Created June 7, 2016 21:39 — forked from kachayev/css-parser.md
Parsing CSS file with monadic parser in Clojure
@ecounysis
ecounysis / clojure-font-lock-setup.el
Created August 18, 2011 23:55 — forked from michalmarczyk/clojure-font-lock-setup.el
coloured SLIME REPL for Clojure
;;; 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)