Skip to main content

Lorem Ipsum Plaintext

Oct 15, 2022CodeCatch
Loading...

More Plaintext Posts

Untitled

Aug 7, 2024naiferomar366-60ef

0 likes • 1 view

gggg

Untitled

Aug 27, 2024vercetti322

0 likes • 5 views

#include <iostream>
#include <vector>
#include <algorithm>
#include <cstdlib>
#include <ctime>
using namespace std;
// Function to generate random numbers
vector<int> generateRandomNumbers(int count, int minValue, int maxValue) {
vector<int> numbers;
for (int i = 0; i < count; ++i) {
numbers.push_back(rand() % (maxValue - minValue + 1) + minValue);
}
return numbers;
}
// Function to print a vector of integers
void printVector(const vector<int>& vec) {
for (int num : vec) {
cout << num << " ";
}
cout << endl;
}
// Function to sort and display numbers
void sortAndDisplayNumbers(vector<int>& numbers) {
sort(numbers.begin(), numbers.end());
cout << "Sorted numbers: ";
printVector(numbers);
}
int main() {
// Seed the random number generator
srand(static_cast<unsigned int>(time(0)));
int count, minValue, maxValue;
cout << "Enter the number of random numbers to generate: ";
cin >> count;
cout << "Enter the minimum value: ";
cin >> minValue;
cout << "Enter the maximum value: ";
cin >> maxValue;
// Generate random numbers
vector<int> numbers = generateRandomNumbers(count, minValue, maxValue);
// Display unsorted numbers
cout << "Unsorted numbers: ";
printVector(numbers);
// Sort and display sorted numbers
sortAndDisplayNumbers(numbers);
return 0;
}

Message A - 2^3

Apr 14, 2021Daedalus

0 likes • 0 views

Eqtt vw wvm awtdm ug xchhtm?

Untitled

Jan 10, 2025alexandr.zaikin.9999-c10d

0 likes • 1 view

delivery.HTTP(publicMux, delivery.Service{
CalculateSaleEvent: usecase.NewCalculateSaleEvent(saleCalculator),
TmEnrichMany: usecase.NewTmEnrichMany(saleCalculator),
})

Untitled

Feb 25, 2025AustinLeath

0 likes • 2 views

103 C
109 C
112 C
115 A B D E
118 B
118 B
121 B
203 A C D E
206 C
209 A
212 C
215 D
218 ?
221 A B C
225 B, OR A
302 C D
303 C
305 A,B
308 C
311 A B
314 B,D OR B,C
317 C
320 B
322 B
403 C
404 A
406 A C D E
409 C
217 NOT B 172.16.0.0/16 172.17.0.0/16 192.168.50.0/24 192.168.55.0/24 10.9.0.0/16
319 NOT B The traffic selectors do not include the source address.
202 C There is no route for a VPC peering (pcx-xxx) and only a local route in rtb-xxxxxx854
105 C Yes, AWS VPN-2 tunnels will come UP and EC2 can reach only a subset of the 120 unique prefixes.
117 A Peer A will delete the outgoing SA, while processing the Delete request from Peer B
222 B 2 DX PEs are launched and 1 Distinguished Endpoint.
408 C (((m1+m2)/60)*8)/1000000
214 B All of the time
304 MAYBE ONE OF C E - The customer has an ACL not allowing inbound traffic. / The customer has entered the wrong CGW address.
108 NOT A IKE Fragmentation will fragment both IKE_SA_INIT and IKE_AUTH message.
102 NOT C Sends Informational Message encrypted with the IKE SA, Informing the Peer to DELETE active Child SAs.
316 A The TS does not include the source address.
405 A Getafix had a single failed healthcheck to the PE.

AWS EC2 Cloud-Init User Detail

Nov 18, 2022AustinLeath

0 likes • 10 views

#!/bin/bash
yum -y install httpd
systemctl enable httpd
systemctl start httpd
hostname > /var/www/html/index.html