This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
what is going to be the backup and restoration plan for the data? | |
What downtime sla is being provided in annual maintenance plan? | |
Im sure the solution is going to be multi tenent. so that i can onboard my multiple companies with separate and independent workforces? | |
-- 1 company employees cannot interfere and accessd data from another company. | |
Hierarchy of organisation employees has to be created. so that when delivering a report, we can send the service report automatically to customer,service engineer and service engineer's manager. | |
Hierarchy permission can be created so that manager can see performance of his reporting employees. | |
will application source files be provided? | |
yearly maintenance plan will include | |
1. os and language upgrades every year? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A1-A1 | |
A1-A2 | |
A1-A3 | |
A1-A4 | |
A1-A5 | |
A1-A6 | |
A1-A7 | |
A1-A8 | |
A1-A9 | |
A1-A10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aws ec2 describe-snapshots --region ap-south-1 --query 'Snapshots[*].[SnapshotId,StartTime,VolumeSize,VolumeId,StorageTier,State,Tags[?Key==`Techteam`].Value | [0],Tags[?Key==`Project`].Value | [0],Description]' --output json | jq -r '.[] | @csv' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# documented in https://superuser.com/questions/356907/how-to-get-real-time-network-statistics-in-linux-with-kb-mb-bytes-format-and-for | |
Your application is probably sending packets to a specific UDP or TCP port number or to a specific IP-address. | |
You can therefore use something like TCPdump to capture that traffic. | |
TCPdump doesn't give you the real-time stats you desire but you can feed it's output to something that does (I'll try to update this answer with an answer later). | |
Update: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If you want to find last value of the column | |
K1 is start of upper header, U6 is end of current row | |
we want to find header of last non empty column in a row (for K to U columns) | |
=ifna(index(filter($K$1:U6,not(ISBLANK(K6:U6))),1,counta(K6:U6)),"TBD") | |
This selects subset of non empty cells from K1 to U6 (from first row to current row) | |
FILTER AREA | |
=filter($K$1:U6,not(ISBLANK(K6:U6))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import xlsxwriter | |
from functools import reduce | |
# Create an new Excel file and add a worksheet. | |
workbook = xlsxwriter.Workbook('merge1.xlsx') | |
worksheet = workbook.add_worksheet() | |
# Create a format to use in the merged range. | |
merge_format = workbook.add_format({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aws ec2 describe-snapshots --filters Name=tag:Techteam,Values=mall-cart | jq '.Snapshots[] | "\(.SnapshotId),\(.VolumeId),\(.StartTime),\(.VolumeSize),\(.Tags[] | select(.Key=="Hostname") | .Value),\(.Description)"' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#identify is part of imagemagick suite | |
echo "@startmindmap" > /tmp/.org2file.uml | |
cat $1 >> /tmp/.org2file.uml | |
echo "@endmindmap" >> /tmp/.org2file.uml | |
#if -DPLANTUML_LIMIT_SIZE=18192 is not provided then image gets cropped off | |
java -jar /home/palashkulshreshtha/bin/plantuml.jar -DPLANTUML_LIMIT_SIZE=18192 -o /tmp/ /tmp/.org2file.uml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{pincode:1,value:1},{pincode:2,value:2}] | |
to | |
{1:{pincode:1,value:1},2:{pincode:2,value:2}} | |
jq '.| map({(.pincode|tostring): .}) | add' IN.json > pincode_wise.json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://stackoverflow.com/questions/69973010/how-do-i-avoid-creating-a-cross-product-when-extracting-multiple-sub-elements-fr | |
cat /tmp/jira.txt | jq '.[] | {key} + (.changelog.histories[] | {created} + (.items[] | {field,fromString,toString})) | select (.field=="status")' |
NewerOlder