Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Trello Test</title>
<style>
li.pass{
color:green;
}
li.fail{
@sriprasanna
sriprasanna / Res.sh
Last active August 29, 2015 14:17 — forked from Garland-g/Res.sh
#!/bin/bash
#Author: Travis Gibson
#This script requires an argument for the resolution width
#Thanks go out to eCharles for a patch in the comments of this link here: http://blog.echarles.net/2013/10/01/Ubuntu-13.04-On-MacbookPro-Retina
if [ -z "$1" ]; then
echo "Usage: Res.sh <resolution_width>";
exit 1;
fi
erg=$( echo "$1")
check=$(xrandr -q | grep DP-2 | cut -d " " -f 4 | cut -d "x" -f 1)
# If the service doesn't run
sudo service docker restart
sudo service rapidftr restart
sudo docker logs -f rapidftr
# More debug steps will go below
@sriprasanna
sriprasanna / rapidftr in rhel
Last active August 29, 2015 14:20
Install RapidFTR in RHEL
Para instalar docker in RHEL7
https://docs.docker.com/installation/rhel/
--------------------------------------------------
sudo su -
service docker start
mkdir -p /data/production
docker pull rapidftr/rapidftr
chcon -Rt svirt_sandbox_file_t /data/production
docker run -d -P -p 80:80 -p 443:443 -p 6984:6984 -p 5984:5984 -v /data/production:/data --name rapidftr rapidftr/rapidftr:release-2.0.0_latest
@sriprasanna
sriprasanna / install_sshuttle_mac
Last active August 29, 2015 14:21
Install sshuttle on mac
#/bin/bash
echo "Installing PyXAPI"
cd /tmp
curl -O http://www.pps.univ-paris-diderot.fr/~ylg/PyXAPI/PyXAPI-0.1.tar.gz
tar -xzvf PyXAPI-0.1.tar.gz
cd PyXAPI-0.1
./configure
make
sudo make install
cd ..
@sriprasanna
sriprasanna / game-of-life.md
Last active April 14, 2021 09:12
Kata - Game of life

Conway's Game of Life - Challenge

The Game of Life, also known simply as Life, is a cellular automaton devised by the British mathematician John Horton Conway in 1970.

Gospers Glider gun

The game is a zero-player game, meaning that its evolution is determined by its initial state, requiring no further input. One interacts with the Game of Life by creating an initial configuration and observing how it evolves. It is Turing complete and can simulate a universal constructor or any other Turing machine.

Source : Wikipedia

{
"Parameters": {
"inputName": {
"Type": "String",
"MinLength": 1
}
},
"Outputs": {
"outputName": {
"Value": {