Skip to content

Instantly share code, notes, and snippets.

View Yogendra0Sharma's full-sized avatar
🎯
Focusing

Yogendra Sharma Yogendra0Sharma

🎯
Focusing
View GitHub Profile
class CheckableDirModel(QtGui.QFileSystemModel):
def __init__(self, resultFormats, parent=None):
QtGui.QFileSystemModel.__init__(self, None)
filters = QStringList()
#import ipdb;ipdb.set_trace()
filters.append('*.odb')
resultFormats = resultFormats.split(',')
for resultFormat in resultFormats:
filters.append('*.' + resultFormat)
@Yogendra0Sharma
Yogendra0Sharma / teamcity-agent-ubuntu.md
Created October 27, 2017 11:48 — forked from knope/teamcity-agent-ubuntu.md
Instructions to Setup Teamcity Agent on EC2 Ubuntu 12.04.2 Linux with NodeJS and PhantomJS
@Yogendra0Sharma
Yogendra0Sharma / README.md
Created October 24, 2017 11:30 — forked from smoser/README.md
publishing image to azure

Publishing an image on Azure

Installation of azure cli tools

The azure cli tool is used to do this publication. To install it follow below. For further questions see Azure CLI Install

# add ~/bin and add it to path
mkdir -p ~/bin/
[ "${PATH#*$HOME/bin}" = "$PATH" ] || PATH=$HOME/bin:$PATH

install npm

@Yogendra0Sharma
Yogendra0Sharma / deploy.cmd
Created October 24, 2017 11:28 — forked from manny42/deploy.cmd
Deployment Script for a React, NodeJs project on Azure WebApp
@if "%SCM_TRACE_LEVEL%" NEQ "4" @echo off
:: ----------------------
:: KUDU Deployment Script
:: Version: 1.0.15
:: ----------------------
:: Prerequisites
:: -------------

Deploy a Express.js project on Heroku

Step by step from command line by Michael Hsu

Quick start

Create a Node.js web framework 'express'

$ express myfirstexpress && cd myfirstexpress

Declare dependencies with NPM /package.json

@Yogendra0Sharma
Yogendra0Sharma / Migrate_and_Deploy_Django_app_on_Heroku.md
Created August 23, 2017 06:18 — forked from genomics-geek/Migrate_and_Deploy_Django_app_on_Heroku.md
Guide on how to migrate your Django web application to be deployed on Heroku
@Yogendra0Sharma
Yogendra0Sharma / Readm.md
Created July 27, 2017 09:19 — forked from jeroenvandijk/Readm.md
Instructions to test Logstash with Kafka

Test Logstash with Kafka

Setup Kafka

Download Kafka from:

https://www.apache.org/dyn/closer.cgi/incubator/kafka/kafka-0.7.2-incubating/kafka-0.7.2-incubating-src.tgz

Install Kafka

@Yogendra0Sharma
Yogendra0Sharma / VAGRANT-COURSE.md
Created June 12, 2017 06:41 — forked from yeukhon/VAGRANT-COURSE.md
Vagrant crash course

Intro to Advanced Python

By Adam Anderson

[email protected]

These notes are mostly just summaries of the provided references. The purpose of this document is to centralize the resources I found useful so they would be easy to find. Most definitions and explanations are paraphrased or quoted directly from the sources.

Table of Contents