Skip to content

Instantly share code, notes, and snippets.

View aayushKumarJarvis's full-sized avatar
💭
I may be slow to respond.

Aayush Kumar aayushKumarJarvis

💭
I may be slow to respond.
View GitHub Profile
@aayushKumarJarvis
aayushKumarJarvis / RequestBuilder
Last active July 19, 2024 13:43
TrueCaller Terminal Utility
<?php
/*
TrueCaller offers its Web UI version also, where you can trace phone number's identity.
For people like me, who are great believers of Laptops and Desktop Machines, we miss out
certain things which sometimes become a part of our mockery.
But you got to realize that people can literally do anything if they have this piece of hardware
called computer with them.
@aayushKumarJarvis
aayushKumarJarvis / tar-gz-reader.go
Created June 12, 2016 09:09 — forked from indraniel/tar-gz-reader.go
Reading through a tar.gz file in Go / golang
package main
import (
"archive/tar"
"compress/gzip"
"flag"
"fmt"
"io"
"os"
)