Skip to content

Instantly share code, notes, and snippets.

View jeffthemaximum's full-sized avatar

Jeff Maxim jeffthemaximum

View GitHub Profile
const wrapperStyle = {
position: 'relative'
}
const PlaceHolder = React.createClass({
renderPlaceholder(){
const { node, state } = this.props;
const placeholderText = node.data.get('placeholderText');
return (

Projects

Feel free to link to your project, useful resources, or blog posts you've written about doing these

###OSS projects Recursers have contributed to:

  • Mocha – JavaScript test framework running on node and the browser, making asynchronous testing simple and fun.
  • Jade - Jade is a high performance template engine heavily influenced by Haml and implemented with JavaScript for node.
  • Angular.js - AngularJS lets you extend HTML vocabulary for your application. The resulting environment is extraordinarily expressive, readable, and quick to develop.
  • BPython - bpython is a fancy interface to the Python interpreter for Linux, BSD, OS X and Windows
Projects
=====
Feel free to link to your project, useful resources, or blog posts you've written about doing these
###OSS projects Recursers have contributed to:
* [Mocha](http://visionmedia.github.com/mocha/) – JavaScript test framework running on node and the browser, making asynchronous testing simple and fun.
* [Jade](http://jade-lang.com/) - Jade is a high performance template engine heavily influenced by Haml and implemented with JavaScript for node.
* [Angular.js](http://angularjs.org/) - AngularJS lets you extend HTML vocabulary for your application. The resulting environment is extraordinarily expressive, readable, and quick to develop.
* [BPython](http://bpython-interpreter.org/) - bpython is a fancy interface to the Python interpreter for Linux, BSD, OS X and Windows

Keybase proof

I hereby claim:

  • I am jeffthemaximum on github.
  • I am jeffmaxim (https://keybase.io/jeffmaxim) on keybase.
  • I have a public key ASAMW430ZJ9pCEqF4mk0_OX43GYUIF67gwOE1wx2idLkWwo

To claim this, I am signing this object:

Example before jeff:

Objective 1

  • Write a for loop that will take in a number
  • When the loop is called it will iterate forward towards that number and print all the values in between to the console
  • Write another loop that will do the same thing but iterate backwards from that number to zero

Example after jeff:

@jeffthemaximum
jeffthemaximum / tictacttoe.rb
Created April 15, 2015 14:30
Ruby Tic Tac Toe
class Window
#pauses game until player presses enter key
def pause
STDIN.gets
end
end
class Game
$tiles = [0, 1, 2, 3, 4, 5, 6, 7, 8]