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
Graduate Admissions Office | |
Cambridge Judge Business School | |
University of Cambridge | |
Trumpington Street | |
Cambridge CB2 1AG | |
United Kingdom | |
[Date] | |
RE: Reference for Mr. Hussain Kurabadwala - Master of Finance Application | |
Dear Members of the Admissions Committee, | |
It is with great enthusiasm that I recommend Hussain Kurabadwala for admission to the University of Cambridge's Master of Finance programme. Having directly supervised Hussain for the past two years as he progressed from our graduate scheme to a senior developer at Barclays, I have witnessed firsthand his exceptional technical prowess, strategic analytical acumen, and profound understanding of financial systems. In my fifteen years of management experience across investment banking technology, Hussain stands out as a remarkably talented professional with clear potential for front-office finance roles. |
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
I need to transpile the following UniBasic code to Java. Please analyze and break down the transpilation process step by step: | |
[PASTE YOUR UNIBASIC CODE HERE] | |
For this transpilation: | |
1. First, identify all key UniBasic elements in the code, including: | |
- Program/subroutine structures | |
- Variables and their types/scopes | |
- File operations |
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 | |
# Define the API endpoint and headers | |
API_HOST="http://localhost:11434" | |
HEADERS=( | |
"-H" "Content-Type: application/json" | |
"-H" "x-some-header: some-value" | |
) | |
# Define the JSON payload |
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
context 'when se_linux mount exists' do | |
before do | |
# Mock File.directory? with any_args as you have | |
allow(File).to receive(:directory?).with(any_args).and_return(true) | |
# Mock shell_out for the ls -Z command exactly as you have | |
allow_any_instance_of(Chef::Resource).to receive(:shell_out) | |
.with('ls -Z /mnt/tmpfs | grep tmp_t') | |
.and_return(double('shell_out', exitstatus: 1)) | |
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
We’re excited to announce the release of a new version of Global1 ePrime! Here’s what’s new and improved: | |
Release Details | |
Version: 0.26.7 | |
New Features: QUICK codes and internal comments are now available on the Bulk Booking PageApp. | |
What Has Changed? | |
Bulk Booking PageApp: |
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
[ -d "/backup/PREARC" ] && find "/backup/PREARC" -mindepth 1 -exec rm -rfv {} + |
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
SELECT | |
businessDate, | |
COUNT(CASE WHEN activityType = 'M' THEN 1 END) AS activityTypeMCount, | |
COUNT(CASE WHEN activityType = 'FR' THEN 1 END) AS activityTypeFRCount | |
FROM ( | |
SELECT businessDate, activityType | |
FROM g1ActivityMessageId WITH (NOLOCK) | |
WHERE inputUser LIKE 'KL_%' | |
AND inputUser != 'KL_BATCH' | |
AND inputDate IN ('2024-10-28', '2024-10-29') |
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
keytool -importkeystore -srckeystore your_keystore.jks -destkeystore keystore.p12 -srcstoretype JKS -deststoretype PKCS12 -srcalias your_alias -deststorepass your_password -srcstorepass your_password | |
openssl pkcs12 -in keystore.p12 -nocerts -nodes -out private_key.pem | |
openssl pkcs12 -in keystore.p12 -clcerts -nokeys -out certificate.pem | |
cat private_key.pem certificate.pem > combined.pem |
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
# Get the size of the source directory in GB | |
SRC_SIZE=$(du -sk "$SRC" | awk '{print $1}') | |
SRC_SIZE_GB=$(echo "scale=2; $SRC_SIZE / 1024 / 1024" | bc) | |
# Get the available space in the destination in GB | |
DEST_AVAILABLE=$(df -k "$DEST" | tail -1 | awk '{print $4}') | |
DEST_AVAILABLE_GB=$(echo "scale=2; $DEST_AVAILABLE / 1024 / 1024" | bc) | |
# Calculate the required space (source size + 25%) in GB | |
REQUIRED_SPACE_GB=$(echo "scale=2; $SRC_SIZE_GB + ($SRC_SIZE_GB * 0.25)" | bc) |
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
LATEST_VERSION=$(find "$(readlink -f "$BASE_DIR")" -maxdepth 1 \( -type d -o -type l \) -exec stat --format '%Y %n' {} \; | sort -nr | head -n 1 | awk '{print $2}') |
NewerOlder