Skip to content

Instantly share code, notes, and snippets.

View eddyruiz's full-sized avatar

Eddy Ruiz eddyruiz

  • Los Angeles, CA
View GitHub Profile
@eddyruiz
eddyruiz / mob-coding-challenge.js
Created June 29, 2017 02:11 — forked from VegasHank/mob-coding-challenge.js
A saved mob programming session with Learn Teach Code!
// CODE CHALLENGE
// Fizz buzz: print 1 to 1000, replace 3 with fizz, 5 with buzz,
//hello
int c;
for(c=0; c<100; c++){
}
@eddyruiz
eddyruiz / mob-coding-challenge.js
Created June 29, 2017 02:23 — forked from VegasHank/mob-coding-challenge.js
A saved mob programming session with Learn Teach Code!
// CODE CHALLENGE:
// Fizz buzz: print 1 to 1000, but replace every multiple of
// 3 with "fizz", every multiple of 5 with "buzz",
// and any multiple of 3 AND 5 with "fizzbuzz"
// TO RUN THE CODE:
// Copy-paste it into something like REPL.it and test it =P
// in JavaScript:
for(var count=1; c<1000; c++){
@eddyruiz
eddyruiz / mob-coding-challenge.js
Created June 29, 2017 02:28 — forked from zippyzz/mob-coding-challenge.js
A saved mob programming session with Learn Teach Code!
// CODE CHALLENGE:
// Fizz buzz: print 1 to 1000, but replace every multiple of
// 3 with "fizz", every multiple of 5 with "buzz",
// and any multiple of 3 AND 5 with "fizzbuzz"
// TO RUN THE CODE:
// Copy-paste it into something like REPL.it and test it =P
// in JavaScript:
for(var count=1; count<1000; count++) {
@eddyruiz
eddyruiz / mob-coding-challenge.js
Created June 29, 2017 02:34 — forked from VegasHank/mob-coding-challenge.js
A saved mob programming session with Learn Teach Code!
// CODE CHALLENGE:
// Fizz buzz: print 1 to 1000, but replace every multiple of
// 3 with "fizz", every multiple of 5 with "buzz",
// and any multiple of 3 AND 5 with "fizzbuzz"
// TO RUN THE CODE:
// Copy-paste it into something like REPL.it and test it =P
// in JavaScript:
for(var count=1; count<1000; count++) {
@eddyruiz
eddyruiz / mob-coding-challenge.js
Created June 29, 2017 02:38 — forked from zippyzz/mob-coding-challenge.js
A saved mob programming session with Learn Teach Code!
// CODE CHALLENGE:
// Fizz buzz: print 1 to 1000, but replace every multiple of
// 3 with "fizz", every multiple of 5 with "buzz",
// and any multiple of 3 AND 5 with "fizzbuzz"
// TO RUN THE CODE:
// Copy-paste it into something like REPL.it and test it =P
// in JavaScript:
for(var count=1; count<1000; count++) {
@eddyruiz
eddyruiz / mob-coding-challenge.js
Created June 29, 2017 02:48 — forked from zippyzz/mob-coding-challenge.js
A saved mob programming session with Learn Teach Code!
// CODE CHALLENGE:
// Fizz buzz: print 1 to 1000, but replace every multiple of
// 3 with "fizz", every multiple of 5 with "buzz",
// and any multiple of 3 AND 5 with "fizzbuzz"
// TO RUN THE CODE:
// Copy-paste it into something like REPL.it and test it =P
// in JavaScript:
for(var count=1; count<1000; count++) {
@eddyruiz
eddyruiz / mob-coding-challenge.js
Created June 29, 2017 02:54 — forked from nmwenz90/mob-coding-challenge.js
A saved mob programming session with Learn Teach Code!
// CODE CHALLENGE:
// Fizz buzz: print 1 to 1000, but replace every multiple of
// 3 with "fizz", every multiple of 5 with "buzz",
// and any multiple of 3 AND 5 with "fizzbuzz"
// TO RUN THE CODE:
// Copy-paste it into something like REPL.it and test it =P
// in JavaScript:
for(var count=1; count<1000; count++) {
@eddyruiz
eddyruiz / mob-coding-challenge.js
Created June 29, 2017 02:57 — forked from zippyzz/mob-coding-challenge.js
A saved mob programming session with Learn Teach Code!
// CODE CHALLENGE:
// Fizz buzz: print 1 to 1000, but replace every multiple of
// 3 with "fizz", every multiple of 5 with "buzz",
// and any multiple of 3 AND 5 with "fizzbuzz"
// TO RUN THE CODE:
// Copy-paste it into something like REPL.it and test it =P
// in JavaScript:
for(var count=1; count<1000; count++) {
@eddyruiz
eddyruiz / mob-coding-challenge.js
Created June 29, 2017 03:00 — forked from zippyzz/mob-coding-challenge.js
A saved mob programming session with Learn Teach Code!
// CODE CHALLENGE:
// Fizz buzz: print 1 to 1000, but replace every multiple of
// 3 with "fizz", every multiple of 5 with "buzz",
// and any multiple of 3 AND 5 with "fizzbuzz"
// TO RUN THE CODE:
// Copy-paste it into something like REPL.it and test it =P
// in JavaScript:
for(var count=1; count<1000; count++) {
@eddyruiz
eddyruiz / mob-coding-challenge.js
Created June 29, 2017 03:03 — forked from zippyzz/mob-coding-challenge.js
A saved mob programming session with Learn Teach Code!
// CODE CHALLENGE:
// Fizz buzz: print 1 to 1000, but replace every multiple of
// 3 with "fizz", every multiple of 5 with "buzz",
// and any multiple of 3 AND 5 with "fizzbuzz"
// TO RUN THE CODE:
// Copy-paste it into something like REPL.it and test it =P
// in JavaScript:
for(var count=1; count<1000; count++) {