diff --git a/Electronic_Labnotebook/NotebookLog.md b/Electronic_Labnotebook/NotebookLog.md
index 4822c0275a44f77987fac543205895846c33b9cd..509292b020b977b17bf51c11c30df1a32e8bea8a 100644
--- a/Electronic_Labnotebook/NotebookLog.md
+++ b/Electronic_Labnotebook/NotebookLog.md
@@ -8,10 +8,15 @@
   <summary> Table of Contents (click to expand) </summary>
 
 - [Entries 2025](#entries-2025)
-  - [2025-02-01](#2025-02-01)
+  - [2025-01-22 Meeting with David (EditExps and more):](#2025-01-22-meeting-with-david-editexps-and-more)
+  - [2025-01-14:](#2025-01-14)
+    - [Entry 1: HPLC Dilution, EditParameterMap():](#entry-1-hplc-dilution-editparametermap)
+  - [2025-01-07:](#2025-01-07)
+    - [Entry 1: HPLC Dilution assay \& EditExps RunExp feature](#entry-1-hplc-dilution-assay--editexps-runexp-feature)
+  - [2025-01-02](#2025-01-02)
     - [Entry 1: HPLC dilution assay](#entry-1-hplc-dilution-assay)
 - [Entries 2024](#entries-2024)
-  - [2024-31-12](#2024-31-12)
+  - [2024-12-31](#2024-12-31)
     - [Entry 1: Dictionary](#entry-1-dictionary)
   - [2024-12-12](#2024-12-12)
     - [Entry 1: Infrastructure/architecture](#entry-1-infrastructurearchitecture)
@@ -54,7 +59,40 @@
 
 ## Entries 2025
 
-### 2025-02-01
+### 2025-01-22 Meeting with David (EditExps and more):
+
+* from pathlib import path, os.path, suffix(file), <-- (xml)
+* See if all relevant information can be retrieved through designID, try and hide LS10 specifics as much as possible from Layer1, use EditExps to retrieve this inform
+* minimizing the architecture dependecies/redundancies. for example: if sys.arch =="64": import foo_64 as foo, else: import foo_32 as foo
+
+### 2025-01-14:
+
+#### Entry 1: HPLC Dilution, EditParameterMap():
+
+* Tried to update existing map, but EditParameterMap gives an error: 
+
+```
+PythonException: System.Collections.Generic.List`1[System.Double] value cannot be converted to System.Collections.Generic.List`1[System.Object]
+```
+Seems like this stems from taht the function utils.AmountForDiscrete() does not output the right format for this function, while it does work for other functions, such as EditSourceMap(). Sent an email to Bjorn, hoping to clarify this. 
+
+
+### 2025-01-07:
+
+#### Entry 1: HPLC Dilution assay & EditExps RunExp feature
+
+* EditExps can now both update liquid dispensing maps **and** start running an experiment:
+  ```mermaid
+  flowchart TD;
+    Layer1-->|FunctionName </br> which function from ls10 to execute |EE{EditExps}
+    EE-->|FunctionName: e.g. 'EditArrayMapDiscrete'|EM[Edit dispense maps in experiment in LS10]
+    EE-->|FunctionName: e.g. 'EditParameterMap'|EP[Edit parameters for experiments in LS10]
+    EE-->|FunctionName: e.g. 'RunExperiment'|RE[Run Experiment in AS10]
+  ```
+  This means now that only one script is necessary to be used for editing liquid maps **and** running experiments, with added flexibility.
+* EditExps also includes now a feature which autogenerates a promptfile from a chemical manager file.
+
+### 2025-01-02
 
 #### Entry 1: HPLC dilution assay
 
@@ -64,7 +102,7 @@ Further adaptations made to EditExps so that it can also run experiment - idea i
 
 ## Entries 2024
 
-### 2024-31-12
+### 2024-12-31
 
 #### Entry 1: Dictionary