Skip to content

Instantly share code, notes, and snippets.

View jsixface's full-sized avatar
🖋️
doing stuff

Arumugam Jeganathan jsixface

🖋️
doing stuff
View GitHub Profile
@jsixface
jsixface / compute-total-duration.go
Last active January 29, 2018 18:48
if you have duration in format of 3h55m2s in a file, this snippet can calculate the cumulative time duration
package main
import (
"bufio"
"log"
"os"
"time"
)
const fileName = "test.txt"