Skip to content

Instantly share code, notes, and snippets.

@csain
csain / README.md
Last active July 29, 2025 17:22
Project: Minimalist Android Launcher

Minimalist Android Launcher

Overview

What A homescreen launcher that simplifies the homescreen for Android.

Why Mobile phones are the ultimate distraction device. I wanted a way to reduce the distraction of flashy app icons and make opening the phone more intentional.

Home Screen App List View
@csain
csain / README.md
Last active July 29, 2025 17:47
Project: Daily Habit Challenge

Daily Habit Challenge

Overview

What: A daily habit challenge app for Android.

Tech Stack

  • Front-end: Jetpack Compose (Kotlin)
  • Back-end: Kotlin
@csain
csain / README.md
Last active July 29, 2025 18:02
Project: Social Worker Booking Service

Social Worker Booking Service

Overview

What: A booking platform for social workers to work with people with executive functioning issues.

Tech Stack

  • Front-end: ReactJS
  • Back-end: Ruby on Rails, Postgres
@csain
csain / README.md
Last active July 29, 2025 16:49
Project: Dementia Dashboard

Dementia Calendar Dashboard

Overview

What A digital wall calendar for a loved one with early-stage Alzheimer's. Allows the patient and their caretakers to be aware of events. Can be maintained by family and caretakers.

Why A loved one with early-stage Alzheimer's was struggling understanding relative timing for events today versus those that were upcoming. We needed a solution where the whole family and the caretaker were easily aware of the daily schedule and future events.

| Web View in light mode | Monitor View in dark mode |

@csain
csain / PROJECTS_README.md
Last active July 31, 2025 22:07
Colleen's Projects and Code Samples

Colleen Sain's Projects and Code Samples

This collection showcases projects I built while transitioning back to software engineering via the Recurse Center, a 3-month full-time programming retreat.

I previously spent 5 years as a full-stack developer, working primarily with Ruby on Rails, React, and Elm. At RC, I revisited those tools and learned new languages, including Kotlin and Python.

My background includes an MBA, a Master's in Environmental Science, and 3 years in product and strategy roles at Vanguard. This combination of engineering and product strategy experience allows me to approach projects with a broad, interdisciplinary lens.

Projects

@csain
csain / README.md
Last active July 22, 2025 18:06
Code Sample - Tic Tac Toe in Ruby

Code Sample - TicTacToe

A basic TicTacToe console game built in ruby. This is a two-player game played in console.

This was built as a framework-free code sample for my application to the Recurse Center coding retreat.

Requirements

  • Use Ruby 2.7+
-- Given a list of items and a seed int (such as a current timestamp), sample an item from a list.
module Helpers.Sample exposing (sample)
import List.Extra
import Random
import Tuple
randomInt : { min : Int, max : Int, seed : Int } -> Int
@csain
csain / form-validator.js
Last active December 21, 2015 03:39 — forked from ksolo/form-validator.js
Form Validation
function validateEmail(email) {
var email_regex = /\w+[\w\.]*@\w+.\w{2,4}/i;
return email_regex.test(email);
};
function validatePasswordLength(password) {
return password.length >= 8;
};
function validatePasswordCapital(password) {
@csain
csain / index.html
Last active December 21, 2015 03:19 — forked from dbc-challenges/index.html
DBC Phase 2 Practice Assessment Part 3
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="http://cdn.jsdelivr.net/normalize/2.1.0/normalize.css">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Lato:100,900">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.0.2/css/font-awesome.min.css">
</head>
@csain
csain / zoo.js
Last active December 21, 2015 03:19 — forked from dbc-challenges/zoo.js
//------------------------------------------------------------------------------------------------------------------
// YOUR CODE: Create your Zoo "object literal" and Animal "constructor" and "prototypes" here.
//------------------------------------------------------------------------------------------------------------------
function Animal(name, legs) {
this.legs = legs;
this.name = name;
};
Animal.prototype.identify = function() {
var name = this.name