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
Bootstrap inevitably changes so I need a way to update bootstrap source code.
It looks like the popular options are:
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]; |
Welcome to our little experiment where we become more awesome over the course of 6 weeks.
Greg Cerveny 303-810-7068 @gmcerveny [email protected]
Thursday, October 24th from 7 p.m. until 7:30 p.m
Friday, October 25th from noon until 12:30 p.m.
Location: Geekdom San Antonio, 11th Floor, http://geekdom.com
Wondering what the hell JavaScript is? This session is for you.
#include <MIDI.h> | |
void setup() | |
{ | |
MIDI.begin(); | |
Serial.begin(115200); | |
} | |
void loop() | |
{ |
sips -Z 600 *.jpg |
The programmers book club is a bi-weekly meeting of technically minded folks interested in improving their skills relevant to the craft and practice of programming.
Wednesdays, 6:00-7:00pm at Geekdom on the 11th floor in the Berners-Lee conference room.
find . -type f -name "*.png" -print | while read file; do mv "${file}" "${file%.png}~ipad.png"; | |
done; | |
find . -type f -name "*.png" -and -not -name "*~ipad.png" -print |