- KPI dashboard review
- Since our last retro, what's gone well?
- How do we feel about our productivity and work/life balance
- How is the product better than last week?
- How is the company better than last week?
- Is there anything we should ask a consultant about?
- How is the office/ops?
- How can we enjoy the journey more?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Set up Rails app. Run this script immediately after cloning the codebase. | |
# Exit if any subcommand fails | |
set -e | |
# Copy over configs | |
if ! [ -f .env ]; then | |
cp .sample.env .env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
twitter.com##.trends.Trends.module | |
twitter.com##.dashboard-right.dashboard | |
twitter.com##.module.DashboardProfileCard |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Set up Rails app. Run this script immediately after cloning the codebase. | |
# Exit if any subcommand fails | |
set -e | |
# Copy over configs | |
if ! [ -f .env ]; then | |
cp .sample.env .env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
isValidUrl : String -> Bool | |
isValidUrl str = | |
List.all | |
((|>) str) | |
[ isLower, hasNoSpaces ] |
We're looking to hire a part-time support person (exact hours TBD) to help out the customers of our three products. Wait, three products? Yeah, turns out we like starting things.
Here they are, in all their developer-focused glory:
- Upcase (https://upcase.com), an online learning platform for aspiring Rails developers.
- FormKeep (https://formkeep.com), a service that allows developers to easily add forms to their sites.
- Hound (https://houndci.com), a tool for automatically checking code style.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn calculate-fitness [reference-image-data individual-image-data] | |
"Takes two vectors of ints 0-255, representing the rgba data for our | |
reference image and individual-image-data. Returns the sum of squares | |
difference between the two, which represents how similar the two images are." | |
(let [differences (map - reference-image-data individual-image-data) | |
squares (map #(* % %) differences) | |
my-ints (int-array squares) | |
sum-of-squares (areduce my-ints idx ret 0 (+ ret (aget my-ints idx))) | |
maximum-difference (* (count reference-image-data) | |
(* 256 256))] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns barb.core | |
(:require [clojure.browser.repl :as repl] | |
[cljs.spec :as s] | |
[clojure.spec.test :as stest] | |
[cljs.spec.impl.gen :as gen])) | |
(defn simple [x] x) | |
(s/fdef simple :args int? :ret int?) | |
(println (stest/check `simple)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns example.core | |
(:require [clojure.browser.repl :as repl] | |
[cljs.spec :as s] | |
[clojure.spec.test :as stest] | |
[cljs.spec.impl.gen :as gen])) | |
(defn simple [x] x) | |
(s/fdef simple :args int? :ret int?) | |
(println (stest/check `simple)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Goal: add/substract a small random amount from each component (r, g, b, a) | |
-- of the passed-in color. | |
maybeMutateColor : Color -> Generator Color | |
maybeMutateColor color = | |
let | |
floatGenerator = | |
Random.float -maximumAlphaChange maximumAlphaChange | |
intGenerator = | |
Random.int -maximumRGBChange maximumRGBChange |
NewerOlder