Skip to content

Instantly share code, notes, and snippets.

// by dave whyte @ bees & bombs >:)
// use gifsicle to assemble frames into gif
int[][] result;
float t;
float ease(float p) {
return 3*p*p - 2*p*p*p;
}
@idlehands
idlehands / fractional_knapsack.rb
Created August 10, 2016 03:01
Ruby starter file for for Algorithm Toolbox on Coursera
#!/usr/bin/env ruby
# by Jeffrey Matthias
def get_optimal_value(capacity, weights, values)
value = 0.0
# your code here
value
end
if __FILE__ == $0
#!/usr/bin/env ruby
# by Jeffrey Matthias
def max_dot_product(a, b)
# your code here
end
if __FILE__ == $0
# in the Ruby implementation, n isn't used for anything
n = gets.chomp.to_i
#!/usr/bin/env ruby
# by Andronik Ordian
# updated by Jeffrey Matthias
Segment = Struct.new("Segment", :start, :end)
def optimal_points(segments)
points = []
return points if segments.empty?
#write your code here

Keybase proof

I hereby claim:

  • I am idlehands on github.
  • I am idlehands303 (https://keybase.io/idlehands303) on keybase.
  • I have a public key whose fingerprint is 7E87 12E1 A24D A99F 9EB7 0B4E 482E 0B55 4C73 0F2E

To claim this, I am signing this object:

@idlehands
idlehands / stuff.sh
Last active October 25, 2018 17:29
Bash functions for happy life
# a log of these assume the exsistence of a branch called `utility`
# the code in `utility` doesn't have to be up to date
function reset_develop {
git checkout utility
git branch -D develop
git fetch
git checkout -b develop origin/develop
}
@idlehands
idlehands / my_info_and_links.md
Last active November 16, 2021 21:20
Effective Test Coverage - code and links
@idlehands
idlehands / 00_info.md
Last active May 20, 2023 11:28
-info and links
crowd sources replacements
voting
some form of accountability
can you see other things that person has suggested, what they've voted on?
some way to protect people from seeing offensive words (maybe some sort of first letter and then a blur or redaction)
in the future maybe allow people to identify minority groups they belong to
word
- reason it should go away
- replacement words
@idlehands
idlehands / 00_info.md
Last active May 20, 2023 11:44
Gig City Elixir - Test Data Generation