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 / 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
@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 / 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 / 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 / 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 / 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 / notes.md
Last active January 19, 2020 18:34
Digital Signal Processing

Think DSP

  1. Discrete Fourier Transofrm
  2. Convolution Theorem
  3. Linear Time-Invariant Theory

Signal: It represents a continuous mathematical function

Wave: Contains an array of discrete samples

@OddExtension5
OddExtension5 / 1. notes.md
Last active January 19, 2020 18:14
Time Series Analysis : Stationary, Trend, Seasonal, Decomposition, Differences, Windowing, Running Values, Exponential Smoothing, Fill Methods, Resampling, Jackknife Estimation, Bootstrapping, Fourier Transform , Filtering, Correlation, Auto-Correlation, Partial Auto-Correlation, Random Walks, Dickey-Fuller Test, ARIMA Models

Time Series

  • A set of values measured sequentially in time
  • Values are typically (but not always) measured at equal interval x1, x2, x3, etc..
  • Values can be:
    • Continuous
    • discrete or symbolic (words)
  • Associated with empirical observation of time varying phenomena:
    • Stock market price (day, hour, minute, tick etc...)
  • Temperature (day, minute, second, etc..)
@OddExtension5
OddExtension5 / 1. SoftwareArchitecture.md
Last active March 7, 2024 14:09
Software Architecture : Layered, Microkernel, Event-Driven, Pipeline, Space-Based, Microservices, Service-Oriented, Service-Based, Serverless, LMAX

Software Architecture

        > with Neil Ford & Mark Richards

Architecture is the highest level concept of the expert developers.

"In most successful software projects, the experts developers working on that project have a shared understanding of the system design. This shared understanding is called 'architecture'. This understanding includes how the system is divided into components and how the components interact through interfaces. These components are usually composed of smaller components, but the architecture only include the components and interfaces that are understood by all the developers."

@OddExtension5
OddExtension5 / github_ssh.md
Last active July 11, 2020 12:34
This gist covers GitHub Advanced Concepts and Tricks

Clone a repo from GitHub using SSH on Windows

Steps:

  1. Open Git Bash

  2. Go to .ssh folder and type the below command:

    ssh-keygen -t rsa -b 4096 -c "your_email_address"

  3. Adding ssh key to the ssh-agent