From fd1ff0a421caf2aaa5aef3b73a291adf4688c5b3 Mon Sep 17 00:00:00 2001 From: Miguel Date: Mon, 11 Aug 2025 15:57:36 +0200 Subject: [PATCH] =?UTF-8?q?Actualizaci=C3=B3n=20del=20archivo=20de=20histo?= =?UTF-8?q?rial=20con=20nuevos=20totales=20y=20conteos=20para=20las=20mate?= =?UTF-8?q?rias=20de=20Italiano,=20Matem=C3=A1tica,=20Matem=C3=A1tica=20Li?= =?UTF-8?q?bro=20e=20Ingl=C3=A9s.=20Se=20a=C3=B1ade=20la=20secci=C3=B3n=20?= =?UTF-8?q?de=20Detective=20ITA=20y=20se=20implementa=20el=20c=C3=A1lculo?= =?UTF-8?q?=20de=20d=C3=ADas=20pasados=20y=20faltantes.=20Se=20mejora=20el?= =?UTF-8?q?=20resumen=20de=20totales=20y=20se=20a=C3=B1ade=20el=20c=C3=A1l?= =?UTF-8?q?culo=20del=20porcentaje=20de=20avance.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .cursor/rules/reglas.mdc | 6 +++ .data/history.txt | 50 +++++++++++-------- .../{DESCRIPTION.md => MemoriaDeEvolucion.md} | 0 3 files changed, 36 insertions(+), 20 deletions(-) create mode 100644 .cursor/rules/reglas.mdc rename .doc/{DESCRIPTION.md => MemoriaDeEvolucion.md} (100%) diff --git a/.cursor/rules/reglas.mdc b/.cursor/rules/reglas.mdc new file mode 100644 index 0000000..7679287 --- /dev/null +++ b/.cursor/rules/reglas.mdc @@ -0,0 +1,6 @@ +--- +alwaysApply: true +--- +Use MemoriaDeEvolucion.md in the .doc folder to access the latest modifications and concepts for this project. For each modification, add the important knowledge and decisions to the file, keeping the style simple with plain text, minimal code, and summarized content. Also, include a summarized version of the user's prompt each time to maintain context of the request. + +The aplication comments and variables must be in english. \ No newline at end of file diff --git a/.data/history.txt b/.data/history.txt index c3e68d6..3628246 100644 --- a/.data/history.txt +++ b/.data/history.txt @@ -1,31 +1,43 @@ # Italiano -faltan_italiano = 51 -hechas_italiano = 21 -total_italiano = faltan_italiano+hechas_italiano +total_italiano = 72 +hechas_italiano = 29 +faltan_italiano = total_italiano - hechas_italiano # Matematica -faltan_mate = 59 -hechas_mate = 6 -total_mate = faltan_mate+hechas_mate +total_mate = 40 +hechas_mate = 8 +faltan_mate = total_mate - hechas_mate # Matematica Libro -faltan_mate2 = 25 -hechas_mate2 = 0 -total__mate2 = hechas_mate2+faltan_mate2 +total__mate2 = 26 +hechas_mate2 = 12 +faltan_mate2 = total__mate2 - hechas_mate2 # Ingles -faltan_english = 48 -hechas_english = 3 -total__english = hechas_english + faltan_english +total__english = 48 +hechas_english = 35 +faltan_english = total__english - hechas_english -# Resumen -total = total_italiano+total_mate+total__mate2+total__english -hecho = hechas_italiano + hechas_mate + hechas_mate2 + hechas_english -faltan = total - hecho + +# Detective ITA +total__detective_ita = 52 +hechas_detective_ita = 52 +faltan_detective_ita = total__detective_ita - hechas_detective_ita # Estado actual de dias -dias_pasados = 28-6 -dias_faltan = 31+31+14+2 +dias_pasados = Today()-Date('06/06/25') +dias_faltan = Date('14/9/2025')-Today() +dias_totales = Date('14/9/2025')-Date('06/06/25') + +# Resumen +total = total_italiano+total_mate+total__mate2+total__english + total__detective_ita +hecho = hechas_italiano + hechas_mate + hechas_mate2 + hechas_english + hechas_detective_ita +faltan = total - hecho +porcentaje_hecho = (hecho/total)*100 + +# Porcentaje de Vaciones ya pasada +100*dias_pasados/dias_totales + # Promedio actual hecho/dias_pasados @@ -33,7 +45,5 @@ hecho/dias_pasados # Minimo para terminar hacer_por_dia = faltan/dias_faltan -# Minimo para terminar -promedio_ideal = total/(dias_pasados+dias_faltan) diff --git a/.doc/DESCRIPTION.md b/.doc/MemoriaDeEvolucion.md similarity index 100% rename from .doc/DESCRIPTION.md rename to .doc/MemoriaDeEvolucion.md