I hereby claim:
- I am gouthamve on github.
- I am gouthamve (https://keybase.io/gouthamve) on keybase.
- I have a public key whose fingerprint is 8B43 438C 7BC4 41DD 39CE 62D1 F1C2 17E8 E902 3CAD
To claim this, I am signing this object:
var fs = require('fs') | |
var create = function(i) { | |
fs.mkdir('folder'+i, 0700, function(err) { | |
if(err) | |
console.log(err) | |
fs.open('folder'+i+'/file'+i, 'w', 0700, function(err, fd) { | |
fs.close(fd); | |
}) | |
}) |
---------- Forwarded message ---------- | |
From: Arun Prakash <[email protected]> | |
Date: Wed, May 20, 2015 at 11:08 AM | |
Subject: [Mozilla India] Fwd: [FSFTN] FSFTN Summer Camp on Free Software Technologies at IIT Madras - June 8 to June 13 | |
To: "[email protected]" <[email protected]>, [email protected] | |
FYI. |
package main | |
import ( | |
"encoding/json" | |
"errors" | |
"flag" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net" |
-- Doesnt Work | |
module Foo where | |
sumTutorial :: Integer -> Integer | |
sumTutorial 0 = 0 | |
sumTutorial n = n + sumTutorial n-1 | |
module Foo where | |
sumTutorial :: Integer -> Integer |
package main | |
import ( | |
"bufio" | |
"fmt" | |
"log" | |
"net" | |
) | |
func main() { |
### Welcome to the InfluxDB configuration file. | |
# Once every 24 hours InfluxDB will report anonymous data to m.influxdb.com | |
# The data includes raft id (random 8 bytes), os, arch, version, and metadata. | |
# We don't track ip addresses of servers reporting. This is only used | |
# to track the number of instances running and the versions, which | |
# is very helpful for us. | |
# Change this option to true to disable reporting. | |
reporting-disabled = false |
# Telegraf Configuration | |
# Telegraf is entirely plugin driven. All metrics are gathered from the | |
# declared inputs, and sent to the declared outputs. | |
# Plugins must be declared in here to be active. | |
# To deactivate a plugin, comment out the name and any variables. | |
# Use 'telegraf -config telegraf.conf -test' to see what metrics a config | |
# file would generate. |
I hereby claim:
To claim this, I am signing this object:
goroutine 32042 [running]: | |
runtime/pprof.writeGoroutineStacks(0x269b340, 0xc4203440e0, 0x30, 0xc420ada3c0) | |
/usr/local/go/src/runtime/pprof/pprof.go:603 +0x79 | |
runtime/pprof.writeGoroutine(0x269b340, 0xc4203440e0, 0x2, 0xc420d63870, 0x411658) | |
/usr/local/go/src/runtime/pprof/pprof.go:592 +0x44 | |
runtime/pprof.(*Profile).WriteTo(0x2748740, 0x269b340, 0xc4203440e0, 0x2, 0xc4203440e0, 0xc420d63aa0) | |
/usr/local/go/src/runtime/pprof/pprof.go:302 +0x3b5 | |
net/http/pprof.handler.ServeHTTP(0xc420ada071, 0x9, 0x26a9ac0, 0xc4203440e0, 0xc42132a400) | |
/usr/local/go/src/net/http/pprof/pprof.go:209 +0x1d1 | |
net/http/pprof.Index(0x26a9ac0, 0xc4203440e0, 0xc42132a400) |
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"os" | |
"time" | |
"github.com/prometheus/tsdb" | |
"github.com/prometheus/tsdb/labels" |