Skip to content

Instantly share code, notes, and snippets.

View bderusha's full-sized avatar

Bill DeRusha bderusha

View GitHub Profile
@bderusha
bderusha / keybase.md
Last active April 6, 2016 15:50
keybase.md

Keybase proof

I hereby claim:

  • I am bderusha on github.
  • I am bderusha (https://keybase.io/bderusha) on keybase.
  • I have a public key whose fingerprint is D9BE 2900 B51C D146 0E0F C9CB D987 B399 E9E0 8EBF

To claim this, I am signing this object:

@bderusha
bderusha / combinator.rb
Created May 8, 2015 18:52
Whole Number Combinations == 100
#! /usr/bin/env ruby
def combinator(answer, known_val, current_val, arr)
nums = arr.dup
if nums.length.zero?
puts answer if known_val+current_val == 100
return
end
next_num = nums.shift
package com.example.sudoku;
import android.app.Activity;
import android.os.Bundle;
public class About extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="background">#3500ffff</color>
</resources>