docker compose exec -it billing-engine sh -c \
'ngrep -d any -W byline port 2021 or 2013 or 2014 or 2080 or 2060 or 2012 | \
while read line; do
echo "$line" | jq . 2>/dev/null || echo "$line"
done'
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
| *.csv | |
| .DS_Store |
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
| <Response> | |
| <Say voice="Polly.Aditi">Hello</Say> | |
| </Response> |
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
| <Response> | |
| <Say voice="Polly.Russell">Hi Jen please leave a message after the beep</Say> | |
| <Record action="https://somleng-recordings.free.beeceptor.com"/> | |
| </Response> |
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
| sudo docker run -it --rm --net container:59da80a76475 nicolaka/netshoot # Replace 59da80a76475 with the running container ID | |
| tcpdump -Xvv -i eth0 -s0 -w capture.pcap | |
| curl --upload-file capture.pcap https://uppy.sh/somleng.pcap | |
| curl -F "[email protected]" https://0x0.st | |
| curl --upload-file capture.pcap https://sgfile.io |
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_stories.rb | |
| # Imports stories from the UNICEF Workplan into Pivotal Tracker from CSV file. | |
| ### CSV file format | |
| # Export the UNICEF worklplan as CSV. | |
| ### Usage |
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_contacts.rb | |
| # Imports contacts into SCFM from CSV file. | |
| ### CSV file format | |
| # CSV File must have a `phone_number` or `telephone_number` column | |
| # which contains the phone number of the contact. The phone number | |
| # must be in international E.164 format. All other additional columns | |
| # are added to the contact's metadata with the key being the column header |
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
| start_time = Time.new(2020, 10, 1).beginning_of_day | |
| end_time = Time.new(2020, 12, 31).end_of_day | |
| completed_calls = PhoneCall.completed.where(created_at: start_time..end_time).joins(:call_data_record) | |
| number_of_unpaid_users = User.count # SCFM only for now | |
| number_of_calls = completed_calls.count | |
| number_of_minutes = completed_calls.sum("call_data_records.bill_sec") / 60 | |
| number_of_users = (completed_calls.pluck(:to) + completed_calls.pluck(:from)).uniq.count |
NewerOlder