Skip to content

Instantly share code, notes, and snippets.

View akshaydeo's full-sized avatar
🤔
thinking...

Akshay Deo akshaydeo

🤔
thinking...
View GitHub Profile
@akshaydeo
akshaydeo / cql_extractor_code.go
Created May 2, 2017 14:50
CQLExtractor files
package cqextractor
import (
"fmt"
"time"
"github.com/media-net/cargo/cassandra"
"github.com/media-net/cargo/utils"
"github.com/gocql/gocql"
"github.com/media-net/cargo/logger"
@akshaydeo
akshaydeo / EfficientThreadPoolExecutor
Created October 21, 2014 11:57
EfficientThreadPoolExecutor
/**
* Thread pool executor
* Author: akshay
* Date : 9/30/13
* Time : 2:55 PM
*/
public class EfficientThreadPoolExecutor extends ThreadPoolExecutor {
/**
* Logger
@akshaydeo
akshaydeo / 0_reuse_code.js
Created December 30, 2013 05:07
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@akshaydeo
akshaydeo / gist:5754908
Created June 11, 2013 06:50
GooglePlay Ping
import urllib
import urllib.request
import sys
from multiprocessing import Process
import time
def read_page():
print("reading source")
req = urllib.request.Request("https://play.google.com/store/apps/details?id=main.java.com.appsurfer")
try: