Skip to content

Instantly share code, notes, and snippets.

View hiteshgarg14's full-sized avatar
🏠
Working From Home

Hitesh Garg hiteshgarg14

🏠
Working From Home
  • Between 0 and 1
View GitHub Profile
@hiteshgarg14
hiteshgarg14 / vim-heroku.sh
Created January 21, 2018 05:25 — forked from dvdbng/vim-heroku.sh
Run vim in heroku updated 2017
mkdir ~/vim
cd ~/vim
# Staically linked vim version compiled from https://github.com/ericpruitt/static-vim
# Compiled on Jul 20 2017
curl 'https://s3.amazonaws.com/bengoa/vim-static.tar.gz' | tar -xz
export VIMRUNTIME="$HOME/vim/runtime"
export PATH="$HOME/vim:$PATH"
cd -
@hiteshgarg14
hiteshgarg14 / Install_pgAdmin4_with_python3_on_Ubuntu 16.04.md
Created December 18, 2017 12:37 — forked from Prototype-X/Install_pgAdmin4_with_python3_on_Ubuntu 16.04.md
Install pgAdmin4 v2.0 with python3 on Ubuntu 16.04 DESKTOP mode

Install pgAdmin4 v2.0 with python3 on Ubuntu 16.04 DESKTOP mode

  1. Get Python Wheel pgAdmin4

     wget https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v2.0/pip/pgadmin4-2.0-py2.py3-none-any.whl
    
  2. Install pip3

     sudo apt install python3-pip
    
@hiteshgarg14
hiteshgarg14 / GSoC'17_Work_Summary.md
Last active September 11, 2018 18:35
Google Summer of Code 2017: Final Report

Hello, everyone!

I'm Hitesh Garg, a Google Summer of Code 2017 Student Developer. This summer, I worked with Open States This is a summary report on what I managed to do in the past three months.

My Deliveries were:

  • Task 1: Help Organization in Pupa-ization of Existing Scrapers and Fixing Bugs & Updating Scrapers For Different States
  • Task 2: Build New Open Civic Data Admin Tools
    • User Feedback Tool
  • Merge Tool
@hiteshgarg14
hiteshgarg14 / install_postgresql9.4_postgis2.1_ubuntu.md
Last active March 29, 2017 16:43 — forked from ansell/install_postgresql9.4_postgis2.1_ubuntu.md
Installing PostgreSQL 9.4 and PostGIS on Ubuntu 14.04

Remove old PostGIS Installation

The first step is to remove older version of PostGIS if any.

sudo apt-get purge postgis

Setup repository

wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg main" >> /etc/apt/sources.list.d/postgresql.list'