Skip to content
View JoeCooper's full-sized avatar

Block or report JoeCooper

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. LimbHacker LimbHacker Public

    Limb Hacker cuts skinned mesh characters in Unity3D.

    C# 205 29

  2. chorus chorus Public

    Chorus is a tool for calling an OpenAI-compatible text generation API, in bulk, from the command line, ergonomically.

    Python 6

  3. VisualScopeController VisualScopeController Public

    A Unity3D component which manages a camera's field of view to ensure the visibility of a given set of targets.

    C# 3

  4. Leibniz formula for π in Scheme. As ... Leibniz formula for π in Scheme. As iteration count approaches infinity, result approaches π.
    1
    (define (leibnizFormulaForPi steps)
    2
    	(define (stage step) (* (/ 1 (+ 1 (* step 2))) (if (= (modulo step 2) 1) -1 1)))
    3
    	(define (iterate thusFar step steps)
    4
    		(if (< step steps)
    5
    			(iterate (+ thusFar (stage step)) (+ step 1) steps)	
  5. MarkdownChapterCat MarkdownChapterCat Public

    Concatenate markdown files together as chapters, with a table of contents.

    HTML

  6. PromptByMax PromptByMax Public

    Prompt synthesis by activation maximisation (an experiment)

    Python 1 1