Skip to content

Instantly share code, notes, and snippets.

Questions

How will you manage deployment?

Earlier assumptions was that client already has UiPath infrastructure and resources to support new processes. Existing team can manage additional deployment.

If that is not a case there will be additional effort to do everything from ground up.

  1. Two new environment need to setup on aws/azure/google cloud - 4 weeks (stage and prod) (assume all licences are in place)
  2. Release, deployment and testing process setup with focus on devops (CI/CD pipeline) - 2 weeks

CI/CD Pipeline

Azure Devops Example

Plan for maintenance, support?

@punchouty
punchouty / rpa_efforts_estimates.md
Last active September 30, 2021 19:51
Effort estimates for 4 processes

RPA Effort Estimate

Summary

Total : 96 Hours (12 Days)

Development : 72 Hours (8 days)

Testing : 24 Hours (3 days)

Scope

Transfer rates from Currency Conversion sheet received via Mail to Application 1

Effort Estimates

@punchouty
punchouty / ordertick-release.md
Created May 29, 2021 17:30
Ordertick Release
cd racloop/workspace/edisUi/
sh release.sh qa
cd ../edisDashboard/
sh new_release.sh qa
@punchouty
punchouty / symbolic.md
Last active May 21, 2021 11:03
Symbolic with use of Collection

Collection

Identity for collection colors

BrainCollectionConfig

{
   "id" : 123456,
   "key" : {
      "vertical" : "common",
      "type" : "collection",
@punchouty
punchouty / python-help.md
Created May 11, 2021 13:23
Python help for Mac

Useful Commands

pyenv versions
pyenv global 3.7.3
pyenv local 3.7.3

Python Installation

pyenv install --list
pyenv install --list | grep " 3\.[678]"
@punchouty
punchouty / retail.md
Created April 23, 2021 09:53
Sample Retail POS Data

POS

Invoice Structure

  1. Entities
    1. Customer
      1. age (numeric)
      2. customer_type (platinum, gold, silver) | qualifiers (assigned_date, minimum_monthly_purchase)
      3. gender (male, female, other)
  2. Product
@punchouty
punchouty / proto.md
Last active May 26, 2021 04:23
Fabric Protos
syntax = "proto3";

package com.jio.brain;

option java_multiple_files = true;

import "common.proto";
import "id.proto";
import "quant.proto";
@punchouty
punchouty / git.md
Created March 23, 2021 18:47
Manage multiple git account

Multiple Git Repositories

Generate SSH Keys

Remove all files fro ~/.ssh folder

ssh-keygen -t rsa -C "rajan@punchouty.com"

Give empty passphrase. Two files be created in ~/.ssh folder

Registering the new SSH Keys with the ssh-agent

eval "$(ssh-agent -s)"
@punchouty
punchouty / ProtoTest.java
Last active March 12, 2021 14:22
Proto size in bytes | Map Vs List
/**
syntax = "proto3";
option java_package = "com.jio.fabric.demo";
option java_multiple_files = true;
message ProtoMap {
map<string, uint32> properties = 1;
}
message StringList {
@punchouty
punchouty / azure.md
Created January 29, 2021 10:28
Azure kubernets Deployment

Azure Installation

Startup Commands

az login
az aks start --name fabric-cluster --resource-group fabric
az aks stop --name fabric-cluster --resource-group fabric

export KUBECONFIG=/Users/rajanpunchouty/fabric-cluster.kubeconfig

source <(kubectl completion zsh)  # setup autocomplete in zsh into the current shell