Skip to content

Instantly share code, notes, and snippets.

View OddExtension5's full-sized avatar
🎯
Focusing

Sushil Singh OddExtension5

🎯
Focusing
View GitHub Profile
@OddExtension5
OddExtension5 / microservices.md
Created January 20, 2020 16:32
Microservices Architecture and Design: Understanding core concepts, challenges, and hybrid architectures

Workshop Details

 + January 21 & 22, 2020 (8:30pm - 11:30 pm IST)
 + By MARK RICHARDS

Microservices is one of the latest software architecture styles that promises to deliver benefits such as ease of testing, fast and easy deployments, fine-grained scalability, architectural modularity, and overall agility. It is undeniably one of the more popular trends in the software industry, and everyone seems to be eager to quickly embrace and adapt this new architecture style. Unfortunately, as many companies are painfully experiencing, microservices is a fairly complex architecture style that is not suited for all applications and environments.

What you'll learn-and how you can apply it

By the end of this live, hands-on, online course, you’ll understand:

@OddExtension5
OddExtension5 / 1. Rnotes.md
Last active January 27, 2020 05:34
Data Science For Engineers

Set the working directory

Enter in the console: setwd("directorypath")

Executing an R file

  • Press Run/Ctrl+Enter

  • Press Source/Ctrl+Shift+S OR Press Ctrl+Shift+Enter (Source with Echo)

  • Run can be used to execute selected lines

@OddExtension5
OddExtension5 / 1.end-to-end-pipeline-for-data-science-project.md
Last active February 21, 2020 11:39
Deploying Machine Learning Model in Production

Supervised Learning Pipeline

Here is a general end to end pipeline for a data science project.

1. Define Business Objective & Criteria for Success

  • Experimental Design
    • Identify the business/product objective
    • Identify & hypothesize goals and criteria for success
    • Create a set of questions for identifying correct data set
  • Define which machine learning evaluation metric will be used to quantify quality of predictions
@OddExtension5
OddExtension5 / 01.target.md
Created March 15, 2020 15:39
Plan: Operating System & Computer Networks #Sushil #Harsh

Target Certification:

We will completely focus on various certification examination of Linux and Networking. This is the best way to gain both theorectical and practical knoweldge. I have listed some linux and networking certifcation exams details, llinks and resources. Follow the link and resources for getting idea of the exam and syllabus.

In a day or two I will attach the plan for both of us, so we effectively get started with our work.

Note: It is not compulsory to follow my resources , if you have one you can follow that. Just try to cover the whole syllabus of the given certification.

  1. Linux Foundation Certified System Administrator (LFCS)
@OddExtension5
OddExtension5 / classes01.java
Last active September 20, 2021 11:32
JAVA CLASSES
```java
/*
Program 01
Write a program to take your name as input from user through keyboard and display a greeting
*/
import java.util.Scanner;
@OddExtension5
OddExtension5 / java_programs.md
Last active September 18, 2021 19:52
DZone JAVA CLASSES

WELCOME PROGRAM

public class Welcome1 {
   // main method begins execution of Java application
   public static void main(String[] args) {
      System.out.println("Welcome to Java Programming!");
   } // end method main
} // end class Welcome1