Skip to content

Instantly share code, notes, and snippets.

@lifeeth
lifeeth / AckoVsGoDigitDirect.csv
Created October 28, 2019 09:59
If all direct sales were website sales
Company Hits Direct Policies Conversion
Acko 5550000 79438 1.43%
Go Digit 1040000 721216 69.30%
@lifeeth
lifeeth / acko-godigit-claims-settled-april-june-2019.csv
Last active October 29, 2019 12:43
acko godigit claims settled
Company Claims Claims settled Settlement Ratio Market Share
Acko 6439 4785 0.743 0.172
Go Digit 28715 19336 0.673 1.036
@lifeeth
lifeeth / aws_codedeploy_agent_install.sh
Last active January 20, 2022 01:02
AWS Codedeploy Agent install on Ubuntu 20.04 - Until a package is released for Ubuntu 20.04
#!/usr/bin/env bash
sudo snap install ruby --channel=2.5/stable --classic
sudo gem install bundler
sudo git clone https://github.com/aws/aws-codedeploy-agent.git /opt/codedeploy-agent
sudo chown -R root.root /opt/codedeploy-agent
sudo chmod 644 /opt/codedeploy-agent/conf/codedeployagent.yml
sudo chmod 755 /opt/codedeploy-agent/init.d/codedeploy-agent
sudo chmod 644 /opt/codedeploy-agent/init.d/codedeploy-agent.service
pushd /opt/codedeploy-agent
sudo bundle install --system