Skip to content

Instantly share code, notes, and snippets.

View roommen's full-sized avatar
:octocat:
Focusing

Runcy Oommen roommen

:octocat:
Focusing
View GitHub Profile
@roommen
roommen / aws-communityday-blr-slides
Created October 16, 2018 17:23
Slides - AWS Community Day Bengaluru 2018
************************************************
* Slides from AWS Community Day Bangalore 2018 *
************************************************
1. "Scaling hotstar.com for 10 million concurrent viewers", Gaurav Kambhoj, Hotstar - https://www.slideshare.net/AWSUsersGroupBengalu/scaling-hotstarcom-for-10-million-concurrent-viewers
2. "Advanced serverless application architecture and design considerations", Dilip Kola, Tensult - https://www.slideshare.net/AWSUsersGroupBengalu/advanced-serverless-application-architecture-and-design-considerations-118586320
3. "AWS serverless infrastructure - Integration testing", Santhosh Marimuthu, Advanced Engineer, Altran - https://www.slideshare.net/AWSUsersGroupBengalu/aws-serverless-infrastructure-integration-testing
4. "Lessons learnt in CI/CD with AWS serverless architecture", Sriguru V, Altran Engineering Solutions - https://www.slideshare.net/AWSUsersGroupBengalu/lessons-learnt-in-cicd-with-aws-serverless-architecture-119624226
5. "Cost optimized logging using API Ga
@roommen
roommen / Dockerfile - Happy New Year 2020
Created December 30, 2019 18:12
Dockerfile - Happy New Year 2020
FROM alpine:3.9
MAINTAINER Runcy Oommen
COPY hny.txt .
CMD ["cat", "hny.txt"]
@roommen
roommen / OpenSSH Update Script - Google Cloud Shell
Last active October 6, 2022 18:33
OpenSSH Update Script - Google Cloud Shell
#!/bin/bash
sudo apt-get install gcc -y
sudo apt-get install libssl-dev -y
sudo apt-get install zlib1g-dev -y
sudo apt-get install autoconf -y
wget https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-9.1p1.tar.gz
tar zxvf openssh-9.1p1.tar.gz
cd openssh-9.1p1 && ./configure && make && sudo make install
@roommen
roommen / Hybrid (Windows+Linux) Docker Swarm
Last active April 4, 2024 20:04
Hybrid (Windows+Linux) Docker Swarm
**********************
*** Pre-requisites ***
**********************
1. Set up Windows 2016 password:
gcloud beta compute --project <project_id> reset-windows-password <instance_name> --zone <zone_name>
ip_address: <ip_address>
password: <defult_password_generated>
username: <username>
3. Installing Docker:
@roommen
roommen / OpenSSH Update Script - Amazon Linux 2
Last active April 19, 2024 19:41
OpenSSH Update Script - Amazon Linux 2
#!/bin/bash
sudo yum install gcc -y
sudo yum install openssl-devel -y
sudo yum install zlib-devel -y
sudo yum install mlocate -y
sudo yum install autoconf -y
wget https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-9.1p1.tar.gz
tar zxvf openssh-9.1p1.tar.gz
cd openssh-9.1p1 && ./configure && make && sudo make install