Skip to content

Instantly share code, notes, and snippets.

View gmcerveny's full-sized avatar

Greg Cerveny gmcerveny

View GitHub Profile
var numbers = [6, 3, 2, 9];
console.log(numbers);
do {
unsorted = true;
for (var i = 0; i < numbers.length - 1; i += 1) {
var j = i + 1;
if (numbers[i] > numbers[j]){
var hold = numbers[i];
numbers[i] = numbers[j];

Compiling a Customized Bootstrap with LESS

Problem 1 - Merging changes

Bootstrap inevitably changes so I need a way to update bootstrap source code.

It looks like the popular options are:

  • modify the source and merge any future changes in
  • add files such as custom-variables.less that override previous values