Skip to content

Instantly share code, notes, and snippets.

View azzaxp's full-sized avatar

Mohammed Azzan Patni azzaxp

View GitHub Profile
@azzaxp
azzaxp / django_crash_course.MD
Created April 12, 2020 07:18 — forked from bradtraversy/django_crash_course.MD
Commands for Django 2.x Crash Course

Django Crash Course Commands

# Install pipenv
pip install pipenv
# Create Venv
pipenv shell
@azzaxp
azzaxp / apache-logs-hive.sql
Created May 2, 2012 10:12 — forked from emk/apache-logs-hive.sql
Apache log analysis with Hadoop, Hive and HBase
-- This is a Hive program. Hive is an SQL-like language that compiles
-- into Hadoop Map/Reduce jobs. It's very popular among analysts at
-- Facebook, because it allows them to query enormous Hadoop data
-- stores using a language much like SQL.
-- Our logs are stored on the Hadoop Distributed File System, in the
-- directory /logs/randomhacks.net/access. They're ordinary Apache
-- logs in *.gz format.
--
-- We want to pretend that these gzipped log files are a database table,