본문 바로가기

code4

Monitoring Network Firewalls Using the AWS Network Firewall Dashboard Hello, in this post, we'll explore the newly released features in AWS Network Firewall😊✔️ AWS Network Firewall is a stateful, managed network firewall and intrusion detection and prevention service for your Virtual Private Cloud (VPC)!✔️ Using Network Firewall, you can effectively filter traffic at your VPC boundary, including traffic entering or leaving through your Internet Gateway, NAT Gatew.. 2025. 11. 8.
Rabin-Karp Algorithm // d is the number of characters in the input alphabet #define d 29 //find txt in patternint RCsearch(const string& pattern , const string& txt, int q = 100003){ int M = pattern.size(), N = txt.size(); int p = 0; // hash value for pattern int t = 0; // hash value for txt int h = 1; for (int i = 0; i This is a hashing function for quickly finding partial strings. You can modify it appr.. 2025. 9. 16.
"Combinations: choosing m elements from a total of n elements" ◈It's a very simple, yet sometimes oddly missed, implementation of combinatorics. ◈ From a total number of n elements, go forward toPick all the ways to pick an element, the pick() function. ◈This is a very important piece of code that underlies all simulation and implementation issues: Combinations: pick m elements out of n elements 2025. 7. 4.
Visual Studio Online Review 2 (Live Share) Visual Studio Codespace collaboration featuresHow to use1. install Azure Account 2. Install the Live Share Extension ▶Live Sharing Extensions ▶ Live Shared Whiteboard ▶ Reload after installation 3. Start ▶Collaborative sessions can be started by starting a collaboration session, where a session is created and joined by sharing a URL or sending an invitation. ▶ Read-only sessions are rea.. 2025. 5. 31.