-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Add feng shui based satoshi numeric luck score #4357
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
|
Bro |
|
LGTM |
|
Systemic lens needed |
|
Casey: I think this is very interesting topic but the code is still a bit oversimplified, if it just counting the lucky value of 8s and 4s. For example, a sat number like 8888844444 is obviously a great and lucky number, but its lucky value is only 0. There are many ways to play with the lucky value of numbers, but it seems there aren’t many that achieve widespread consensus. For instance, one method is to add up all the digits of a sat number, repeating the process until you get a single digit. Take 88884444: the calculation would be 8+8+8+8+4+4+4+4=48, then 4+8=12, and finally 1+2=3. Another approach involves combinations with Chinese phonetic associations, like 520 1314 etc. In China, phone numbers with lucky digits are often considered special and can be sold at a higher price or even auctioned off. It’s definitely a fascinating topic. |
This is really good feedback. So the presence of a run of 4s doesn't reduce the luckiness? What about this number: 4444488888 Lucky or unlucky? We could weight the luck value of a digit by its position in the number.
This wouldn't be great, since it would mean that every sat would have one of ten luck values, which is boring.
This is good, but too subjective, since you would have to come up with a list of phonetic associations which would change over time. |
Yeah , the position of digit matters.I'm trying to rank the luck values of permutations of three 8s and three 4s. There are 20 different combinations in total, and based on my intuition, the top lucky numbers can be. Number Ranks Type 844488 Based on observing the intuitive ranking, the following simple rules may be summarized: In terms of the order of number permutations, it seems: AAABBB type > ABABAB type > special meaning (8848) > other miscellaneous permutations. Certain special number combinations (e.g., 8848) may be ranked higher due to cultural or symbolic significance.
|
|
A sample RUST code after 30 minutes discussion with GROK ,seems good to my understanding. ================================================================================= use regex::Regex; // Evaluates the lucky value of a number string based on Chinese cultural rules } fn main() { |
Check dis https://x.com/i/grok/share/da3qzHWuYHxkYABZt9BbeZZxy 😊 |

This is just a draft PR. I'd like to make this more comprehensive:
Sources: