ror, scala, jetty, erlang, thrift, mongrel, comet server, my-sql, memchached, varnish, kestrel(mq), starling, gizzard, cassandra, hadoop, vertica, munin, nagios, awstats
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am sanketsaurav on github. | |
* I am sanketsaurav (https://keybase.io/sanketsaurav) on keybase. | |
* I have a public key ASBDLpoF_tWbZZKUMWblVYIds59Z1jE4Dr-_QqSTc54CCgo | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title" : "Gopher Month 2016", | |
"subtitle" : "By GopherCon India", | |
"header_image" : { | |
"link" : "https://doselect.com/team/gopherconindia?utm_source=system_campaign&utm_medium=email&utm_campaign=gophermonth2016", | |
"src" : "https://media-doselect.s3.amazonaws.com/5e75471b-820f-4269-b38b-23c4cd5b94e2-1450689723.jpeg" | |
}, | |
"body" : { | |
"image" : { | |
"link" : "https://doselect.com/team/gopherconindia/hackathons?utm_source=system_campaign&utm_medium=email&utm_campaign=gophermonth2016", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Allows us to read user input below, assigns STDIN to keyboard | |
exec < /dev/tty | |
git rev-parse --show-toplevel | cd | |
file="VERSION" | |
if [ -f "$file" ] | |
then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Created by Kuitos on 2015/03/06 10:15 AM. | |
Email: [email protected] | |
author: EdwardCTaylor | |
author: Kuitos | |
Licence: MIT | |
--> | |
<!DOCTYPE html> | |
<html> | |
<head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function monthDiff(from, to) { | |
var monthNames = [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", | |
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ]; | |
var arr = []; | |
var datFrom = new Date('1 ' + from); | |
var datTo = new Date('1 ' + to); | |
var fromYear = datFrom.getFullYear(); | |
var toYear = datTo.getFullYear(); | |
var diffYear = (12 * (toYear - fromYear)) + datTo.getMonth(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js" type="text/javascript"></script> | |
<script src="skulpt.min.js" type="text/javascript"></script> | |
<script src="skulpt-stdlib.js" type="text/javascript"></script> | |
</head> | |
<body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
function f() { | |
sleep "$1" | |
echo "$1" | |
} | |
while [ -n "$1" ] | |
do | |
f "$1" & shift |