Skip to content

Instantly share code, notes, and snippets.

View ankyit's full-sized avatar
🎯
Focusing

Ankit Mehta ankyit

🎯
Focusing
View GitHub Profile
@ankyit
ankyit / Go-Install-Ubuntu
Created July 25, 2019 08:16
Go / Node #100daysofcode
1. Switch to root account
2. Navigate to /tmp
3. Download source by Running: wget https://dl.google.com/go/go1.12.7.linux-amd64.tar.gz
4. Extract files to /usr/local (update version number if needed) tar -C /usr/local -xzf go1.12.7.linux-amd64.tar.gz
5. edit /etc/.profile and add export PATH=$PATH:/usr/local/go/bin
6. source /etc/.profile
@ankyit
ankyit / get-list-of-network-interfaces-in-VPC
Last active March 10, 2020 23:58
AWS - CLI references
aws ec2 describe-network-interfaces --filters Name=vpc-id,Values=vpc-12345 --query "NetworkInterfaces[*].[NetworkInterfaceId,Description,VpcId,PrivateIpAddress]" --output table
Ref: https://aws.amazon.com/premiumsupport/knowledge-center/vpc-detach-or-delete-eni/
@ankyit
ankyit / namespace-nginx.ts
Created March 11, 2020 08:56
Pulumi - Kubernetes
import * as k8s from "@pulumi/kubernetes";
import * as kx from "@pulumi/kubernetesx";
const clusterSvcsNamespace = new k8s.core.v1.Namespace("pulumi",undefined, undefined)
export const clusterSvcsNamespaceName = clusterSvcsNamespace.metadata.name;
const appLabels = { app: "nginx" };
const deployment = new k8s.apps.v1.Deployment("nginx", {
metadata: {namespace: clusterSvcsNamespaceName},
spec: {
@ankyit
ankyit / WordPress Performance.txt
Last active April 21, 2020 12:40
WordPress Performance
### Sites:
https://gtmetrix.com/
https://developers.google.com/speed/pagespeed/insights/
### Plugins
https://wordpress.org/plugins/query-monitor/
https://wordpress.org/plugins/autoptimize/
https://wordpress.org/plugins/wp-super-cache/
https://wordpress.org/plugins/ewww-image-optimizer/
https://wordpress.org/plugins/jetpack/
###### Docker Install ######
sudo apt-get update
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common
@ankyit
ankyit / ignore-host-key-verification
Created August 24, 2020 03:40
ignore-host-key-verification
Host *
StrictHostKeyChecking no
UserKnownHostsFile=/dev/null
@ankyit
ankyit / install-java-amazonlinux-2
Created August 24, 2020 03:42
install-java-amazon-linux-2
sudo amazon-linux-extras install java-openjdk11
@ankyit
ankyit / ecr-login.sh
Created January 25, 2021 08:05
ecr-login.sh
#! /bin/bash
eval $(aws ecr get-login --no-include-email --region ap-southeast-1 --registry-ids $1)
@ankyit
ankyit / __main__.py
Last active October 13, 2021 15:23
alicloud-pulumi-python
from pulumi import export
import pulumi_alicloud as alicloud
vpc = alicloud.vpc.Network( "web_dev_vpc",
vpc_name="alicloud_webdev_vpc",
description="Webdev VPC created with Pulumi",
cidr_block="192.168.0.0/16",
tags={
"created-with":"pulumi",
"created-by":"ankit",
@ankyit
ankyit / List of OSS buckets
Last active October 15, 2021 11:38
Steampipe Alibaba Cloud
select
name,
arn,
region,
account_id,
versioning
from
alicloud_oss_bucket