AWS |
Azure |
GCP |
---|---|---|
Elastic Compute Cloud | Virtual Machine | Compute Engine |
Elastic Beanstalk | Cloud Services | App Engine Environment (Standard, Flexible) |
EC2 Container Service (ECS), Amazon Kubernetes (EKS) | Azure Container Service (AKS) | Kubernetes Engine, Container Engine |
EC2 Container Registry (ECR) | Container Registry | Container Registry |
AWS Lambda | Azure Functions, Azure Event Grid | GCP Functions |
Auto Scaling | Azure Autoscale | Autoscaling |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://json.schemastore.org/resume", | |
"meta": { | |
"theme": "paper-plus-plus" | |
}, | |
"basics": { | |
"name": "Suplab Debnath", | |
"label": "Java & Cloud Technical Project Manager | AWS Certified | AI-Driven Delivery & Productivity", | |
"picture": "https://gravatar.com/userimage/22502587/6074f73b93dfc4f89dd2bc1f51f7e63f.jpeg", | |
"email": "doubts.reiterate699@passinbox.com", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"TableName": "iotDataTable" | |
} | |
#set($inputRoot = $input.path('$')) | |
{ | |
"count" : $inputRoot.Count, | |
"payloads": [ | |
#foreach($elem in $inputRoot.Items) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
#map { | |
height: 400px; | |
width: 100%; | |
} | |
#map2 { | |
height: 400px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.app.main; | |
import java.io.FileInputStream; | |
import java.io.IOException; | |
import java.util.Map; | |
import com.app.entity.ParsedMethod; | |
import com.app.input.ParseInputFacade; | |
import com.app.processor.BuildSEIModel; | |
import com.github.javaparser.ParseException; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- This entry is for anywhere blog excerpt needs to be displayed | |
The code shows excerpt if post contains {% excerpt %}..{% endexcerpt %} | |
else shows the entire content --> | |
{% for post in site.posts %} | |
{% if post.excerpt %} | |
{{ post.excerpt | markdownify }} | |
{% else %} | |
{{ post.content }} | |
{% endif %} |