Posts

Showing posts from January, 2023

C++ - Traverse through map associate container | multimap | insert_or_assign | maxValuePair1 | pair

Image
 Note: I would appreciate your support of this blog by going to the link below to "Buy me a pizza" so that I may continue to provide educational scripts, resources and general tech stuff. 🍕 Thank you. https://www.buymeacoffee.com/infosec_coder ----------------------------------------------------------------------------------------- This program was created using Visual Studio for the IDE. ===================================================== Screenshot I  Screenshot II =====================================================  S O U R C E     C O D E  NOTE:   (Desktop users): To view the sections below clearly > right click > Open image in new tab. > Should give a crosshair "+" symbol > Click on that and it will zoom in on the image. OR Left click on the image. > Will open image on page. > use CTRL + scroll up or down (on mouse) to zoom in. Source Code - Lines 1- 23 Source Code - Lines 24 - 43 Source Code - Lines 44 - 60 Source Code - Lines 61 - 77 So

2023: Python - Palindrome Checker

Image
 Note: I would appreciate your support of this blog by going to the link below to "Buy me a pizza" so that I may continue to provide educational scripts, resources and general tech stuff. 🍕 Thank you. https://www.buymeacoffee.com/infosec_coder ===================================================== This was made in Visual Studio Code within a virtual environment. The most important commands in working with your virtual environment are: 1. Create your virtual environment > py -m venv env 2. Activate your virtual environment > env\Scripts\activate ** It's also a good idea to update pip using the following command: > py -m pip install --upgrade pip 3. Go to View > select Command Palette > Select Python Interpreter > (env:venv) 4. Run your application > py main.py ===================================================== Screenshot I Screenshot II Screenshot III =====================================================  S O U R C E     C O D E  NOTE:  (Desktop use