Skip to content

Instantly share code, notes, and snippets.

View rupeshtiwari's full-sized avatar
🎯
Focusing

Rupesh Tiwari rupeshtiwari

🎯
Focusing
View GitHub Profile
@rupeshtiwari
rupeshtiwari / 00_README.md
Last active April 23, 2024 20:40
Kubernetes from Basics to Guru
@rupeshtiwari
rupeshtiwari / 00_README.md
Last active April 23, 2024 19:31
Apache Data Processing Frameworks

Comprehensive Overview of Hadoop Ecosystem Components with Cloud Service Equivalents

Here's a concise table summarizing the key Hadoop ecosystem components along with their cloud service equivalents:

Component Purpose Created by Language Support Limitations Alternatives Fit GCP Service AWS Service Azure Service
Apache Hive SQL-like data querying in Hadoop. Facebook HiveQL High latency for some queries. P
@rupeshtiwari
rupeshtiwari / 00_README.md
Last active April 23, 2024 19:06
Learning Apache spark notes
@rupeshtiwari
rupeshtiwari / 01_GCP for Data Analytics Customer Engineer.md
Last active April 23, 2024 20:40
GCP for Data Analytics, Google Data Analytics , Customer engineer, gcp,
@rupeshtiwari
rupeshtiwari / Overview of Open-Source Projects Related to Google's Technologies.md
Last active April 21, 2024 15:50
Overview of Open-Source Projects Related to Google's Technologies
@rupeshtiwari
rupeshtiwari / Elasticsearch to OpenSearch migration.md
Last active April 19, 2024 14:35
Elasticsearch to OpenSearch migration

1.5 to 6.8

flowchart TD
    ES1_5("1. Elasticsearch 1.5\nUse migration plugin and snapshot") -->|Snapshot & restore| ES2_3("2. Elasticsearch 2.3\nRestore snapshot from 1.5\nReview
@rupeshtiwari
rupeshtiwari / Migration Assistant for Amazon OpenSearch Service.md
Last active April 19, 2024 15:24
Migration Assistant for Amazon OpenSearch Service

Migration Assistant for Amazon OpenSearch Service Workshop

Prerequisite

  • aws cli installed
  • aws credentials configured
  • Installed session manager plugin
brew install --cask session-manager-plugin
@rupeshtiwari
rupeshtiwari / python frontend framework.md
Last active April 11, 2024 17:26
Python Frontend Framework

Building Lightweight Web Apps with Flask, HTMX, and Alpine.js

Creating fast, mobile-friendly web applications is crucial in today's fast-paced digital world. Flask, a Python web framework, offers a minimalistic yet powerful platform for developers looking to build efficient applications. For the frontend, HTMX and Alpine.js provide modern, lightweight solutions for dynamic interfaces without the overhead of heavier frameworks. HTMX enhances HTML to support AJAX and other dynamic behaviors seamlessly, while Alpine.js brings the reactivity of Vue or React in a much smaller package. Both are designed to ensure your applications are responsive and perform well on mobile devices. Dive into their ecosystems with the provided tutorials and get your application running in no time.

  • Flask:

    • Tutorial & Installation: Explore the official Flask Quickstart guide, which includes installation instructions and a basic application setup.
  • HTMX:

@rupeshtiwari
rupeshtiwari / install minikube on macos.md
Last active March 28, 2024 22:09
install minikube on macos, kubernetes

If you're getting a "command not found" error for Minikube, it means that Minikube is either not installed on your system or it's not added to your system's PATH. Here are the steps to install Minikube and start a local Kubernetes cluster:

Installing Minikube:

  1. Download Minikube:

    On macOS, you can use Homebrew:

brew install minikube