Skip to content

Instantly share code, notes, and snippets.

View volkovasystems's full-sized avatar
🏠
Working from home

Richeve S. Bebedor volkovasystems

🏠
Working from home
  • volkovasystem
  • Philippines
View GitHub Profile
/*
* object.watch polyfill
*
* 2012-04-03
*
* By Eli Grey, http://eligrey.com
* Public Domain.
* NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
*/
@volkovasystems
volkovasystems / README.md
Last active August 29, 2015 14:07 — forked from pnull/entypo.css

entypo-css

Entypo css binding from my gist, entypo.css forked from pnull/entypo.css

@volkovasystems
volkovasystems / CountdownControl.js
Last active August 29, 2015 14:10 — forked from srph/CountdownControl.js
A revision of countdown timer made with React way of thinking.
var CountdownControl = React.createClass({
// Simplified for brevity
render: function() {
var control = this.props.status
? 'Pause'
: 'Resume';
return (
<span onClick={this._handleClick}>
@volkovasystems
volkovasystems / 0_reuse_code.js
Last active August 29, 2015 14:14
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console