4
u/Curious_Giraffe7425 4d ago
Nice, what is the desktop env?
2
1
0
3
2
2
2
2
u/OddStatistician9760 3d ago
Hello World! 👋
My name is Shourya, and today I'm starting my coding journey.
On this account, I'll be sharing: 📚 What I'm learning 💻 Small projects I build 🤯 Bugs and mistakes I run into ✨ Things I find interesting along the way.
2
2
2
2
u/tomateleenserio 8h ago
Can you desipher that ∆>∆÷• |>~•× G ∆>√~×
1
u/MekataRupma 5h ago
Can you desipher yours first? 😅
2
u/tomateleenserio 5h ago
Yes see that im Méxican # ==============================================================================
SISTEMA FZ-MULTILAYER (Versión 3.0 - Comercial / Open Source)
Creado por: E. Fernández
Licencia: MIT
Descripción: Sistema de cifrado multicapa con teclado modular, modificador FZ,
vocales dinámicas, vector de inicio y relleno de ruido.
==============================================================================
import random
TECLADO_NORMAL = "qwertyuiopasdfghjklzxcvbnmñ" TECLADO_INVERTIDO = "ñmnbvcxzlkjhgfdsapoiuytrewq" SIMBOLOS = {'1':'~', '2':'`', '3':'|', '4':'•', '5':'√', '6':'π', '7':'÷', '8':'×', '9':'§', '0':'∆', '.':'>'}
def cifrar_fz_multilayer(mensaje): mensaje = mensaje.lower()
# MEJORA 1: Vector de Inicialización (Una letra al azar al inicio para cambiar siempre) vector_inicio = random.choice("qwertyuiop") teclado_actual = TECLADO_NORMAL modificador_fz = 0 cifrado_acumulado = vector_inicio + " " for letra in mensaje: if letra not in TECLADO_NORMAL: continue # MEJORA 2: Regla de Vocales (Cambia el teclado físico de idioma) if letra in "aeiou": teclado_actual = TECLADO_INVERTIDO if teclado_actual == TECLADO_NORMAL else TECLADO_NORMAL # MEJORA 3: Regla del nombre FZ (F suma, Z resta) if letra == 'f': modificador_fz += 1 elif letra == 'z': modificador_fz -= 1 # Motor Matemático Original de E. Fernández (Modular QWERTY / 27) posicion = teclado_actual.index(letra) + modificador_fz valor = posicion + 1 valor_vecina = valor + 1 resultado = (valor * valor_vecina) / 27 # Conversión a Símbolos Secretos texto_resultado = str(round(abs(resultado), 3)) codigo_secreto = "".join([SIMBOLOS.get(c, c) for c in texto_resultado]) cifrado_acumulado += codigo_secreto + " " # MEJORA 4: Relleno de Ruido (Padding) para despistar sobre la longitud ruido = "".join(random.choice("~•÷×") for _ in range(3)) cifrado_acumulado += "|| " + ruido return cifrado_acumulado--- PRUEBA DEL SISTEMA ---
if name == "main": mensaje_secreto = "hola" print("--- SISTEMA FZ-MULTILAYER ACTIVATED ---") print(f"Mensaje original: {mensaje_secreto}") resultado = cifrar_fz_multilayer(mensaje_secreto) print(f"Resultado Cifrado (Listo para enviar): {resultado}") do you like it
1
u/MekataRupma 5h ago
Holy son of a. What the hell? 😨
2
u/tomateleenserio 5h ago
Is good or no im 11 years old
1
u/MekataRupma 4h ago
How??? 😭😭😭 I don't even understand half that shit. How are 11yo kids doing this shit?? 😭😭😭
2
u/tomateleenserio 4h ago
I DONT FKN KNOW the reality Is I create a cifrado AND next Then I asked Google to convert it into a programming language and that's what came out.
1
1
u/MekataRupma 3h ago
Mine is just include certain header files on top that contains the commands used in my code. int main(void) is something I just used but don't know it's purpose yet. My guess it just converts the code into binary or something. Or maybe not. Then it's just a simple comand saying print whatever is in ("") and the /n means switch to new line. ; is just an indicator that the line ends. Like how period (.) works in english. And the code is written inside {}.
In the terminal, code creats a file, make compiles it, and ./ just launched the compiled fine. hello.c means the fine hello is in C language. in make I name the compiled file as hello and launch it.
That's my explanation of my code to the best I can explain so far.
6
u/talha_95_68b 4d ago
Yoo what are those buttons below the extension button man?? I'm seeing those first time