Skip to content

Instantly share code, notes, and snippets.

View exitflynn's full-sized avatar
🤠
hello there!

Akshit Tyagi exitflynn

🤠
hello there!
View GitHub Profile
@exitflynn
exitflynn / sem6projsynopsis.md
Created January 25, 2024 05:06
Sem VI Minor Project

Auto-Scaling Cloud Native applications using Kubernetes

This'll involve us writing some sample API's to work with, dockerizing them, pushing the images to Dockerhub, pulilng and deploying them on Kubernetes, configuring appropriate networking strategies for interconnectivity, enabling metrics collection and monitoring via Prometheus, plug them to Grafana for visualisation, stress testing and using k8s' HPA (Horizontal Pod Autoscaler) to autoscale the cluster under (simulated) high traffic.

Where we can take this further:

@exitflynn
exitflynn / report.md
Last active November 9, 2023 05:23
GSoC '23 Final Report

GSoC '23 @ SunPy : Scraper Rewrite

minor edit: The PR was unmerged when the GSoC period ended, however now that it's merged to main, I've updated parts to reflect that.

Personal Information

Project Information

@exitflynn
exitflynn / querying_proba2_dslp.py
Created February 12, 2023 05:13
an example of the response received while querying proba-2 in-situ dslp data to help in development of a sunpy client
import requests
import json
r = requests.get("http://p2sa.esac.esa.int/p2sa-sl-tap/tap/sync?REQUEST=doQuery&LANG=ADQL&FORMAT=JSON&PHASE=RUN&QUERY=SELECT * FROM p2sa.v_file WHERE (file_date >= '2014-10-01 00:00:00') AND (file_date <= '2014-10-31 00:00:00') AND (file_type in ('DSLP_DERIVED')) ORDER BY file_date ASC")
r.json()
"""
=================================(OUTPUT)==================================