Skip to content

Instantly share code, notes, and snippets.

@anismiles
anismiles / pom.xml
Created February 3, 2014 10:01 — forked from elvanja/pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.acme.test</groupId>
<artifactId>nodejs-dependency</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>nodejs-dependency</name>
<description>NodeJS Dependency Project - to be references in nodejs-test</description>
<packaging>jar</packaging>
@anismiles
anismiles / golang_job_queue.md
Created February 5, 2018 17:15 — forked from harlow/golang_job_queue.md
Job queues in Golang
@anismiles
anismiles / hive_csv2avro.py
Created November 12, 2020 20:45 — forked from vepetkov/hive_csv2avro.py
Convert a CSV to Hive DDL + AVRO Schema (with type inference)
#!/usr/bin/python
import pandas
import sys
import argparse
import string
import subprocess
import json
import textwrap
import re