Hello
After a full year of work i’ve finally completed a 3 digit system. I’ve tried not to make it to personal, using only the most legendary characters so that everyone can make use of it. If you see oddities keep in mind that i tried to fit in every good image i have.
System used:
0 S,Z,X
1 T,D
2 N
3 M
4 R
5 L
6 J, soft C,G
7 K,Q, hard C,G
8 F,V
9 P,B
free H,Y,W,A,E,I,O,U
This is pretty much the standard phonetic system, due to differences in italian/english pronunciation i didn’t rely on SH as 6.
Python regex search script:
import re
# Define your regex pattern
pattern = re.compile(r'^[aewhyiou]*d[daeihwyou]*l[laehiwyou]*v[vaehiwyou]*[a-zA-Z]+', re.IGNORECASE)
# Open and iterate over multiple text files
file_paths = ['1.txt', '2.txt','3.txt','4.txt','5.txt','6.txt']
for file_path in file_paths:
with open(file_path, 'r') as file:
for line in file:
matches = re.findall(pattern, line)
for match in matches:
print(match)
Simple tutorial to run this script using python:
Copy the code in an empty document, rename it something.py and place it in a new folder together with a dictionary in .txt format (you can find these online). Match the names of the dictionary .txt files with the ones in the script for example 1.txt 2.txt
Manually edit the regex search to your preferences editing the letters you want to scan: [aewhyiou]*d[daeihwyou]*l[laehiwyou]*v[vaehiwyou]
This for example will scan for d l v followed or preceded by the letters inside brackets [ ]
Open terminal in the folder and run the script with: python3 something.py | less
Running without | less won’t output all the words according to your terminal settings.
Resources used:
https://forum.artofmemory.com/t/1000-object-community/
https://forum.artofmemory.com/t/1000-words-from-3nrd-major-system
https://forum.artofmemory.com/t/post-your-0-99-list-here-for-other-people-to-use-feel-free-to-add
https://forum.artofmemory.com/t/ressources-pour-construire-son-major-system-en-francais
https://forum.artofmemory.com/t/1000-images-major-system-for-000-to-999-nouns-actions-adjectives
https://forum.artofmemory.com/t/000-999-major-system-collaboration
https://artofmemory.com/wiki/Major_System_Image_Database/


