Skip to content

Instantly share code, notes, and snippets.

View abhijit-c's full-sized avatar
🐲

Abhijit Chowdhary abhijit-c

🐲
View GitHub Profile
@bathtime
bathtime / Latin Dictionary
Last active November 13, 2019 23:35
An offline console Latin Dictionary.
// This program reads an XML dictionary file and prints a formatted result in
// terminal.
//
// NOTE: The required XML dictionary (76mb) will be downloaded to this
// machine if it is not found!
//
//
// *******************************************
// * *
// * A VERY SPECIAL THANK YOU ! *
@abhijit-c
abhijit-c / README.md
Last active January 5, 2017 10:33
Simple vector implementation in C

See Acutal Git Repo here:

#C Vector

My personal implementation of the c++ vector in C. I do not guarentee speed, stability or even usability. Sorry.

Please adhere to all license restrictions listed in the main directory.

#Build instructions

@dzhou
dzhou / prime_math.py
Created May 8, 2012 03:37
fast prime/factorization mathematics in python
#!/usr/bin/env python
#
# Kefei Dan Zhou
#
import math
# return a dict or a list of primes up to N
# create full prime sieve for N=10^6 in 1 sec