a NON linear C by C.
typically I export all required variables. will list all vars and set tool resource list in near future.
Thank you,
| #!/bin/bash | |
| # free time plus a need to build a screensaver in bash, enjoy the cascade. | |
| # ps. the key to this is the "eval" function. | |
| # - gary | |
| # clear the screen and hide the cursor | |
| echo -e "\033[2J\033[?25l" | |
| # get the number of lines and columns of the terminal | |
| R=$(tput lines) |
| def hilbert_sort(data): | |
| """ | |
| Sorts an input array using Hilbert curve mapping. | |
| Parameters: | |
| data (list): The input array to be sorted. | |
| Returns: | |
| sorted_data (list): The sorted input array. | |
| """ |
| ## an attempt to listen to keypresses and monitor window focus | |
| import time | |
| import random | |
| import re | |
| import sys | |
| import enum | |
| import six | |
| from six.moves import queue |
| Security + | |
| Spam filter | |
| - Spam defined. | |
| - in most cases, spam is defined as unsolicited bulk email(ube), or junk email. The spammer is hoping that the recipient will buy a product or service. | |
| - Filters for spam |
| SIMPLE NOW | |
| Security and Risk Management | |
| The CIA Triad: | |
| - Confidentialility | |
| - no unauthorized person can access (password protect) | |
| - Integrity | |
| - encryption of data |
| #include <iostream> | |
| #include <complex> | |
| #define MAX 200 | |
| using namespace std; | |
| #define M_PI 3.1415926535897932384 | |
| int log2(int N) /*function to calculate the log2(.) of int numbers*/ | |
| { |