Skip to content

Instantly share code, notes, and snippets.

View Rutulpatel7077's full-sized avatar
:octocat:
Never Give up 💪

Rutul Patel Rutulpatel7077

:octocat:
Never Give up 💪
View GitHub Profile
@Rutulpatel7077
Rutulpatel7077 / combine.py
Created July 18, 2018 15:36 — forked from glombard/combine.py
Merging 4 images into one with Python and PIL/Pillow
# Combine multiple images into one.
#
# To install the Pillow module on Mac OS X:
#
# $ xcode-select --install
# $ brew install libtiff libjpeg webp little-cms2
# $ pip install Pillow
#
from __future__ import print_function
@Rutulpatel7077
Rutulpatel7077 / node-settings.config
Last active May 22, 2018 02:51
Node-settings.config file for circleci aws CI & CD
option_settings:
aws:elasticbeanstalk:container:nodejs:
NodeCommand: "npm start"
@Rutulpatel7077
Rutulpatel7077 / config.yml
Created May 22, 2018 02:38
config file under .elasticbeanstalk folder for Circle CI and AWS
branch-defaults:
dev:
environment: testing-env
global:
application_name: testing
branch: null
default_ec2_keyname: null
default_platform: Node.js
default_region: us-east-1
include_git_submodules: true
@Rutulpatel7077
Rutulpatel7077 / config.yml
Last active May 22, 2018 02:36
Config file for circleCi and AWS CI & CD
version: 2
jobs:
# The build job
build:
working_directory: ~/project
docker:
- image: circleci/node:6.10-browsers
steps:
# Checkout the code from the branch into the working_directory
@Rutulpatel7077
Rutulpatel7077 / MacOS_Install_OpenCV.py
Created February 9, 2018 21:00 — forked from vishwanath79/MacOS_Install_OpenCV.py
Install OpenCV on Mac OS Sierra on Python 3.5
# 1. Download and install the latest Anaconda distribution from https://www.continuum.io/downloads#macos
# 2. Create a new Python environment. Make sure you choose python 3.5 as your python version for the virtual environment:
conda create -n myenv python=3.5
# 3. Activate the new environment using:
source activate myenv