Skip to content

Instantly share code, notes, and snippets.

View pagoenka's full-sized avatar
🎯
Focusing

Pratik Goenka pagoenka

🎯
Focusing
View GitHub Profile
@pagoenka
pagoenka / Ipython_nvd3_notebook
Created May 22, 2015 05:53
Ipython nvd3 notebook
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
@pagoenka
pagoenka / ReadFile.go
Created July 18, 2015 17:35
Reading file, line by line in Go lang using scanner
package main
import (
"bufio"
"fmt"
"os"
)
func main() {
@pagoenka
pagoenka / WriteFile.go
Last active January 16, 2017 05:19
Writing to file in Go lang
package main
import (
"bufio"
"fmt"
"os"
)
func main() {
@pagoenka
pagoenka / appendWrite.go
Created July 25, 2015 12:31
Append to file in Go lang
package main
import (
"bufio"
"fmt"
"os"
)
func main() {