Skip to content

Instantly share code, notes, and snippets.

View tnunamak's full-sized avatar
🚀

Tim Nunamaker tnunamak

🚀
View GitHub Profile
define([], function () {
return 'B';
});
define([], function () {
return 'A';
});
define('b', [], function () {
return 'B';
});
define('a', [], function () {
return 'A';
});

This is a test
This is a line break

This is another line

@tnunamak
tnunamak / bem.md
Last active November 17, 2015 21:08
BEM

This document is a draft in progress Authors include @danheberden and @alitsa.

Goals

  • Our product should render well on most client sites by default.
  • Overrides should be straightforward and not require excessively specific selectors or work-arounds.
  • Style semantics should generally be portable to other BV products.

Proposal

@tnunamak
tnunamak / four.clj
Last active August 29, 2015 14:20
Problem Four - Programming problems software engineers should be able to solve
;; https://blog.svpino.com/2015/05/07/five-programming-problems-every-software-engineer-should-be-able-to-solve-in-less-than-1-hour
;; problem four, not all that pretty
(defn numseq [x]
(map (comp read-string str) (str x)))
(defn strsort [x
y]
(let [a (first x)
b (first y)]