Skip to content

Instantly share code, notes, and snippets.

View ramanan12345's full-sized avatar

Venkata ramanan ramanan12345

  • Insurance
  • Bangalore india
View GitHub Profile
def keep_dice(self):
'''
method function returning a dice list to reroll.
It also stores the dice you want to keep in a separate keep list.
- returns list
'''
keep_input = input('which dice do you want to keep (comma separated: e.g. 1,1,5)? ')
split_input = keep_input.split(',')
if keep_input == '':
@ramanan12345
ramanan12345 / example.go
Created October 28, 2017 02:37 — forked from bryfry/gzip.go
Idiomatic golang net/http gzip transparent compression (works with Alice)
package main
import (
"compress/gzip"
"io"
"net/http"
"strings"
)
// Gzip Compression
If you are interested in organizational culture that is high trust and high performant then I would read the Toyota book series I have listed.  watch my video first. 
If you want bleeding edge “what organization culture” could look like start with the Kelly Mcgonical Ted talk then watch Alia Crum then watch my video listed. 
Mark Burgess’ book is a masterpiece (hard to read) on systems thinking, complexity, uncertainty and something he came up with called Promise theory. 
The devops chain of the Goal, Phoenix Project and my Handbook is also a good thread.  My guess is based on our conversation you should either start with Toyota stuff or Mindset stuff.  
Dekker stuff is masterful on human factors and resilience ..
@ramanan12345
ramanan12345 / index.html
Created August 26, 2017 02:24
Boilerplate: hyperapp + jsx + rollup minimal
<!doctype html>
<html>
<body>
<script src="bundle.js"></script>
</body>
</html>
{
"location": {
"zipcode": "10010",
"state_abbr": "NY",
"latitude": "40.739022",
"longitude": "-73.98205",
"city": "New York",
"state": "New York"
},
"weather": [
/**
* @providesModule TappyButtonApp
* @flow
*/
'use strict';
var React = require('react-native/addons');
var {
Bundler,
StyleSheet,