Skip to content

Instantly share code, notes, and snippets.

View Radzell's full-sized avatar

Deon Robinson Radzell

  • SerAuto and Coin
  • United States
View GitHub Profile
@Radzell
Radzell / solution
Created November 14, 2013 14:28
Radzell Solution
import json
import urllib2
import httplib2
from urlparse import urlparse, parse_qs
from pprint import pprint
id=None
status = 200
while status==200:
if(id):
resp, content = httplib2.Http().request('http://letsrevolutionizetesting.com/challenge.json'+'?id='+id)

Principles of Adult Behavior

  1. Be patient. No matter what.
  2. Don’t badmouth: Assign responsibility, not blame. Say nothing of another you wouldn’t say to him.
  3. Never assume the motives of others are, to them, less noble than yours are to you.
  4. Expand your sense of the possible.
  5. Don’t trouble yourself with matters you truly cannot change.
  6. Expect no more of anyone than you can deliver yourself.
  7. Tolerate ambiguity.
  8. Laugh at yourself frequently.
@Radzell
Radzell / cpm.js
Created December 11, 2018 04:31 — forked from perico/cpm.js
Critical Path Method Implementation Javascript
/**
* Implementation of the Critical Path Method (CPM) with variation
* @see http://en.wikipedia.org/wiki/Critical_path_method
*
* Shows all the critical Paths, returns a subset of the graph
* containing the critical activities
*/
/**
* Activity Class
class MyComponent extends React.Component {
constructor(props) {
// set the default internal state
this.state = {
clicks: 0
};
}
componentDidMount() {
this.refs.myComponentDiv.addEventListener('click', this.clickHandler);