Skip to content

Instantly share code, notes, and snippets.

View misho-kr's full-sized avatar

Misho Krastev misho-kr

  • San Jose, California
View GitHub Profile
@misho-kr
misho-kr / AWS Network Connectivity Options.md
Last active January 23, 2023 07:07
"AWS Network Connectivity Options" course on AWS Online Learning pilot

AWS Network Connectivity Options

Knowledge of networking on Amazon Web Services (AWS) beyond the foundational level. Learn about various connectivity options, including how to choose the best way to create a secure network. Explore and analyze complex network design patterns and learn best practices.

Module 1: Understanding Connectivity Concepts

  • Multi-tier architecture
  • Multi-virtual private cloud (VPC) architecture
  • High availability
  • Hybrid networks
@misho-kr
misho-kr / GitHub Concepts.md
Last active January 22, 2023 07:14
Summary of "GitHub Concepts" from Datacamp.Org

Learn How to Use GitHub and explore Key GitHub Concepts.

Building on the topics covered in Introduction to Version Control with Git, this conceptual course enables you to navigate the user interface of GitHub effectively. Create public and private repositories, create and modify files, branches, and issues, assign tasks, tag users, review pull requests, and merge branches. Clone and fork repositories and generate private access tokens (PAT).

By Jasmin Ludolf, Data Science Content Developer, DataCamp

1. Introduction to GitHub

@misho-kr
misho-kr / Introduction to version control with Git.md
Last active January 3, 2023 09:21
Summary of "Introduction to version control with Git" from Datacamp.Org

Discover the importance of version control when working on data science projects and explore how to use Git to track files, compare differences, modify and save files, undo changes, and allow collaborative development through the use of branches. Introduction to the structure of a repository, create new repositories and clone existing ones, and show how Git stores data. Skills to handle conflicting files.

By George Boorman, Analytics and Data Science Curriculum Manager, DataCamp

Ressources: Git Cheatsheet

1. Introduction to Git

@misho-kr
misho-kr / aws-developing.md
Last active September 29, 2022 09:20
Developing on AWS

Learn container management and orchestration for Kubernetes using Amazon EKS. Build an Amazon EKS cluster, configure the environment, deploy the cluster, and then add applications to your cluster. Manage container images using Amazon Elastic Container Registry (ECR) and automate application deployment. Deploy applications using CI/CD tools. Monitor and scale your environment by using metrics, logging, tracing, and horizontal/vertical scaling. Configure AWS networking services to support the cluster and secure your Amazon EKS environment.

Instructor: Herbie Garcia

Modules

@misho-kr
misho-kr / aws-eks.md
Last active September 28, 2022 19:17

Learn container management and orchestration for Kubernetes using Amazon EKS. Build an Amazon EKS cluster, configure the environment, deploy the cluster, and then add applications to your cluster. Manage container images using Amazon Elastic Container Registry (ECR) and automate application deployment. Deploy applications using CI/CD tools. Monitor and scale your environment by using metrics, logging, tracing, and horizontal/vertical scaling. Configure AWS networking services to support the cluster and secure your Amazon EKS environment.

Instructor: ???

Modules

  • Module 1: Kubernetes Fundamentals
@misho-kr
misho-kr / aws-training.md
Last active January 23, 2023 07:08
AWS classes, training, etc.
@misho-kr
misho-kr / aws-technical-essentials.md
Last active February 25, 2025 16:01
AWS Technical Essentials

The AWS Technical Essentials Training course introduces cloud computing concepts, fundamental AWS products, services, and common solutions with demos, knowledge checks, and hands-on lab activities. It provides learners with the basic fundamentals to get started on AWS.

Instructor: Dan Puser

@misho-kr
misho-kr / Introduction to NumPy.md
Last active February 20, 2023 06:48
Summary of "Introduction to NumPy" from Datacamp.Org

NumPy is an essential Python library. TensorFlow and scikit-learn use NumPy arrays as inputs, and pandas and Matplotlib are built on top of NumPy. In this Introduction to NumPy course, you'll become a master wrangler of NumPy's core object: arrays! You'll discover why NumPy is so efficient and use broadcasting and vectorization to make your NumPy code even faster. By the end of the course, you'll be using 3D arrays to alter a Claude Monet painting.

By Izzy Weber, Curriculum Developer @ DataCamp

1. Understanding NumPy Arrays

Create and change array shapes to suit your needs. Discover NumPy's many data types and how they contribute to speedy array operations.

@misho-kr
misho-kr / Interactive Data Visualization with Bokeh.md
Last active July 22, 2021 06:21
Summary of "Interactive Data Visualization with Bokeh" course on Datacamp

Lead by Team Anaconda, Data Science Training

Bokeh is an interactive data visualization library for Python—and other languages—that targets modern web browsers for presentation. It can create versatile, data-driven graphics and connect the full power of the entire Python data science stack to create rich, interactive visualizations.

  • Glyphs
    • Visual shapes
  • circles, squares, triangles
@misho-kr
misho-kr / Object-Oriented Programming in Python.md
Last active September 18, 2023 04:17
Summary of "Object-Oriented Programming in Python" from Datacamp.Org

Object-oriented programming (OOP) is a widely used programming paradigm that reduces development times—making it easier to read, reuse, and maintain your code. OOP shifts the focus from thinking about code as a sequence of actions to looking at your program as a collection of objects that interact with each other. In this course, you’ll learn how to create classes, which act as the blueprints for every object in Python. You’ll then leverage principles called inheritance and polymorphism to reuse and optimize code.

By Alex Yarosh, Curriculum Developer @ Cockroach Labs

OOP Fundamentals

Learn what object-oriented programming (OOP) is, how it differs from procedural-programming, and how it can be applied. Define your own classes, and create methods, attributes, and constructors.