Skip to content
View dividedharmony's full-sized avatar
Block or Report

Block or report dividedharmony

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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

  1. super_pokecord super_pokecord Public

    This is a rebuild of the wildly popular "Pokecord" Discord bot from the ground up.

    Ruby

  2. me_space me_space Public

    A Nuxt web app used to host content for davidharmon.io

    HTML

  3. coin_bank coin_bank Public

    A web application for tracking expenditures and valuations of Cryptocurrencies

    Ruby 1

  4. cook_roulette cook_roulette Public

    A web app that scraps recipes from across the Internet and uses them to build randomized meal plans.

    Ruby

  5. nontransitive_voting nontransitive_voting Public

    A rails application that allows users to submit pairwise comparison votes which can be aggregated to declare a winner.

    Ruby

  6. Solve Egyptian Fractions using Fibon... Solve Egyptian Fractions using Fibonacci's Greedy Algorithm
    1
    class EgyptianFraction
    2
      class ImproperFraction < StandardError; end
    3
      
    4
      attr_reader :converted_fractions, :original_rational, :current_rational
    5