Skip to content

Instantly share code, notes, and snippets.

View jpatel3's full-sized avatar
🏃
One step at a time

Jaimin jpatel3

🏃
One step at a time
View GitHub Profile
Verifying my Blockstack ID is secured with the address 1EGR7zkC4QopWXsGmtz1B9aznnr63oUtun https://explorer.blockstack.org/address/1EGR7zkC4QopWXsGmtz1B9aznnr63oUtun
@jpatel3
jpatel3 / solrconfig.xml
Created February 12, 2018 21:18
solrconfig
<?xml version="1.0" encoding="UTF-8" ?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Verifying my Blockstack ID is secured with the address 15MF3dKZEDzS372c1gssU9eDQvJUN6EMec https://explorer.blockstack.org/address/15MF3dKZEDzS372c1gssU9eDQvJUN6EMec
Verifying that "jpatel.id" is my Blockstack ID. https://onename.com/jpatel
@jpatel3
jpatel3 / newrelic-plugin-agent.cfg
Created December 14, 2016 22:15
New Relic plugin agent sample configuration file
%YAML 1.2
---
Application:
license_key: REPLACE_WITH_REAL_KEY
wake_interval: 60
#newrelic_api_timeout: 10
#proxy: http://localhost:8080
#apache_httpd:
# name: hostname

Keybase proof

I hereby claim:

  • I am jpatel3 on github.
  • I am jpatel (https://keybase.io/jpatel) on keybase.
  • I have a public key whose fingerprint is A649 5F3A 5D66 E782 30F3 0B63 854E 0AD8 2A96 FFB7

To claim this, I am signing this object:

@jpatel3
jpatel3 / dataset-filter.json
Last active May 26, 2016 17:06
Tuva datasets filter menu config
[{
"filter_name": "Subject",
"filter_title": "Subject / Topic",
"children": [{
"name": "",
"tags": [{
"name": "Community",
"description": ""
}, {
"name": "Politics",
@jpatel3
jpatel3 / jenkins-build.sh
Created March 8, 2013 15:15
jenkins build script for django-jenkins
#!/bin/bash -ex
cd $WORKSPACE
virtualenv -q ve
source ./ve/bin/activate
pip install -E ./ve -r requirements.txt
pip install -E ./ve -r requirements-testing.txt
cd $WORKSPACE/projectname
ln -fs `pwd`/conf/testsettings.py `pwd`/localsettings.py
python manage.py migrate
python manage.py jenkins
//image modifier will make images all the same size
PImage[] tempImages;
String rootDir = "C:/Users/Ben/Dropbox/TuvaLabs UI-UX Design/Mock-ups/Assets/Images for Personalization Page/";
ArrayList directories, names; //holds the directories for all image files to be modified
void setup(){
size(200,150);
directories = new ArrayList();
#!/usr/bin/env python
from __future__ import with_statement
import os
import re
import shutil
import subprocess
import sys
import tempfile