Block a user
Digital notes about 4th course of IT Automation with Python on Coursera created by Google
Updated 2025-05-20 21:40:34 +00:00
Updated 2025-03-29 19:20:56 +00:00
Updated 2025-03-28 20:20:50 +00:00
LeetCode-1.Two_Sum_via_CPP
Template
Updated 2025-03-28 20:05:23 +00:00
Digital notes about 3rd course of IT Automation with Python on Coursera created by Google
Updated 2025-03-08 11:28:14 +00:00
This repository started out as a learning in public project for myself and has now become a structured learning map for many in the community. We have 3 years under our belt covering all things DevOps, including Principles, Processes, Tooling and Use Cases surrounding this vast topic.
Updated 2025-02-12 20:49:14 +00:00
2nd course
Updated 2025-02-02 19:24:39 +00:00
Updated 2024-12-22 20:19:56 +00:00
Sha256EncryptionInCpp
Template
Sha256 encryption program written in C++. This C++ program is designed to compute the SHA-256 hash of a user-provided string. Here's a breakdown of how it works:
Prompts the user to enter a string.
Reads the input string from the standard input (using getline).
Calls the SHA256 function with the user-provided string and prints the resulting SHA-256 hash.
Usage example: cd "/VSCodeLibrary/C++/" && g++ Encryption.cpp -o Encryption -lssl -lcrypto && "/VSCodeLibrary/C++/"Encryption Enter a string to encrypt:
Updated 2024-12-13 07:44:18 +00:00
The RegistryCRUD.cpp program demonstrates how to perform basic operations on the Windows Registry using the native API.
The program performs the following CRUD (Create, Read, Update, Delete) operations on a registry key:
1. Open Key: It opens a registry key for the current user's application settings.
2. Create Value: It creates a new registry value with the name "MySetting" and sets its data to "MyValue".
3. Read Value: It reads the value of "MySetting" from the registry and prints it.
4. Modify Value: It modifies the value of "MySetting" to "MyNewValue".
5. Delete Value: It deletes the value of "MySetting" from the registry.
Updated 2024-12-13 07:37:07 +00:00
Updated 2024-10-08 21:56:37 +00:00