Skip to content

Instantly share code, notes, and snippets.

View suplab's full-sized avatar

Suplab Debnath suplab

View GitHub Profile
{
"$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",
@suplab
suplab / AWS_Azure_GCP.md
Last active April 21, 2020 13:56
Cloud Services Terminology Guide: AWS vs Azure vs Google

Compute

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
@suplab
suplab / Get All -Scan
Created January 30, 2020 15:35
API Gateway
{
"TableName": "iotDataTable"
}
#set($inputRoot = $input.path('$'))
{
"count" : $inputRoot.Count,
"payloads": [
#foreach($elem in $inputRoot.Items) {
@suplab
suplab / MapAPI.html
Last active June 2, 2017 06:05
google Map API multiple maps
<!DOCTYPE html>
<html>
<head>
<style>
#map {
height: 400px;
width: 100%;
}
#map2 {
height: 400px;
@suplab
suplab / AppStart.java
Created December 13, 2015 15:15
BeanMapper
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 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 %}