Skip to content

Instantly share code, notes, and snippets.

View svalleru's full-sized avatar

Shan Valleru svalleru

View GitHub Profile
@svalleru
svalleru / RingBuffer.py
Last active October 16, 2015 19:40
RingBuffer
class RingBuffer:
def __init__(self, size):
self.data = [None for i in xrange(size)]
def append(self, x):
self.data.pop(0)
self.data.append(x)
def get(self):
return self.data
@svalleru
svalleru / InfiniteRoundRobin.py
Last active October 16, 2015 19:40
InfiniteRoundRobin
targets = ['serverA', 'serverB', 'serverC', 'serverD', 'serverE', 'serverF']
index = 0
while True:
print targets[index]
index = (index + 1) % len(targets)
@svalleru
svalleru / gist:3838541
Last active June 23, 2016 00:08
Installing Bootstrap for Ruby on Rails Project
# Installs bootstrap gem
Step:1 (Install bootstrap on your machine)
$ sudo gem install twitter-bootstrap-rails
Successfully installed twitter-bootstrap-rails-2.1.3
1 gem installed
Installing ri documentation for twitter-bootstrap-rails-2.1.3...
Installing RDoc documentation for twitter-bootstrap-rails-2.1.3...
@svalleru
svalleru / gist:3838540
Created October 5, 2012 07:24
Installing Bootstrap for Ruby on Rails Project
# Installs bootstrap gem
Step:1 (Install bootstrap on your machine)
$ sudo gem install twitter-bootstrap-rails
Successfully installed twitter-bootstrap-rails-2.1.3
1 gem installed
Installing ri documentation for twitter-bootstrap-rails-2.1.3...
Installing RDoc documentation for twitter-bootstrap-rails-2.1.3...
@svalleru
svalleru / gist:3838536
Created October 5, 2012 07:23
Installing Bootstrap for Ruby on Rails Project
# Installs bootstrap gem
Step:1 (Install bootstrap on your machine)
$ sudo gem install twitter-bootstrap-rails
Successfully installed twitter-bootstrap-rails-2.1.3
1 gem installed
Installing ri documentation for twitter-bootstrap-rails-2.1.3...
Installing RDoc documentation for twitter-bootstrap-rails-2.1.3...