Skip to content

Instantly share code, notes, and snippets.

View Billboz's full-sized avatar

Bill Boz Billboz

  • US
View GitHub Profile
@Billboz
Billboz / drill-enum1-replace-nils.livemd
Last active October 16, 2022 10:36
Some code stubs for a livebook to do with Enum drills

Drill: Replace nils in A List With Elements From A 2nd List

Mix.install([
  {:youtube, github: "brooklinjazz/youtube"},
  {:hidden_cell, github: "brooklinjazz/hidden_cell"},
  {:tested_cell, github: "brooklinjazz/tested_cell"},
  {:utils, path: "#{__DIR__}/../utils"}
])
@Billboz
Billboz / elixir-resources.md
Created January 21, 2021 09:49 — forked from ZachParsons/elixir-resources.md
Elixir Resources

Keybase proof

I hereby claim:

  • I am billboz on github.
  • I am billboz (https://keybase.io/billboz) on keybase.
  • I have a public key ASDreQOzKe8Ra_84S6dT61OA4HTvy6fOxomtdD31SIDPPQo

To claim this, I am signing this object:

@Billboz
Billboz / Contract Killer 3.md
Created May 6, 2017 01:11 — forked from malarkey/Contract Killer 3.md
The latest version of my ‘killer contract’ for web designers and developers

Contract Killer

The popular open-source contract for web professionals by Stuff & Nonsense

  • Originally published: 23rd December 2008
  • Revised date: March 15th 2016
  • Original post

@Billboz
Billboz / Three Wise Monkeys.md
Created May 6, 2017 01:11 — forked from malarkey/Three Wise Monkeys.md
Three Wise Monkeys (NDA)

Date: [date]

Between us [company name] and you [customer name].

Summary:

In short; neither of us will share any confidential information about each-other, by any means, with anyone else.

What’s confidential information?

@Billboz
Billboz / js Loops
Created May 28, 2015 00:31
Eloquent Javascript Chapter 2 Chess Board Solution and Explanation
var board = "";
for (var y = 0; y < size; y++)
{
console.log("Inside the for-y loop and y is " + y);
for (var x = 0; x < size; x++)
{
console.log("Inside the for-x loop and x is " + x);
Learntastic
## The Concept
This app will enable students and instructors to aggregate learning material from many places and in many forms by concept. The concepts will be given at the beginning of the term to the app so that the instructor and the students then can associate code, links, common errors with the fix, pics, charts and the like to the concept. Users will be able to give each entry item a ranking of 1 through 5 representing importance. Once the Tips are made public any ratings given to the Users Tips from others will be converted to points and added to the Users running total.
Visit the homepage
Visitor should be able to sign up
Visitor should get approx. 20 points if the entire login form is filled out and 10 if their twitter is filled. The other items will be worth less.
Visitor should be able to sign in
User should be able to sign out
@Billboz
Billboz / gist:8f6fe0ef9ba8d29303b8
Created November 22, 2014 21:34
Project_Requirements_Plan
##Use Cases/Users Stories for Brians App.... Use as a template for my app!!
Visit the homepage
Visitor should be able to sign up
Visitor should be a le to sign in
Visitor should be able to sign out
User should be able to see their dashboard
There should be three types of users: admin, teacher, Campus Director
Admin should ba able administer the users, inc. set user type (CRUD)
Admin should be able to create a task (READ, TODO)