Skip to content
View elucid's full-sized avatar

Highlights

  • Pro

Organizations

@modem-dev

Block or report elucid

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
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)