Skip to content
View elucid's full-sized avatar

Highlights

  • Pro

Organizations

@modem-dev

Block or report elucid

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. ruby-freshbooks ruby-freshbooks Public

    simple FreshBooks API wrapper. supports both OAuth and API token authentication.

    Ruby 58 22

  2. mobiledoc-html-renderer mobiledoc-html-renderer Public

    MobileDoc HTML Renderer for Ruby

    Ruby 10 7

  3. unicorn-reload unicorn-reload Public

    sample app to demonstrate no-downtime reloads with unicorn

    Ruby 7 1

  4. 1900-2100.lisp 1900-2100.lisp
    1
    (defun btrees-of-size (n)
    2
      (cond ((= n 1) (list 'leaf))
    3
    	((= n 2) (list (cons 'leaf 'leaf)))
    4
    	(t (loop for i from 1 to (- n 1)
    5
    	      append (loop for j in (btrees-of-size i)