Skip to content

Instantly share code, notes, and snippets.

View Yogendra0Sharma's full-sized avatar
🎯
Focusing

Yogendra Sharma Yogendra0Sharma

🎯
Focusing
  • Intelizign Engineering Service GmbH, Ex- Siemens Digital Industries Software
  • Nuremberg, Germany
  • X @Fuzzbaba
View GitHub Profile
@Yogendra0Sharma
Yogendra0Sharma / Install.md
Created February 21, 2017 06:15 — forked from genomics-geek/Install.md
Deploying django application with gunicorn nginx mysql

Step One: Update Packages

sudo apt-get update
sudo apt-get upgrade

Step Two: Install and Create Virtualenv

sudo apt-get install python-virtualenv
sudo virtualenv /opt/myenv
@Yogendra0Sharma
Yogendra0Sharma / README.md
Created January 12, 2017 08:43 — forked from genomics-geek/README.md
Setting up a Dockerized web application with Django REST APIs, ReactJS with Redux pattern, and Webpack Hot Reloading! Mouthful.

Guide on how to create and set up a Dockerized web app using Django REST APIs and ReactJS

Hopefully this will answer "How do I setup or start a Django project using REST Framework and ReactJS?"

I created this because it was SUCH a pain in the ass setting up a project using all the latest technologies. After some research, I figured it out and have it working. The repo that implements this is located here. Feel free to use it as a boilerplate ;)

Main features:

  • Django REST APIs
  • ReactJS with Redux Pattern
  • Webpack module bundler manager
@Yogendra0Sharma
Yogendra0Sharma / resume-2015Dec
Created July 15, 2019 07:20 — forked from kchenthilrajan/resume
Chenthil's Full Stack Developer Resume
Chenthil Rajan 318 243 1429
kchenthilrajan@gmail.com
www.github.com/kchenthilrajan
SUMMARY
• 10+ years of experience in Software Development including Analysis, Design, Development
and Testing of various applications in Java/J2EE environment.
• Experience in Functional and Object Oriented Programming style of Javascript.
• Clear understanding of prototype chaining, closure and scope with respect to Javascript.
• Got good exposure to UI design using Adobe Photoshop, Adobe Illustrator, Performed slicing
@Yogendra0Sharma
Yogendra0Sharma / redis_cheatsheet.bash
Created January 10, 2017 10:36 — forked from LeCoupa/redis_cheatsheet.bash
Redis Cheatsheet - Basic Commands You Must Know
# Redis Cheatsheet
# All the commands you need to know
redis-server /path/redis.conf # start redis with the related configuration file
redis-cli # opens a redis prompt
# Strings.
@Yogendra0Sharma
Yogendra0Sharma / react-training-notes.md
Created January 18, 2017 10:40 — forked from SanthoshVijayabaskar/react-training-notes.md
ReactJS Training Notes - A comprehensive guide - Course Author: Santhosh Vijay

React JS Introduction

#React JS

  • is an Open Source library (BSD License)
  • for 'V' in MVC
  • developed by Facebook
  • uses 'Component-Driven' architecture (Web Components)
  • uses 'Virtual DOM' for Performance
  • uses 'state' and 'props' for data flow
  • uses JSX Syntax
@Yogendra0Sharma
Yogendra0Sharma / dumpdbs3.py
Created January 12, 2017 08:43 — forked from goliatone/dumpdbs3.py
Simple django management command to dump database using mysqldump, pg_dump, or sqlite3 .dump, and store in S3
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from django.core.management.base import BaseCommand
# from django.core.management.base import CommandError
from optparse import make_option
from django.conf import settings
import os
import sys
import yaml
from boto.s3.connection import S3Connection
@Yogendra0Sharma
Yogendra0Sharma / ultimate-ut-cheat-sheet.md
Created August 26, 2020 13:19 — forked from yoavniran/ultimate-ut-cheat-sheet.md
The Ultimate Unit Testing Cheat-sheet For Mocha, Chai and Sinon

The Ultimate Unit Testing Cheat-sheet

For Mocha, Chai and Sinon

using mocha/chai/sinon for node.js unit-tests? check out my utility: mocha-stirrer to easily reuse test components and mock require dependencies


@Yogendra0Sharma
Yogendra0Sharma / index.ts
Created August 23, 2020 11:20
Node-SOAP Failed
import * as soap from "soap";
var platformPassword = 'PlatformAPIPassword';
var platformUsername = 'PlatformAPIUser';
var url = "https://docs.mendix.com/apidocs-mxsdk/apidocs/attachments/9535497/19398865.wsdl";
var requestArgs: any = null;
var options: any = {};
requestArgs = {
ApiKey: "667271d9-1b1b-4056-8c3e-4de044e9e57e",
ProjectID: "b1bdb9f4-d92f-4a0c-a469-b163d874df31"
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)