diff --git a/change_time campare.py b/change_time campare.py index 974cf4522..96cb91601 100644 --- a/change_time campare.py +++ b/change_time campare.py @@ -4,8 +4,11 @@ from git import Repo if __name__ == '__main__': - content_path = os.path.join(os.path.dirname(__file__)) - prefix_path = os.path.join(content_path, "content") + content_path = r"C:\Users\83549\Documents\github_proj\content" + prefix_path = os.path.join(os.path.dirname(__file__), 'content') + + file_path_list = [] + date_list = [] for root, dirs, files in os.walk(content_path): for file in files: @@ -15,23 +18,57 @@ if __name__ == '__main__': # ignore bug and continue running - try: + - if file.endswith(".md"): + if file.endswith(".md"): + file_path = os.path.join(root, file) + repo = Repo(content_path) + file_path = os.path.relpath(file_path, repo.working_dir) + commit = repo.iter_commits(paths=file_path, max_count=1).__next__() + # print(f"{file_path} - {str(commit.committed_datetime).split(' ')[0]}") + + file_path = file_path.replace('文学', 'literature') + file_path = file_path.replace('句子', 'sentence') + + # check if path exists, no matter capital or not + + file_path_list.append(os.path.join(prefix_path, file_path).lower()) + date_list.append(str(commit.committed_datetime).split(' ')[0]) + + # print(file_path_list[-1]) + + + for root, dirs, files in os.walk(prefix_path): + for file in files: + + if '.' in root: + continue + + if file.endswith(".md"): + + check_path = os.path.join(root, file) + check_path = check_path.lower() + + if check_path in file_path_list: + index = file_path_list.index(check_path) file_path = os.path.join(root, file) - repo = Repo(content_path) - file_path = os.path.relpath(file_path, repo.working_dir) - commit = repo.iter_commits(paths=file_path, max_count=1).__next__() - # print(f"{file_path} - {str(commit.committed_datetime).split(' ')[0]}") + date = date_list[index] - # check if path exists, no matter capital or not - print(os.path.join(prefix_path, file_path)) + # open file and write date into it + f = open(file_path, 'r', encoding="utf-8") + + lines = f.readlines() + for i in range(0, len(lines)): + if lines[i].startswith("date:") == True: + lines[i] = f"date: {date}\n" - + f.close() - except: - # output error message - print(f"Error: {file_path}") - pass - continue \ No newline at end of file + f = open(file_path, 'w', encoding="utf-8") + f.writelines(lines) + f.close() + + print(f"{file_path} - {date}") + + \ No newline at end of file diff --git a/content/_index.md b/content/_index.md index c8dfeff34..adba6c9ef 100644 --- a/content/_index.md +++ b/content/_index.md @@ -3,7 +3,7 @@ title: Home tags: - catalog - MOC -date: 2023-09-13 +date: 2023-09-19 --- 🕵️‍♂️ This is Jude Wang's vault about his notebook, his knowledge, his second brain. diff --git a/content/atlas.md b/content/atlas.md index fc2d50fd1..1cbc13e92 100644 --- a/content/atlas.md +++ b/content/atlas.md @@ -2,7 +2,7 @@ title: Atlas - Map of Maps tags: - MOC -date: 2023-03-16 +date: 2024-02-28 --- 🚧 There are notebooks about his research career: diff --git a/content/computer_sci/code_frame_learn/MOC.md b/content/computer_sci/code_frame_learn/MOC.md index ebc42224e..80cc82a83 100644 --- a/content/computer_sci/code_frame_learn/MOC.md +++ b/content/computer_sci/code_frame_learn/MOC.md @@ -3,7 +3,7 @@ title: Code Framework Learn tags: - web - code_tool -date: 2023-06-06 +date: 2023-12-03 --- # Web Framework diff --git a/content/computer_sci/code_frame_learn/flask/MOC.md b/content/computer_sci/code_frame_learn/flask/MOC.md index 941f23991..734a5c4a8 100644 --- a/content/computer_sci/code_frame_learn/flask/MOC.md +++ b/content/computer_sci/code_frame_learn/flask/MOC.md @@ -1,4 +1,4 @@ --- title: Flask - MOC -date: 2023-06-06 +date: 2023-12-03 --- diff --git a/content/computer_sci/coding_knowledge/coding_lang_MOC.md b/content/computer_sci/coding_knowledge/coding_lang_MOC.md index bf89dc2ad..2d44136e3 100644 --- a/content/computer_sci/coding_knowledge/coding_lang_MOC.md +++ b/content/computer_sci/coding_knowledge/coding_lang_MOC.md @@ -4,7 +4,7 @@ tags: - basic - coding-language - MOC -date: 2023-06-06 +date: 2023-09-04 --- # Python diff --git a/content/computer_sci/coding_knowledge/python/python_doesnt_need_pointer.md b/content/computer_sci/coding_knowledge/python/python_doesnt_need_pointer.md index e67a0e170..d735fec89 100644 --- a/content/computer_sci/coding_knowledge/python/python_doesnt_need_pointer.md +++ b/content/computer_sci/coding_knowledge/python/python_doesnt_need_pointer.md @@ -4,7 +4,7 @@ tags: - python - coding-language - basic -date: 2023-06-06 +date: 2023-09-04 --- diff --git a/content/computer_sci/computational_geometry/MOC.md b/content/computer_sci/computational_geometry/MOC.md index 936981479..ab9fd83a7 100644 --- a/content/computer_sci/computational_geometry/MOC.md +++ b/content/computer_sci/computational_geometry/MOC.md @@ -4,7 +4,7 @@ tags: - math - MOC - geometry -date: 2024-02-28 +date: 2024-02-27 --- # 3D Geometry Algorithm diff --git a/content/computer_sci/computational_geometry/delaunay_triangulation.md b/content/computer_sci/computational_geometry/delaunay_triangulation.md index b25f07e92..4a5e2ba89 100644 --- a/content/computer_sci/computational_geometry/delaunay_triangulation.md +++ b/content/computer_sci/computational_geometry/delaunay_triangulation.md @@ -3,7 +3,7 @@ title: Delaunay Triangulation tags: - math - geometry -date: 2024-02-28 +date: 2023-09-04 --- # What is Delaunay Triangulation? diff --git a/content/computer_sci/data_structure_and_algorithm/MOC.md b/content/computer_sci/data_structure_and_algorithm/MOC.md index c825c268b..ca889a56d 100644 --- a/content/computer_sci/data_structure_and_algorithm/MOC.md +++ b/content/computer_sci/data_structure_and_algorithm/MOC.md @@ -4,7 +4,7 @@ tags: - MOC - algorithm - data-structure -date: 2024-02-28 +date: 2023-09-15 --- # Tree-like Structure diff --git a/content/computer_sci/data_structure_and_algorithm/graph/BFS.md b/content/computer_sci/data_structure_and_algorithm/graph/BFS.md index b8abc0b6c..1ab83106a 100644 --- a/content/computer_sci/data_structure_and_algorithm/graph/BFS.md +++ b/content/computer_sci/data_structure_and_algorithm/graph/BFS.md @@ -4,7 +4,7 @@ tags: - data-structure - basic - algorithm -date: 2024-02-28 +date: 2023-09-04 --- # Basic Concept diff --git a/content/computer_sci/data_structure_and_algorithm/graph/MST.md b/content/computer_sci/data_structure_and_algorithm/graph/MST.md index 7a0bb7acf..3a4fc6b9e 100644 --- a/content/computer_sci/data_structure_and_algorithm/graph/MST.md +++ b/content/computer_sci/data_structure_and_algorithm/graph/MST.md @@ -3,6 +3,6 @@ title: Minimum Spanning Tree tags: - data-structure - graph -date: 2024-02-28 +date: 2023-09-15 --- Not now... \ No newline at end of file diff --git a/content/computer_sci/data_structure_and_algorithm/graph/spanning_tree.md b/content/computer_sci/data_structure_and_algorithm/graph/spanning_tree.md index 23ba65038..0415f55fa 100644 --- a/content/computer_sci/data_structure_and_algorithm/graph/spanning_tree.md +++ b/content/computer_sci/data_structure_and_algorithm/graph/spanning_tree.md @@ -3,7 +3,7 @@ title: Spanning Tree tags: - graph - data-structure -date: 2024-02-28 +date: 2023-09-19 --- # What is Spanning Tree? diff --git a/content/computer_sci/data_structure_and_algorithm/graph/topological_sorting.md b/content/computer_sci/data_structure_and_algorithm/graph/topological_sorting.md index 8f8e5921d..4004fea3f 100644 --- a/content/computer_sci/data_structure_and_algorithm/graph/topological_sorting.md +++ b/content/computer_sci/data_structure_and_algorithm/graph/topological_sorting.md @@ -3,7 +3,7 @@ title: Topological Sorting tags: - data-structure - graph -date: 2024-02-28 +date: 2023-09-14 --- # What is Topological Sorting diff --git a/content/computer_sci/data_structure_and_algorithm/string/KMP.md b/content/computer_sci/data_structure_and_algorithm/string/KMP.md index 21c058e3e..7f763a579 100644 --- a/content/computer_sci/data_structure_and_algorithm/string/KMP.md +++ b/content/computer_sci/data_structure_and_algorithm/string/KMP.md @@ -4,7 +4,7 @@ tags: - algorithm - string - string-search -date: 2024-02-28 +date: 2024-01-25 --- # Abstract diff --git a/content/computer_sci/data_structure_and_algorithm/tree/fenwick_tree.md b/content/computer_sci/data_structure_and_algorithm/tree/fenwick_tree.md index e5d21b8bd..116dbf80f 100644 --- a/content/computer_sci/data_structure_and_algorithm/tree/fenwick_tree.md +++ b/content/computer_sci/data_structure_and_algorithm/tree/fenwick_tree.md @@ -4,7 +4,7 @@ tags: - data-structure - basic - algorithm -date: 2024-02-28 +date: 2023-09-04 --- diff --git a/content/computer_sci/data_structure_and_algorithm/tree/segment_tree.md b/content/computer_sci/data_structure_and_algorithm/tree/segment_tree.md index b96267802..269df44be 100644 --- a/content/computer_sci/data_structure_and_algorithm/tree/segment_tree.md +++ b/content/computer_sci/data_structure_and_algorithm/tree/segment_tree.md @@ -3,7 +3,7 @@ title: Segment Tree tags: - data-structure - tree -date: 2024-02-28 +date: 2023-09-13 --- # Overview diff --git a/content/computer_sci/data_structure_and_algorithm/two_pointers.md b/content/computer_sci/data_structure_and_algorithm/two_pointers.md index 50c063127..96ee3bd0c 100644 --- a/content/computer_sci/data_structure_and_algorithm/two_pointers.md +++ b/content/computer_sci/data_structure_and_algorithm/two_pointers.md @@ -3,6 +3,6 @@ title: Two Pointers tags: - algorithm - pointer -date: 2024-02-28 +date: 2024-01-17 --- diff --git a/content/computer_sci/deep_learning_and_machine_learning/Evaluation/model_evaluation_MOC.md b/content/computer_sci/deep_learning_and_machine_learning/Evaluation/model_evaluation_MOC.md index 87c574b45..1d28bee1e 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/Evaluation/model_evaluation_MOC.md +++ b/content/computer_sci/deep_learning_and_machine_learning/Evaluation/model_evaluation_MOC.md @@ -3,7 +3,7 @@ title: Model Evaluation - MOC tags: - deep-learning - evaluation -date: 2024-02-28 +date: 2024-01-17 --- * [Model Evaluation in Time Series Forecasting](computer_sci/deep_learning_and_machine_learning/Evaluation/time_series_forecasting.md) \ No newline at end of file diff --git a/content/computer_sci/deep_learning_and_machine_learning/Evaluation/time_series_forecasting.md b/content/computer_sci/deep_learning_and_machine_learning/Evaluation/time_series_forecasting.md index 6515a12b0..12e2c29d1 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/Evaluation/time_series_forecasting.md +++ b/content/computer_sci/deep_learning_and_machine_learning/Evaluation/time_series_forecasting.md @@ -4,7 +4,7 @@ tags: - deep-learning - evaluation - time-series-dealing -date: 2024-02-28 +date: 2024-01-17 --- ![](computer_sci/deep_learning_and_machine_learning/Evaluation/attachments/Pasted%20image%2020230526162839.png) diff --git a/content/computer_sci/deep_learning_and_machine_learning/Famous_Model/DeepAR.md b/content/computer_sci/deep_learning_and_machine_learning/Famous_Model/DeepAR.md index 7a579034c..47ef703a5 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/Famous_Model/DeepAR.md +++ b/content/computer_sci/deep_learning_and_machine_learning/Famous_Model/DeepAR.md @@ -4,7 +4,7 @@ tags: - deep-learning - model - time-series-dealing -date: 2024-02-28 +date: 2024-01-17 --- DeepAR, an autoregressive recurrent network developed by Amazon, is the first model that could natively work on multiple time-series. It's a milestone in time-series community. diff --git a/content/computer_sci/deep_learning_and_machine_learning/Famous_Model/Famous_Model_MOC.md b/content/computer_sci/deep_learning_and_machine_learning/Famous_Model/Famous_Model_MOC.md index c01e3ca60..c58c0e074 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/Famous_Model/Famous_Model_MOC.md +++ b/content/computer_sci/deep_learning_and_machine_learning/Famous_Model/Famous_Model_MOC.md @@ -3,7 +3,7 @@ title: Famous Model MOC tags: - deep-learning - MOC -date: 2024-02-28 +date: 2024-01-17 --- # Time-series diff --git a/content/computer_sci/deep_learning_and_machine_learning/Famous_Model/Temporal_Fusion_Transformer.md b/content/computer_sci/deep_learning_and_machine_learning/Famous_Model/Temporal_Fusion_Transformer.md index 349b0bf47..9b251fcdf 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/Famous_Model/Temporal_Fusion_Transformer.md +++ b/content/computer_sci/deep_learning_and_machine_learning/Famous_Model/Temporal_Fusion_Transformer.md @@ -4,6 +4,6 @@ tags: - deep-learning - model - time-series-dealing -date: 2024-02-28 +date: 2023-09-04 --- diff --git a/content/computer_sci/deep_learning_and_machine_learning/LLM/LLM_MOC.md b/content/computer_sci/deep_learning_and_machine_learning/LLM/LLM_MOC.md index d3ce0e878..109639be1 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/LLM/LLM_MOC.md +++ b/content/computer_sci/deep_learning_and_machine_learning/LLM/LLM_MOC.md @@ -4,7 +4,7 @@ tags: - deep-learning - LLM - NLP -date: 2024-02-28 +date: 2024-01-17 --- # Training diff --git a/content/computer_sci/deep_learning_and_machine_learning/LLM/basic/llm_hyperparameter.md b/content/computer_sci/deep_learning_and_machine_learning/LLM/basic/llm_hyperparameter.md index 91be21a9c..b402ee923 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/LLM/basic/llm_hyperparameter.md +++ b/content/computer_sci/deep_learning_and_machine_learning/LLM/basic/llm_hyperparameter.md @@ -5,7 +5,7 @@ tags: - LLM - deep-learning - basic -date: 2024-02-28 +date: 2024-01-17 --- # LLM Temperature diff --git a/content/computer_sci/deep_learning_and_machine_learning/LLM/langchain/langchain_basic.md b/content/computer_sci/deep_learning_and_machine_learning/LLM/langchain/langchain_basic.md index d471fdc24..205e28233 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/LLM/langchain/langchain_basic.md +++ b/content/computer_sci/deep_learning_and_machine_learning/LLM/langchain/langchain_basic.md @@ -4,7 +4,7 @@ tags: - LLM - basic - langchain -date: 2024-02-28 +date: 2024-01-17 --- # What is LangChain diff --git a/content/computer_sci/deep_learning_and_machine_learning/LLM/metircs/some_task.md b/content/computer_sci/deep_learning_and_machine_learning/LLM/metircs/some_task.md index a9ceabd76..28b735d03 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/LLM/metircs/some_task.md +++ b/content/computer_sci/deep_learning_and_machine_learning/LLM/metircs/some_task.md @@ -5,7 +5,7 @@ tags: - metircs - deep-learning - benchmark -date: 2024-02-28 +date: 2024-01-17 --- # Overview diff --git a/content/computer_sci/deep_learning_and_machine_learning/LLM/train/RLHF.md b/content/computer_sci/deep_learning_and_machine_learning/LLM/train/RLHF.md index ae23de287..9b100a419 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/LLM/train/RLHF.md +++ b/content/computer_sci/deep_learning_and_machine_learning/LLM/train/RLHF.md @@ -5,7 +5,7 @@ tags: - deep-learning - RLHF - LLM-training-method -date: 2024-02-28 +date: 2024-01-17 --- diff --git a/content/computer_sci/deep_learning_and_machine_learning/LLM/train/dataset/make_custom_dataset.md b/content/computer_sci/deep_learning_and_machine_learning/LLM/train/dataset/make_custom_dataset.md index f9be035fb..e03c1f07c 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/LLM/train/dataset/make_custom_dataset.md +++ b/content/computer_sci/deep_learning_and_machine_learning/LLM/train/dataset/make_custom_dataset.md @@ -4,6 +4,6 @@ tags: - dataset - LLM - deep-learning -date: 2024-02-28 +date: 2023-09-04 --- diff --git a/content/computer_sci/deep_learning_and_machine_learning/LLM/train/finr_tune/how_to_fine_tune.md b/content/computer_sci/deep_learning_and_machine_learning/LLM/train/finr_tune/how_to_fine_tune.md index 7b63c2f62..cdb2580c1 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/LLM/train/finr_tune/how_to_fine_tune.md +++ b/content/computer_sci/deep_learning_and_machine_learning/LLM/train/finr_tune/how_to_fine_tune.md @@ -3,6 +3,6 @@ title: How to do use fine tune tech to create your chatbot tags: - deep-learning - LLM -date: 2024-02-28 +date: 2023-09-04 --- diff --git a/content/computer_sci/deep_learning_and_machine_learning/LLM/train/finr_tune/learn_finetune_byStanfordAlpaca.md b/content/computer_sci/deep_learning_and_machine_learning/LLM/train/finr_tune/learn_finetune_byStanfordAlpaca.md index 09ff87140..95f089679 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/LLM/train/finr_tune/learn_finetune_byStanfordAlpaca.md +++ b/content/computer_sci/deep_learning_and_machine_learning/LLM/train/finr_tune/learn_finetune_byStanfordAlpaca.md @@ -5,7 +5,7 @@ tags: - LLM - fine-tune - LLaMA -date: 2024-02-28 +date: 2024-01-17 --- ![](computer_sci/deep_learning_and_machine_learning/LLM/train/finr_tune/attachments/Pasted%20image%2020230627145954.png) diff --git a/content/computer_sci/deep_learning_and_machine_learning/LLM/train/steps.md b/content/computer_sci/deep_learning_and_machine_learning/LLM/train/steps.md index 846eb7dad..897667737 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/LLM/train/steps.md +++ b/content/computer_sci/deep_learning_and_machine_learning/LLM/train/steps.md @@ -3,7 +3,7 @@ title: LLM training steps tags: - LLM - deep-learning -date: 2024-02-28 +date: 2023-09-04 --- 训练大型语言模型(LLM)的方法通常涉及以下步骤: diff --git a/content/computer_sci/deep_learning_and_machine_learning/LLM/train/train_LLM.md b/content/computer_sci/deep_learning_and_machine_learning/LLM/train/train_LLM.md index 0c33737ab..4a1307d31 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/LLM/train/train_LLM.md +++ b/content/computer_sci/deep_learning_and_machine_learning/LLM/train/train_LLM.md @@ -4,7 +4,7 @@ tags: - LLM - LLM-training-method - deep-learning -date: 2024-02-28 +date: 2024-01-17 --- # Find a dataset diff --git a/content/computer_sci/deep_learning_and_machine_learning/Model_interpretability/Model_Interpretability_MOC.md b/content/computer_sci/deep_learning_and_machine_learning/Model_interpretability/Model_Interpretability_MOC.md index 5ed80c294..83d14a36d 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/Model_interpretability/Model_Interpretability_MOC.md +++ b/content/computer_sci/deep_learning_and_machine_learning/Model_interpretability/Model_Interpretability_MOC.md @@ -4,7 +4,7 @@ tags: - MOC - deep-learning - interpretability -date: 2024-02-28 +date: 2024-01-17 --- * [SHAP](computer_sci/deep_learning_and_machine_learning/Model_interpretability/SHAP.md) diff --git a/content/computer_sci/deep_learning_and_machine_learning/Model_interpretability/SHAP.md b/content/computer_sci/deep_learning_and_machine_learning/Model_interpretability/SHAP.md index b4bde1f2e..5fb12b249 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/Model_interpretability/SHAP.md +++ b/content/computer_sci/deep_learning_and_machine_learning/Model_interpretability/SHAP.md @@ -4,7 +4,7 @@ tags: - deep-learning - interpretability - algorithm -date: 2024-02-28 +date: 2024-01-17 --- SHAP is the most popular model-agnostic technique that is used to explain predictions. SHAP stands for **SH**apley **A**dditive ex**P**lanations diff --git a/content/computer_sci/deep_learning_and_machine_learning/NLP/basic/tokenization.md b/content/computer_sci/deep_learning_and_machine_learning/NLP/basic/tokenization.md index 224255f84..112dbf914 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/NLP/basic/tokenization.md +++ b/content/computer_sci/deep_learning_and_machine_learning/NLP/basic/tokenization.md @@ -5,6 +5,6 @@ tags: - deep-learning - tokenization - basic -date: 2024-02-28 +date: 2023-09-04 --- diff --git a/content/computer_sci/deep_learning_and_machine_learning/Trick/DTW.md b/content/computer_sci/deep_learning_and_machine_learning/Trick/DTW.md index 6d1f7b345..d2246e563 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/Trick/DTW.md +++ b/content/computer_sci/deep_learning_and_machine_learning/Trick/DTW.md @@ -4,7 +4,7 @@ tags: - metrics - time-series-dealing - evalution -date: 2024-02-28 +date: 2024-01-17 --- ![](computer_sci/deep_learning_and_machine_learning/Trick/attachments/Pasted%20image%2020230526164724.png) diff --git a/content/computer_sci/deep_learning_and_machine_learning/Trick/quantile_loss.md b/content/computer_sci/deep_learning_and_machine_learning/Trick/quantile_loss.md index 51a42fa38..d30c79396 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/Trick/quantile_loss.md +++ b/content/computer_sci/deep_learning_and_machine_learning/Trick/quantile_loss.md @@ -4,7 +4,7 @@ tags: - loss-function - deep-learning - deep-learning-math -date: 2024-02-28 +date: 2024-01-17 --- 在大多数现实世界的预测问题中,我们的预测所带来的不确定性具有重要价值。相较于仅仅提供点估计,了解预测范围能够显著改善许多商业应用的决策过程。**Quantile loss**就是为例帮助我们了解预测范围的loss function。 diff --git a/content/computer_sci/deep_learning_and_machine_learning/clustering/k-means/k_means.md b/content/computer_sci/deep_learning_and_machine_learning/clustering/k-means/k_means.md index a2d63ecc1..7490bb124 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/clustering/k-means/k_means.md +++ b/content/computer_sci/deep_learning_and_machine_learning/clustering/k-means/k_means.md @@ -4,7 +4,7 @@ tags: - machine-learning - clustering - algorithm -date: 2024-02-28 +date: 2024-01-17 --- # Step by Step diff --git a/content/computer_sci/deep_learning_and_machine_learning/deep_learning/GRU.md b/content/computer_sci/deep_learning_and_machine_learning/deep_learning/GRU.md index 7f857c7dc..c9d90ea78 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/deep_learning/GRU.md +++ b/content/computer_sci/deep_learning_and_machine_learning/deep_learning/GRU.md @@ -3,6 +3,6 @@ title: Gated Recurrent Unit tags: - deep-learning - time-series-dealing -date: 2024-02-28 +date: 2023-09-07 --- diff --git a/content/computer_sci/deep_learning_and_machine_learning/deep_learning/LSTM.md b/content/computer_sci/deep_learning_and_machine_learning/deep_learning/LSTM.md index e29608ff0..e4a576128 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/deep_learning/LSTM.md +++ b/content/computer_sci/deep_learning_and_machine_learning/deep_learning/LSTM.md @@ -4,7 +4,7 @@ tags: - deep-learning - time-series-dealing - basic -date: 2024-02-28 +date: 2024-01-17 --- > [!quote] diff --git a/content/computer_sci/deep_learning_and_machine_learning/deep_learning/XGBoost.md b/content/computer_sci/deep_learning_and_machine_learning/deep_learning/XGBoost.md index fa8bbed6f..3230e9789 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/deep_learning/XGBoost.md +++ b/content/computer_sci/deep_learning_and_machine_learning/deep_learning/XGBoost.md @@ -3,7 +3,7 @@ title: XGBoost tags: - deep-learning - ensemble-learning -date: 2024-02-28 +date: 2024-01-17 --- diff --git a/content/computer_sci/deep_learning_and_machine_learning/deep_learning/adaBoost.md b/content/computer_sci/deep_learning_and_machine_learning/deep_learning/adaBoost.md index 4299c6e3d..ad3d3e2c7 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/deep_learning/adaBoost.md +++ b/content/computer_sci/deep_learning_and_machine_learning/deep_learning/adaBoost.md @@ -3,7 +3,7 @@ title: AdaBoost tags: - deep-learning - ensemble-learning -date: 2024-02-28 +date: 2023-09-07 --- # Video you need to watch first diff --git a/content/computer_sci/deep_learning_and_machine_learning/deep_learning/decision_tree.md b/content/computer_sci/deep_learning_and_machine_learning/deep_learning/decision_tree.md index 85dc6ebff..0261c5499 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/deep_learning/decision_tree.md +++ b/content/computer_sci/deep_learning_and_machine_learning/deep_learning/decision_tree.md @@ -2,7 +2,7 @@ title: Decision Tree tags: - machine-learning -date: 2024-02-28 +date: 2023-09-07 --- Only vedio here: diff --git a/content/computer_sci/deep_learning_and_machine_learning/deep_learning/deep_learning_MOC.md b/content/computer_sci/deep_learning_and_machine_learning/deep_learning/deep_learning_MOC.md index cdfd7ce2a..06df4cd46 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/deep_learning/deep_learning_MOC.md +++ b/content/computer_sci/deep_learning_and_machine_learning/deep_learning/deep_learning_MOC.md @@ -3,7 +3,7 @@ title: Deep Learning MOC tags: - Catalog - MOC -date: 2024-02-28 +date: 2024-01-17 --- diff --git a/content/computer_sci/deep_learning_and_machine_learning/deep_learning/deep_neural_decision_forests.md b/content/computer_sci/deep_learning_and_machine_learning/deep_learning/deep_neural_decision_forests.md index 538bc4a5d..5ae378c37 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/deep_learning/deep_neural_decision_forests.md +++ b/content/computer_sci/deep_learning_and_machine_learning/deep_learning/deep_neural_decision_forests.md @@ -2,7 +2,7 @@ title: Deep Neural Decision Forests tags: - deep-learning -date: 2024-02-28 +date: 2024-01-17 --- # Background diff --git a/content/computer_sci/deep_learning_and_machine_learning/deep_learning/random_forest.md b/content/computer_sci/deep_learning_and_machine_learning/deep_learning/random_forest.md index cec130c4f..994c1707e 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/deep_learning/random_forest.md +++ b/content/computer_sci/deep_learning_and_machine_learning/deep_learning/random_forest.md @@ -2,7 +2,7 @@ title: Random Forest tags: - machine-learning -date: 2024-02-28 +date: 2024-01-17 --- # Background diff --git a/content/computer_sci/deep_learning_and_machine_learning/deep_learning/transformer.md b/content/computer_sci/deep_learning_and_machine_learning/deep_learning/transformer.md index e9d815958..7b78dee4f 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/deep_learning/transformer.md +++ b/content/computer_sci/deep_learning_and_machine_learning/deep_learning/transformer.md @@ -3,7 +3,7 @@ title: "Transformer" tags: - deep-learning - attention -date: 2024-02-28 +date: 2024-01-17 --- > [!info] diff --git a/content/computer_sci/deep_learning_and_machine_learning/machine_learning/MOC.md b/content/computer_sci/deep_learning_and_machine_learning/machine_learning/MOC.md index 314b51de0..70408eb61 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/machine_learning/MOC.md +++ b/content/computer_sci/deep_learning_and_machine_learning/machine_learning/MOC.md @@ -3,6 +3,6 @@ title: Machine Learning MOC tags: - MOC - machine-learning -date: 2024-02-28 +date: 2024-01-17 --- * [SVM](computer_sci/deep_learning_and_machine_learning/machine_learning/SVM.md) \ No newline at end of file diff --git a/content/computer_sci/deep_learning_and_machine_learning/machine_learning/SVM.md b/content/computer_sci/deep_learning_and_machine_learning/machine_learning/SVM.md index d9b399c0b..2482205d5 100644 --- a/content/computer_sci/deep_learning_and_machine_learning/machine_learning/SVM.md +++ b/content/computer_sci/deep_learning_and_machine_learning/machine_learning/SVM.md @@ -2,7 +2,7 @@ title: Support Vector Machine tags: - machine-learning -date: 2024-02-28 +date: 2024-02-27 --- # Overview diff --git a/content/computer_sci/hardware/hardware_MOC.md b/content/computer_sci/hardware/hardware_MOC.md index c049bcc84..b2cca6ec8 100644 --- a/content/computer_sci/hardware/hardware_MOC.md +++ b/content/computer_sci/hardware/hardware_MOC.md @@ -4,7 +4,7 @@ tags: - MOC - hardware - chip -date: 2024-02-28 +date: 2023-09-04 --- # Microcontroller unit (MCU) diff --git a/content/data_sci/basic/relationship.md b/content/data_sci/basic/relationship.md index 7fd721a46..83d2c8770 100644 --- a/content/data_sci/basic/relationship.md +++ b/content/data_sci/basic/relationship.md @@ -3,7 +3,7 @@ title: Independence & Correlation tags: - math - statistics -date: 2024-02-28 +date: 2024-02-27 --- # Independent diff --git a/content/data_sci/data_sci_MOC.md b/content/data_sci/data_sci_MOC.md index 510242e0c..43767891f 100644 --- a/content/data_sci/data_sci_MOC.md +++ b/content/data_sci/data_sci_MOC.md @@ -3,7 +3,7 @@ title: Data science MOC tags: - data - statistics -date: 2024-02-28 +date: 2023-12-18 --- # Basic Concept diff --git a/content/data_sci/stochastic_process/MOC.md b/content/data_sci/stochastic_process/MOC.md index 6309e04dc..19573a5a4 100644 --- a/content/data_sci/stochastic_process/MOC.md +++ b/content/data_sci/stochastic_process/MOC.md @@ -4,7 +4,7 @@ tags: - MOC - statistics - stochastic-process -date: 2024-02-28 +date: 2023-09-19 --- # Basic Concept diff --git a/content/data_sci/stochastic_process/stationary_process.md b/content/data_sci/stochastic_process/stationary_process.md index 0db613d3a..6fc11cc72 100644 --- a/content/data_sci/stochastic_process/stationary_process.md +++ b/content/data_sci/stochastic_process/stationary_process.md @@ -5,7 +5,7 @@ tags: - math - stochastic-process - signal-processing -date: 2024-02-28 +date: 2023-09-19 --- # Reference diff --git a/content/data_sci/visualization/visual_style/the_economist_style.md b/content/data_sci/visualization/visual_style/the_economist_style.md index 0c24e9e24..6b67a1ffc 100644 --- a/content/data_sci/visualization/visual_style/the_economist_style.md +++ b/content/data_sci/visualization/visual_style/the_economist_style.md @@ -3,7 +3,7 @@ title: The economist style graph tags: - data-visual - statistics -date: 2024-02-28 +date: 2023-12-18 --- # Reference diff --git a/content/data_sci/visualization/visual_style/visual_information_theory.md b/content/data_sci/visualization/visual_style/visual_information_theory.md index d8cdaa091..57b44ad07 100644 --- a/content/data_sci/visualization/visual_style/visual_information_theory.md +++ b/content/data_sci/visualization/visual_style/visual_information_theory.md @@ -3,7 +3,7 @@ title: Visual Information Theory tags: - data - visualization-tech -date: 2024-02-28 +date: 2023-12-18 --- # Reference diff --git a/content/data_sci/visualization/visual_tool/Tableau/tableau_learn_basic.md b/content/data_sci/visualization/visual_tool/Tableau/tableau_learn_basic.md index b9e80c9a8..8d0480198 100644 --- a/content/data_sci/visualization/visual_tool/Tableau/tableau_learn_basic.md +++ b/content/data_sci/visualization/visual_tool/Tableau/tableau_learn_basic.md @@ -5,7 +5,7 @@ tags: - tableau - data-visual - data -date: 2024-02-28 +date: 2023-12-18 --- # What is Tableau diff --git a/content/food/MOC.md b/content/food/MOC.md index 14b32d0e1..450c5a2e7 100644 --- a/content/food/MOC.md +++ b/content/food/MOC.md @@ -3,7 +3,7 @@ title: Food - MOC tags: - food - MOC -date: 2023-12-01 +date: 2023-12-03 --- # Intro diff --git a/content/food/intro/evaluation_criteria.md b/content/food/intro/evaluation_criteria.md index f24568653..e3e90795a 100644 --- a/content/food/intro/evaluation_criteria.md +++ b/content/food/intro/evaluation_criteria.md @@ -2,7 +2,7 @@ title: Evaluation Criteria tags: - food -date: 2023-12-01 +date: 2023-12-03 --- diff --git a/content/literature/article/article_MOC.md b/content/literature/article/article_MOC.md index 7e2673b66..774da9046 100644 --- a/content/literature/article/article_MOC.md +++ b/content/literature/article/article_MOC.md @@ -4,5 +4,5 @@ tags: - article - 文学 - MOC -date: 2023-05-01 +date: 2023-11-30 --- diff --git a/content/literature/literature_MOC.md b/content/literature/literature_MOC.md index 141f7a66e..9c1bd8601 100644 --- a/content/literature/literature_MOC.md +++ b/content/literature/literature_MOC.md @@ -3,7 +3,7 @@ title: 文学 tags: - MOC - 文学 -date: 2023-05-01 +date: 2023-11-30 --- In this MOC, it shows you the path to what I record for some interesting sentences, including Chinese and English, even Japanese. diff --git a/content/literature/poem/2018.md b/content/literature/poem/2018.md index c7800664b..9fe3f987e 100644 --- a/content/literature/poem/2018.md +++ b/content/literature/poem/2018.md @@ -2,7 +2,7 @@ title: Poem in 2018 tags: - poem -date: 2023-05-01 +date: 2023-07-01 --- > [!quote] diff --git a/content/literature/poem/2022.md b/content/literature/poem/2022.md index 3b170ca0d..d72e37158 100644 --- a/content/literature/poem/2022.md +++ b/content/literature/poem/2022.md @@ -3,7 +3,7 @@ title: Poem in 2022 tags: - 文学 - poem -date: 2023-05-01 +date: 2023-07-01 --- > [!quote] diff --git a/content/literature/poem/2023.md b/content/literature/poem/2023.md index 42a8b2a0e..c4c9ccb5f 100644 --- a/content/literature/poem/2023.md +++ b/content/literature/poem/2023.md @@ -2,7 +2,7 @@ title: Poem in 2023 tags: - poem -date: 2023-05-01 +date: 2023-07-01 --- > [!quote] diff --git a/content/literature/poem/Poem_by_me.md b/content/literature/poem/Poem_by_me.md index e026cc9be..4eb14d6c5 100644 --- a/content/literature/poem/Poem_by_me.md +++ b/content/literature/poem/Poem_by_me.md @@ -3,7 +3,7 @@ title: My Poem tags: - 文学 - poem -date: 2023-05-01 +date: 2023-07-01 --- * [2018](literature/poem/2018.md) diff --git a/content/literature/sentence/comments.md b/content/literature/sentence/comments.md index 3bbde2754..86c3861e4 100644 --- a/content/literature/sentence/comments.md +++ b/content/literature/sentence/comments.md @@ -4,7 +4,7 @@ tags: - 文学 - 摘抄 - commets -date: 2023-05-01 +date: 2023-07-03 --- > [!quote] diff --git a/content/literature/sentence/feeling.md b/content/literature/sentence/feeling.md index 318a21239..12017b8fb 100644 --- a/content/literature/sentence/feeling.md +++ b/content/literature/sentence/feeling.md @@ -5,7 +5,7 @@ tags: - 摘抄 - inspiration - feeling -date: 2023-05-01 +date: 2023-11-30 --- > [!quote] diff --git a/content/literature/sentence/love_about.md b/content/literature/sentence/love_about.md index b150bd92f..9e33f900a 100644 --- a/content/literature/sentence/love_about.md +++ b/content/literature/sentence/love_about.md @@ -5,7 +5,7 @@ tags: - 摘抄 - love - poem -date: 2023-05-01 +date: 2024-02-28 --- > [!quote] diff --git a/content/literature/sentence/motivation.md b/content/literature/sentence/motivation.md index e5b2b0334..f13893466 100644 --- a/content/literature/sentence/motivation.md +++ b/content/literature/sentence/motivation.md @@ -4,7 +4,7 @@ tags: - 文学 - 摘抄 - motivation -date: 2023-05-01 +date: 2023-09-13 --- > [!quote] diff --git a/content/literature/sentence/movie.md b/content/literature/sentence/movie.md index 9d5b76a16..76f36a4f4 100644 --- a/content/literature/sentence/movie.md +++ b/content/literature/sentence/movie.md @@ -4,7 +4,7 @@ tags: - 句子 - 文学 - 摘抄 -date: 2023-05-01 +date: 2023-05-12 --- > [!quote] diff --git a/content/literature/sentence/music.md b/content/literature/sentence/music.md index e5402bd8e..3fcb0507b 100644 --- a/content/literature/sentence/music.md +++ b/content/literature/sentence/music.md @@ -5,7 +5,7 @@ tag: - 文学 - 摘抄 - music -date: 2023-05-01 +date: 2023-04-22 --- > [!quote] diff --git a/content/literature/sentence/novel.md b/content/literature/sentence/novel.md index 9d0cc5464..71a60fac1 100644 --- a/content/literature/sentence/novel.md +++ b/content/literature/sentence/novel.md @@ -4,7 +4,7 @@ tag: - 句子 - 文学 - 摘抄 -date: 2023-05-01 +date: 2023-12-04 --- > [!quote] diff --git a/content/literature/sentence/poem.md b/content/literature/sentence/poem.md index ce3abad60..a6919baf4 100644 --- a/content/literature/sentence/poem.md +++ b/content/literature/sentence/poem.md @@ -4,7 +4,7 @@ tags: - 文学 - 摘抄 - poem -date: 2023-05-01 +date: 2023-12-12 --- > [!quote] diff --git a/content/literature/sentence/sentence_MOC.md b/content/literature/sentence/sentence_MOC.md index 7bb5a70f3..5070f634a 100644 --- a/content/literature/sentence/sentence_MOC.md +++ b/content/literature/sentence/sentence_MOC.md @@ -4,7 +4,7 @@ tags: - 文学 - 摘抄 - MOC -date: 2023-05-01 +date: 2023-11-30 --- * [🌸Love about](literature/sentence/love_about.md) diff --git a/content/literature/sentence/wisdom.md b/content/literature/sentence/wisdom.md index 400d6f84b..e7b4fd0e6 100644 --- a/content/literature/sentence/wisdom.md +++ b/content/literature/sentence/wisdom.md @@ -3,7 +3,7 @@ title: 🧙‍♂️Wisdom tags: - 文学 - 摘抄 -date: 2023-05-01 +date: 2024-01-02 --- > [!quote] diff --git a/content/log/2023/7/log_01072023.md b/content/log/2023/7/log_01072023.md index e2076972a..dffdb54a5 100644 --- a/content/log/2023/7/log_01072023.md +++ b/content/log/2023/7/log_01072023.md @@ -3,7 +3,7 @@ title: Log 2023.07.01 - 云朵也是会动滴☁️ tags: - log - photography -date: 2023-07-01 +date: 2023-09-11 --- 晚上去食堂吃饭的路上,看到了今天最棒的云 diff --git a/content/log/2023/7/log_03072023.md b/content/log/2023/7/log_03072023.md index 26d417fde..8a55e65dc 100644 --- a/content/log/2023/7/log_03072023.md +++ b/content/log/2023/7/log_03072023.md @@ -4,7 +4,7 @@ tags: - pixel-art - log - clustering -date: 2023-07-03 +date: 2023-09-11 --- 今天用k-means聚类算法做了一个像素化的效果,还蛮好玩的 diff --git a/content/log/log_MOC.md b/content/log/log_MOC.md index be62254c1..09d74629f 100644 --- a/content/log/log_MOC.md +++ b/content/log/log_MOC.md @@ -4,7 +4,7 @@ tags: - log - daily - 文学 -date: 2023-07-01 +date: 2023-09-27 --- # Log 2023 diff --git a/content/math/MOC.md b/content/math/MOC.md index 72e70219c..8d66e40dc 100644 --- a/content/math/MOC.md +++ b/content/math/MOC.md @@ -3,7 +3,7 @@ title: Math MOC tags: - math - MOC -date: 2024-02-28 +date: 2023-12-03 --- # Statistics diff --git a/content/math/Statistics/Basic/Quantile.md b/content/math/Statistics/Basic/Quantile.md index 6c30919fd..e5c378e70 100644 --- a/content/math/Statistics/Basic/Quantile.md +++ b/content/math/Statistics/Basic/Quantile.md @@ -4,7 +4,7 @@ tags: - math - statistics - basic -date: 2024-02-28 +date: 2023-05-23 --- **分位数**(英语:Quantile),亦称**分位点**,是指用分割点(cut point)将一个随机变量的概率分布范围分为几个具有相同概率的连续区间。分割点的数量比划分出的区间少1,例如3个分割点能分出4个区间。 diff --git a/content/math/discrete_mathematics/set_theory/cantor_expansion/cantor_expansion.md b/content/math/discrete_mathematics/set_theory/cantor_expansion/cantor_expansion.md index f019b3f5e..2e4fc9efc 100644 --- a/content/math/discrete_mathematics/set_theory/cantor_expansion/cantor_expansion.md +++ b/content/math/discrete_mathematics/set_theory/cantor_expansion/cantor_expansion.md @@ -7,7 +7,7 @@ tags: - algorithm - discrete-mathematics - set-theory -date: 2024-02-28 +date: 2023-07-07 --- diff --git a/content/math/optimization_problem/Quadratic_Programming.md b/content/math/optimization_problem/Quadratic_Programming.md index 159726fe6..242c712b5 100644 --- a/content/math/optimization_problem/Quadratic_Programming.md +++ b/content/math/optimization_problem/Quadratic_Programming.md @@ -4,7 +4,7 @@ tags: - math - optimize - optimization -date: 2024-02-28 +date: 2023-12-03 --- # Why I write this note? diff --git a/content/math/real_analysis/cauchy_principal_value.md b/content/math/real_analysis/cauchy_principal_value.md index bba22984d..0bdd07efe 100644 --- a/content/math/real_analysis/cauchy_principal_value.md +++ b/content/math/real_analysis/cauchy_principal_value.md @@ -3,7 +3,7 @@ title: Cauchy Principal Value tags: - math - real-analysis -date: 2024-02-28 +date: 2024-01-12 --- # Notation diff --git a/content/photography/Skills/howToShowPolaroid.md b/content/photography/Skills/howToShowPolaroid.md index 19d9dea66..34ee686c2 100644 --- a/content/photography/Skills/howToShowPolaroid.md +++ b/content/photography/Skills/howToShowPolaroid.md @@ -4,7 +4,7 @@ tags: - Polaroid - photography - skill -date: 2024-02-28 +date: 2023-04-20 --- * [宝丽来翻拍9宫格](photography/aesthetic/Polaroid/Polaroid_showcase.md) \ No newline at end of file diff --git a/content/photography/Skills/moodboard.md b/content/photography/Skills/moodboard.md index 2b2d592ee..16394c007 100644 --- a/content/photography/Skills/moodboard.md +++ b/content/photography/Skills/moodboard.md @@ -3,7 +3,7 @@ title: How to use Moodboard tags: - photography - skill -date: 2024-02-28 +date: 2023-04-20 --- # Overview diff --git a/content/photography/Skills/polaroid_light.md b/content/photography/Skills/polaroid_light.md index 80aba39d5..349ab14cc 100644 --- a/content/photography/Skills/polaroid_light.md +++ b/content/photography/Skills/polaroid_light.md @@ -5,7 +5,7 @@ tags: - Polaroid - film - skill -date: 2024-02-28 +date: 2023-04-10 --- The most thing you need to know is that, **the right exposure is in your head**. diff --git a/content/photography/Story/rainy_evening_hiking_Polaroid.md b/content/photography/Story/rainy_evening_hiking_Polaroid.md index 34a5e26e3..0f4cfeefd 100644 --- a/content/photography/Story/rainy_evening_hiking_Polaroid.md +++ b/content/photography/Story/rainy_evening_hiking_Polaroid.md @@ -5,7 +5,7 @@ tags: - Polaroid - story - film -date: 2024-02-28 +date: 2024-02-27 --- # Hiking diff --git a/content/photography/aesthetic/Landscape/Landscape_MOC.md b/content/photography/aesthetic/Landscape/Landscape_MOC.md index 959b3be93..6574340f9 100644 --- a/content/photography/aesthetic/Landscape/Landscape_MOC.md +++ b/content/photography/aesthetic/Landscape/Landscape_MOC.md @@ -4,7 +4,7 @@ tags: - photography - landscape - MOC -date: 2024-02-28 +date: 2023-04-22 --- * [🌊Sea MOC](photography/aesthetic/Landscape/Sea/Sea_MOC.md) \ No newline at end of file diff --git a/content/photography/aesthetic/Landscape/Sea/Fujifilm_Blue_by_小红书_Philips谢骏.md b/content/photography/aesthetic/Landscape/Sea/Fujifilm_Blue_by_小红书_Philips谢骏.md index 401d86cb3..f09706010 100644 --- a/content/photography/aesthetic/Landscape/Sea/Fujifilm_Blue_by_小红书_Philips谢骏.md +++ b/content/photography/aesthetic/Landscape/Sea/Fujifilm_Blue_by_小红书_Philips谢骏.md @@ -4,7 +4,7 @@ tags: - photography - landscape - photography -date: 2024-02-28 +date: 2023-04-22 --- ![](photography/aesthetic/Landscape/Sea/attachments/Pasted%20image%2020230420014349.png) diff --git a/content/photography/aesthetic/Landscape/Sea/Sea_MOC.md b/content/photography/aesthetic/Landscape/Sea/Sea_MOC.md index 3a2ab77f3..bbd04e7fd 100644 --- a/content/photography/aesthetic/Landscape/Sea/Sea_MOC.md +++ b/content/photography/aesthetic/Landscape/Sea/Sea_MOC.md @@ -5,7 +5,7 @@ tags: - sea - photography - aesthetic -date: 2024-02-28 +date: 2023-04-22 --- * [Fujifilm Blue🌊, 小红书-Philips谢骏](photography/aesthetic/Landscape/Sea/Fujifilm_Blue_by_小红书_Philips谢骏.md) diff --git a/content/photography/aesthetic/Landscape/Sea/豊島_Instagram_shiifoncake.md b/content/photography/aesthetic/Landscape/Sea/豊島_Instagram_shiifoncake.md index 6a71c729b..88e182747 100644 --- a/content/photography/aesthetic/Landscape/Sea/豊島_Instagram_shiifoncake.md +++ b/content/photography/aesthetic/Landscape/Sea/豊島_Instagram_shiifoncake.md @@ -5,7 +5,7 @@ tags: - sea - landscape - aesthetic -date: 2024-02-28 +date: 2023-04-22 --- ![](photography/aesthetic/Landscape/Sea/attachments/shiifoncake_338949220_771246770941652_287141902256013940_n.jpg) diff --git a/content/photography/aesthetic/Polaroid/Polaroid_aesthetic_MOC.md b/content/photography/aesthetic/Polaroid/Polaroid_aesthetic_MOC.md index e3ad6280e..f9558b272 100644 --- a/content/photography/aesthetic/Polaroid/Polaroid_aesthetic_MOC.md +++ b/content/photography/aesthetic/Polaroid/Polaroid_aesthetic_MOC.md @@ -4,7 +4,7 @@ tags: - photography - Polaroid - MOC -date: 2024-02-28 +date: 2023-04-20 --- * [🖼How to show Polaroid photo in a great way](photography/aesthetic/Polaroid/Polaroid_showcase.md) \ No newline at end of file diff --git a/content/photography/aesthetic/Polaroid/Polaroid_showcase.md b/content/photography/aesthetic/Polaroid/Polaroid_showcase.md index 2848bc3a3..4b3f515f3 100644 --- a/content/photography/aesthetic/Polaroid/Polaroid_showcase.md +++ b/content/photography/aesthetic/Polaroid/Polaroid_showcase.md @@ -4,7 +4,7 @@ tags: - photography - Polaroid - share -date: 2024-02-28 +date: 2023-04-20 --- diff --git a/content/photography/aesthetic/Portrait/Flower_and_Girl.md b/content/photography/aesthetic/Portrait/Flower_and_Girl.md index 9f6f91d45..e57a2f68e 100644 --- a/content/photography/aesthetic/Portrait/Flower_and_Girl.md +++ b/content/photography/aesthetic/Portrait/Flower_and_Girl.md @@ -4,7 +4,7 @@ tags: - photography - portrait - 摘抄 -date: 2024-02-28 +date: 2023-04-20 --- Credits to [Marta Bevacqua](https://www.martabevacquaphotography.com/), diff --git a/content/photography/aesthetic/Portrait/From Korean MV Todays_Mod.md b/content/photography/aesthetic/Portrait/From Korean MV Todays_Mod.md index 3775359ab..6682bfc1b 100644 --- a/content/photography/aesthetic/Portrait/From Korean MV Todays_Mod.md +++ b/content/photography/aesthetic/Portrait/From Korean MV Todays_Mod.md @@ -6,7 +6,7 @@ tags: - korean - cute - 摘抄 -date: 2024-02-28 +date: 2023-04-20 --- Credits to [MV - CHEEZE(치즈) _ Today's Mood(오늘의 기분)](https://www.youtube.com/watch?v=zRq_DlEzygk), diff --git a/content/photography/aesthetic/Portrait/Portrait_MOC.md b/content/photography/aesthetic/Portrait/Portrait_MOC.md index b172e00a2..847f174a5 100644 --- a/content/photography/aesthetic/Portrait/Portrait_MOC.md +++ b/content/photography/aesthetic/Portrait/Portrait_MOC.md @@ -5,7 +5,7 @@ tags: - portrait - 摘抄 - MOC -date: 2024-02-28 +date: 2023-04-20 --- * [🌸Flower & Girl](photography/aesthetic/Portrait/Flower_and_Girl.md) diff --git a/content/photography/aesthetic/Style/Grainy_Green.md b/content/photography/aesthetic/Style/Grainy_Green.md index 95e7e6a45..729a5ba47 100644 --- a/content/photography/aesthetic/Style/Grainy_Green.md +++ b/content/photography/aesthetic/Style/Grainy_Green.md @@ -5,7 +5,7 @@ tags: - grainy - style - share -date: 2024-02-28 +date: 2023-04-20 --- ![](photography/aesthetic/Style/attachments/cinematicshine_326914596_601425291912114_4038822895364546166_n.jpg) diff --git a/content/photography/aesthetic/Style/Style_MOC.md b/content/photography/aesthetic/Style/Style_MOC.md index a7b819c02..475433c62 100644 --- a/content/photography/aesthetic/Style/Style_MOC.md +++ b/content/photography/aesthetic/Style/Style_MOC.md @@ -5,7 +5,7 @@ tags: - style - share - MOC -date: 2024-02-28 +date: 2023-04-20 --- * [🌅Warmth - Nguan](photography/aesthetic/Style/Warmth_by_Nguan.md) diff --git a/content/photography/aesthetic/Style/Warmth_by_Nguan.md b/content/photography/aesthetic/Style/Warmth_by_Nguan.md index d2bb7fd61..a71d5cf65 100644 --- a/content/photography/aesthetic/Style/Warmth_by_Nguan.md +++ b/content/photography/aesthetic/Style/Warmth_by_Nguan.md @@ -3,7 +3,7 @@ title: 🎈Warmth - Nguan tags: - share - photography -date: 2024-02-28 +date: 2023-04-20 --- Credits to [Nguan](https://www.instagram.com/_nguan_/) diff --git a/content/photography/basic/MTF_Curve.md b/content/photography/basic/MTF_Curve.md index c89fa96a8..439e86f11 100644 --- a/content/photography/basic/MTF_Curve.md +++ b/content/photography/basic/MTF_Curve.md @@ -4,7 +4,7 @@ tags: - photography - basic - lens -date: 2024-02-28 +date: 2023-04-24 --- 有很多因素影响lens performance: diff --git a/content/photography/basic/Saturation.md b/content/photography/basic/Saturation.md index 1b2397eed..4084a9049 100644 --- a/content/photography/basic/Saturation.md +++ b/content/photography/basic/Saturation.md @@ -3,7 +3,7 @@ title: Saturation - 饱和度 tags: - basic - photography -date: 2024-02-28 +date: 2023-04-20 --- to be written... \ No newline at end of file diff --git a/content/photography/cameras_Research/Lens_Structure/Lens_Structure_MOC.md b/content/photography/cameras_Research/Lens_Structure/Lens_Structure_MOC.md index 46fea159a..813582a3f 100644 --- a/content/photography/cameras_Research/Lens_Structure/Lens_Structure_MOC.md +++ b/content/photography/cameras_Research/Lens_Structure/Lens_Structure_MOC.md @@ -5,7 +5,7 @@ tags: - lens - MOC - review -date: 2024-02-28 +date: 2023-04-24 --- * \ No newline at end of file diff --git a/content/photography/cameras_Research/Pocket_film/Pocket_film_camera_MOC.md b/content/photography/cameras_Research/Pocket_film/Pocket_film_camera_MOC.md index f94e918dc..b0e9ac5b8 100644 --- a/content/photography/cameras_Research/Pocket_film/Pocket_film_camera_MOC.md +++ b/content/photography/cameras_Research/Pocket_film/Pocket_film_camera_MOC.md @@ -5,7 +5,7 @@ tags: - review - MOC - camera -date: 2024-02-28 +date: 2023-04-24 --- # Rollei diff --git a/content/photography/cameras_Research/Pocket_film/Rollei_35.md b/content/photography/cameras_Research/Pocket_film/Rollei_35.md index 3ad3c762e..f17128226 100644 --- a/content/photography/cameras_Research/Pocket_film/Rollei_35.md +++ b/content/photography/cameras_Research/Pocket_film/Rollei_35.md @@ -6,7 +6,7 @@ tags: - rollei - camera - review -date: 2024-02-28 +date: 2023-04-24 --- diff --git a/content/photography/cameras_Research/Polaroid/Polaroid.md b/content/photography/cameras_Research/Polaroid/Polaroid.md index 8002210a0..ddf5620f9 100644 --- a/content/photography/cameras_Research/Polaroid/Polaroid.md +++ b/content/photography/cameras_Research/Polaroid/Polaroid.md @@ -5,7 +5,7 @@ tags: - photography - MOC - polaroid -date: 2024-02-28 +date: 2023-03-30 --- # Polaroid Background diff --git a/content/photography/cameras_Research/Polaroid/Polaroid_600.md b/content/photography/cameras_Research/Polaroid/Polaroid_600.md index 9a741459d..d7cf4f929 100644 --- a/content/photography/cameras_Research/Polaroid/Polaroid_600.md +++ b/content/photography/cameras_Research/Polaroid/Polaroid_600.md @@ -5,7 +5,7 @@ tags: - camera - review - photography -date: 2024-02-28 +date: 2023-03-30 --- # Reference diff --git a/content/photography/cameras_Research/Polaroid/Polaroid_one600.md b/content/photography/cameras_Research/Polaroid/Polaroid_one600.md index a53b4a1a5..c8b62a030 100644 --- a/content/photography/cameras_Research/Polaroid/Polaroid_one600.md +++ b/content/photography/cameras_Research/Polaroid/Polaroid_one600.md @@ -5,7 +5,7 @@ tags: - photography - review - polaroid -date: 2024-02-28 +date: 2023-03-30 --- diff --git a/content/photography/photography_MOC.md b/content/photography/photography_MOC.md index 0bad9f614..ede3488e4 100644 --- a/content/photography/photography_MOC.md +++ b/content/photography/photography_MOC.md @@ -3,7 +3,7 @@ title: "Photography - MOC" tags: - MOC - photography -date: 2024-02-28 +date: 2023-09-18 --- # 🌊Photo Portfolio diff --git a/content/photography/photography_meme/photography_meme.md b/content/photography/photography_meme/photography_meme.md index ebf450969..175882eef 100644 --- a/content/photography/photography_meme/photography_meme.md +++ b/content/photography/photography_meme/photography_meme.md @@ -5,7 +5,7 @@ tags: - meme - film - happy -date: 2024-02-28 +date: 2023-04-24 --- ![](photography/photography_meme/attachments/QQ图片20230424193512.png) \ No newline at end of file diff --git a/content/photography/resume.md b/content/photography/resume.md index d597f4b59..435ed80a5 100644 --- a/content/photography/resume.md +++ b/content/photography/resume.md @@ -3,7 +3,7 @@ title: Photography Resume tags: - resume - photography -date: 2024-02-28 +date: 2023-09-18 ---
diff --git a/content/physics/electromagnetism/Basic/Electric_units.md b/content/physics/electromagnetism/Basic/Electric_units.md index af9ac8545..96fa551b0 100644 --- a/content/physics/electromagnetism/Basic/Electric_units.md +++ b/content/physics/electromagnetism/Basic/Electric_units.md @@ -5,7 +5,7 @@ tags: - basic - physics - electric -date: 2024-02-28 +date: 2023-04-04 --- # Electrical impedance diff --git a/content/physics/electromagnetism/electromagnetism_MOC.md b/content/physics/electromagnetism/electromagnetism_MOC.md index b8b7a65f7..3c9567e59 100644 --- a/content/physics/electromagnetism/electromagnetism_MOC.md +++ b/content/physics/electromagnetism/electromagnetism_MOC.md @@ -4,7 +4,7 @@ tags: - physics - MOC - electromagnetism -date: 2024-02-28 +date: 2023-04-12 --- # Basic diff --git a/content/physics/electromagnetism/maxwells_equation.md b/content/physics/electromagnetism/maxwells_equation.md index cdcd7c997..27010938f 100644 --- a/content/physics/electromagnetism/maxwells_equation.md +++ b/content/physics/electromagnetism/maxwells_equation.md @@ -4,7 +4,7 @@ tags: - physics - electromagnetism - nuclear-level-knowledge -date: 2024-02-28 +date: 2023-04-19 --- # Equation diff --git a/content/physics/electromagnetism/q_factor.md b/content/physics/electromagnetism/q_factor.md index f0d5f99b7..7745351d2 100644 --- a/content/physics/electromagnetism/q_factor.md +++ b/content/physics/electromagnetism/q_factor.md @@ -5,7 +5,7 @@ tags: - electric - electromagnetism - basic -date: 2024-02-28 +date: 2023-04-04 --- # Explanation diff --git a/content/physics/electromagnetism/resonant_circuit.md b/content/physics/electromagnetism/resonant_circuit.md index e5721b904..603b45848 100644 --- a/content/physics/electromagnetism/resonant_circuit.md +++ b/content/physics/electromagnetism/resonant_circuit.md @@ -3,7 +3,7 @@ title: Resonant circuit tags: - physics - electric -date: 2024-02-28 +date: 2023-06-30 --- 以RLC串联电路为例 diff --git a/content/physics/optical/optical_abberation.md b/content/physics/optical/optical_abberation.md index b727954cc..737de3932 100644 --- a/content/physics/optical/optical_abberation.md +++ b/content/physics/optical/optical_abberation.md @@ -4,7 +4,7 @@ tags: - optical - photography - basic -date: 2024-02-28 +date: 2023-04-24 --- # What is optical aberration diff --git a/content/physics/physics_MOC.md b/content/physics/physics_MOC.md index 7ba7395aa..9e30ea349 100644 --- a/content/physics/physics_MOC.md +++ b/content/physics/physics_MOC.md @@ -3,7 +3,7 @@ title: Physics MOC tags: - physics - MOC -date: 2024-02-28 +date: 2023-04-18 --- # Electromagnetism diff --git a/content/physics/wave/doppler_effect.md b/content/physics/wave/doppler_effect.md index 57aea4c99..882d3478f 100644 --- a/content/physics/wave/doppler_effect.md +++ b/content/physics/wave/doppler_effect.md @@ -4,7 +4,7 @@ tags: - physics - basic - wave -date: 2024-02-28 +date: 2023-04-18 --- 多普勒效应(**Doppler effect**)是波源和观察者有相对运动时,观察者接受到波的频率与波源发出的频率并不相同的现象。 diff --git a/content/plan/exhibition/whisky_l.md b/content/plan/exhibition/whisky_l.md index 5ccf1a444..90856de96 100644 --- a/content/plan/exhibition/whisky_l.md +++ b/content/plan/exhibition/whisky_l.md @@ -3,7 +3,7 @@ title: Whisky L tags: - dream - exhibition -date: 2024-02-28 +date: 2023-09-21 --- # What is whisky L diff --git a/content/plan/life.md b/content/plan/life.md index 1ee56923e..859ca0ce0 100644 --- a/content/plan/life.md +++ b/content/plan/life.md @@ -2,7 +2,7 @@ title: Life List🚀 tags: - dream -date: 2024-02-28 +date: 2024-01-02 --- # Exhibition diff --git a/content/recent.md b/content/recent.md index 9f20e0173..b3221d17d 100644 --- a/content/recent.md +++ b/content/recent.md @@ -3,7 +3,7 @@ title: Recent note tags: - recent - readme -date: 2023-12-03 +date: 2023-06-28 --- ```dataview diff --git a/content/research_career/UWB_about/UWB_signal_generate.md b/content/research_career/UWB_about/UWB_signal_generate.md index 6b98c8717..66227e84c 100644 --- a/content/research_career/UWB_about/UWB_signal_generate.md +++ b/content/research_career/UWB_about/UWB_signal_generate.md @@ -3,7 +3,7 @@ title: How to generate UWB signal tags: - UWB - signal-processing -date: 2024-02-28 +date: 2024-01-23 --- # Actual Signals which find use in UWB systems diff --git a/content/research_career/UWB_about/flight_time/flight_time_solution.md b/content/research_career/UWB_about/flight_time/flight_time_solution.md index 08ceac4a0..08ca93bd5 100644 --- a/content/research_career/UWB_about/flight_time/flight_time_solution.md +++ b/content/research_career/UWB_about/flight_time/flight_time_solution.md @@ -4,7 +4,7 @@ tags: - UWB - signal-processing - VNA -date: 2024-02-29 +date: 2023-12-14 --- diff --git a/content/research_career/UWB_about/report/OPAMP_health_test.md b/content/research_career/UWB_about/report/OPAMP_health_test.md index a34a6190b..0984363c1 100644 --- a/content/research_career/UWB_about/report/OPAMP_health_test.md +++ b/content/research_career/UWB_about/report/OPAMP_health_test.md @@ -3,7 +3,7 @@ title: UWB Board OPA699 I/O Test tags: - hardware - UWB -date: 2024-02-28 +date: 2024-01-25 --- # OPA699 Pin Configuration diff --git a/content/research_career/UWB_about/report/UWB_Board_AMP_circuit_test_1_1.md b/content/research_career/UWB_about/report/UWB_Board_AMP_circuit_test_1_1.md index 36994d65f..8a29f7148 100644 --- a/content/research_career/UWB_about/report/UWB_Board_AMP_circuit_test_1_1.md +++ b/content/research_career/UWB_about/report/UWB_Board_AMP_circuit_test_1_1.md @@ -3,7 +3,7 @@ title: UWB Board OPA699 I/O Test 1.1 tags: - hardware - UWB -date: 2024-02-28 +date: 2024-01-25 --- # OPA699 Pin Configuration diff --git a/content/research_career/UWB_about/report/UWB_board_test.md b/content/research_career/UWB_about/report/UWB_board_test.md index d5a1d4e6c..194c19884 100644 --- a/content/research_career/UWB_about/report/UWB_board_test.md +++ b/content/research_career/UWB_about/report/UWB_board_test.md @@ -3,7 +3,7 @@ title: UWB Board Port 3 Test tags: - UWB - hardware -date: 2024-02-28 +date: 2024-01-24 --- # Receiver Board Testing diff --git a/content/research_career/UWB_about/report/UWB_device_test_overview.md b/content/research_career/UWB_about/report/UWB_device_test_overview.md index 37802e954..de8c3d5a1 100644 --- a/content/research_career/UWB_about/report/UWB_device_test_overview.md +++ b/content/research_career/UWB_about/report/UWB_device_test_overview.md @@ -4,7 +4,7 @@ tags: - UWB - devices - hardware -date: 2024-02-28 +date: 2024-01-24 --- # Key files diff --git a/content/research_career/UWB_about/report/UWB_device_test_report.md b/content/research_career/UWB_about/report/UWB_device_test_report.md index 68560c36e..2b0012785 100644 --- a/content/research_career/UWB_about/report/UWB_device_test_report.md +++ b/content/research_career/UWB_about/report/UWB_device_test_report.md @@ -3,7 +3,7 @@ title: UWB Device Setup Test Report tags: - UWB - "#hardware" -date: 2024-02-28 +date: 2024-01-17 --- # Voltage Test Table diff --git a/content/research_career/UWB_about/report/UWB_device_test_report_update.md b/content/research_career/UWB_about/report/UWB_device_test_report_update.md index bb7b5c779..0b93070ad 100644 --- a/content/research_career/UWB_about/report/UWB_device_test_report_update.md +++ b/content/research_career/UWB_about/report/UWB_device_test_report_update.md @@ -4,7 +4,7 @@ tags: - UWB - hardware - devices -date: 2024-02-28 +date: 2024-02-27 --- # Voltage Test Table diff --git a/content/research_career/UWB_about/report/UWB_signal_generate.md b/content/research_career/UWB_about/report/UWB_signal_generate.md index 6b98c8717..d4f627a43 100644 --- a/content/research_career/UWB_about/report/UWB_signal_generate.md +++ b/content/research_career/UWB_about/report/UWB_signal_generate.md @@ -3,7 +3,7 @@ title: How to generate UWB signal tags: - UWB - signal-processing -date: 2024-02-28 +date: 2023-11-29 --- # Actual Signals which find use in UWB systems diff --git a/content/research_career/UWB_about/report/VNA_based_UWB_echo_signal_experiment2.md b/content/research_career/UWB_about/report/VNA_based_UWB_echo_signal_experiment2.md index de7ba177a..e4cb05fce 100644 --- a/content/research_career/UWB_about/report/VNA_based_UWB_echo_signal_experiment2.md +++ b/content/research_career/UWB_about/report/VNA_based_UWB_echo_signal_experiment2.md @@ -6,7 +6,7 @@ tags: - VNA - UWB - signal-processing -date: 2024-02-28 +date: 2023-12-12 --- ## Objective diff --git a/content/research_career/UWB_about/report/VNA_based_simulation_of_UWB_signals.md b/content/research_career/UWB_about/report/VNA_based_simulation_of_UWB_signals.md index 61b5e50dd..30fd735cb 100644 --- a/content/research_career/UWB_about/report/VNA_based_simulation_of_UWB_signals.md +++ b/content/research_career/UWB_about/report/VNA_based_simulation_of_UWB_signals.md @@ -4,7 +4,7 @@ tags: - VNA - UWB - report -date: 2024-02-28 +date: 2023-12-12 --- ## Objective 1. A VNA based experiment setup is constructed for mimicking UWB apparatus. diff --git a/content/research_career/UWB_about/report/VNA_research.md b/content/research_career/UWB_about/report/VNA_research.md index ae5dc8e01..d87e765f6 100644 --- a/content/research_career/UWB_about/report/VNA_research.md +++ b/content/research_career/UWB_about/report/VNA_research.md @@ -2,7 +2,7 @@ title: Vector Network Analysis - Review tags: - UWB -date: 2024-02-28 +date: 2023-11-29 --- # Brief Introduction diff --git a/content/research_career/UWB_about/report/flight_time_calculation.md b/content/research_career/UWB_about/report/flight_time_calculation.md index ce3fa89da..342e34545 100644 --- a/content/research_career/UWB_about/report/flight_time_calculation.md +++ b/content/research_career/UWB_about/report/flight_time_calculation.md @@ -5,7 +5,7 @@ tags: - signal-processing - VNA - UWB -date: 2024-02-28 +date: 2023-12-14 --- diff --git a/content/research_career/UWB_about/report/基于高频信号大趋势包络提取后的信号关键点提取.md b/content/research_career/UWB_about/report/基于高频信号大趋势包络提取后的信号关键点提取.md index 049d42c0e..ffd9a54fc 100644 --- a/content/research_career/UWB_about/report/基于高频信号大趋势包络提取后的信号关键点提取.md +++ b/content/research_career/UWB_about/report/基于高频信号大趋势包络提取后的信号关键点提取.md @@ -3,7 +3,7 @@ title: Detect Signal Impulse Point by High Frequency Signal Envelope Method tags: - report - envelope -date: 2024-02-28 +date: 2024-01-12 --- # 问题 diff --git a/content/research_career/device/VNA_set_instruction.md b/content/research_career/device/VNA_set_instruction.md index af2c56c20..b2ca5a994 100644 --- a/content/research_career/device/VNA_set_instruction.md +++ b/content/research_career/device/VNA_set_instruction.md @@ -5,7 +5,7 @@ tags: - hardware - VNA - UWB -date: 2024-02-28 +date: 2024-01-27 --- # Step by Step (Simple Overview) diff --git a/content/research_career/device/infiniiMax_probes.md b/content/research_career/device/infiniiMax_probes.md index b59245f64..1125ac9cb 100644 --- a/content/research_career/device/infiniiMax_probes.md +++ b/content/research_career/device/infiniiMax_probes.md @@ -3,5 +3,5 @@ title: InfiniiMax Probes tags: - devices - equipment -date: 2024-02-28 +date: 2024-01-17 --- diff --git a/content/research_career/device/real_time_vs_sampling_oscilloscope.md b/content/research_career/device/real_time_vs_sampling_oscilloscope.md index 0a054d7d7..b1fae0167 100644 --- a/content/research_career/device/real_time_vs_sampling_oscilloscope.md +++ b/content/research_career/device/real_time_vs_sampling_oscilloscope.md @@ -4,5 +4,5 @@ tags: - devices - equipment - signal -date: 2024-02-28 +date: 2024-01-19 --- diff --git a/content/research_career/device/stm_load_note.md b/content/research_career/device/stm_load_note.md index 931b48da1..204ecae9f 100644 --- a/content/research_career/device/stm_load_note.md +++ b/content/research_career/device/stm_load_note.md @@ -4,7 +4,7 @@ tags: - devices - hardware - equipment -date: 2024-02-28 +date: 2024-01-19 --- # ST-link Connection diff --git a/content/research_career/papers_read.md b/content/research_career/papers_read.md index 0d23e33d4..ba5dad48e 100644 --- a/content/research_career/papers_read.md +++ b/content/research_career/papers_read.md @@ -3,7 +3,7 @@ title: Papers Read tags: - work-about - research-about -date: 2024-02-28 +date: 2024-02-20 --- * [Papers Read in 2023.10](research_career/papers_read/papers_2023_10.md) diff --git a/content/research_career/papers_read/2024_winter_holiday/PI_overview.md b/content/research_career/papers_read/2024_winter_holiday/PI_overview.md index e288d2fec..c818918b3 100644 --- a/content/research_career/papers_read/2024_winter_holiday/PI_overview.md +++ b/content/research_career/papers_read/2024_winter_holiday/PI_overview.md @@ -3,7 +3,7 @@ title: A systematic review of pressure injury 压疮综述 tags: - pressure-injury - overview -date: 2024-02-28 +date: 2024-02-20 --- # A systematic review of pressure injury 压疮综述 diff --git a/content/research_career/papers_read/2024_winter_holiday/papers_read_about_pressure_injury.md b/content/research_career/papers_read/2024_winter_holiday/papers_read_about_pressure_injury.md index e025495c7..621e185f9 100644 --- a/content/research_career/papers_read/2024_winter_holiday/papers_read_about_pressure_injury.md +++ b/content/research_career/papers_read/2024_winter_holiday/papers_read_about_pressure_injury.md @@ -3,7 +3,7 @@ title: 关于压疮(pressure injury)相关的文献阅读 tags: - papers - pressure-injury -date: 2024-02-28 +date: 2024-02-25 --- diff --git a/content/research_career/papers_read/papers_2023_10.md b/content/research_career/papers_read/papers_2023_10.md index 27c242aae..b5cdd55cc 100644 --- a/content/research_career/papers_read/papers_2023_10.md +++ b/content/research_career/papers_read/papers_2023_10.md @@ -3,7 +3,7 @@ title: Papers Read in 2023.10 tags: - papers - research-about -date: 2024-02-28 +date: 2023-11-02 --- # Measurements of UWB through-the-wall propagation using spectrum analyzer and the Hilbert transform diff --git a/content/research_career/papers_read/papers_2023_11.md b/content/research_career/papers_read/papers_2023_11.md index 1635a2f6e..a010a2d27 100644 --- a/content/research_career/papers_read/papers_2023_11.md +++ b/content/research_career/papers_read/papers_2023_11.md @@ -1,6 +1,6 @@ --- title: Papers Read in 2023.11 -date: 2024-02-28 +date: 2023-11-02 --- # DESIGNING A UWB GENERATOR AND ANTENNA FOR CWD RADAR diff --git a/content/research_career/plan/Next_work_plan/2023_12.md b/content/research_career/plan/Next_work_plan/2023_12.md index b79e5e1a5..bc58f9781 100644 --- a/content/research_career/plan/Next_work_plan/2023_12.md +++ b/content/research_career/plan/Next_work_plan/2023_12.md @@ -2,7 +2,7 @@ title: Dec. 2023 Work Plan tags: - plan -date: 2024-02-28 +date: 2023-12-03 --- Task: diff --git a/content/resume.md b/content/resume.md index 7f5b7f154..d3fccf78e 100644 --- a/content/resume.md +++ b/content/resume.md @@ -3,7 +3,7 @@ title: Resume tags: - resume - readme -date: 2023-03-16 +date: 2023-07-12 ---
diff --git a/content/signal_processing/PSD_estimation/PSD_estimation.md b/content/signal_processing/PSD_estimation/PSD_estimation.md index c1930f736..4372e66cd 100644 --- a/content/signal_processing/PSD_estimation/PSD_estimation.md +++ b/content/signal_processing/PSD_estimation/PSD_estimation.md @@ -3,6 +3,6 @@ title: Power spectral density estimation tags: - signal-processing - statistics -date: 2024-02-28 +date: 2023-11-30 --- [Power spectral density estimation](signal_processing/basic_knowledge/concept/Spectral_density.md)(PSDE, or SDE),功率谱估计是随机信号处理的重要研究内容之一 \ No newline at end of file diff --git a/content/signal_processing/UWB_about/UWB_signal_parameters.md b/content/signal_processing/UWB_about/UWB_signal_parameters.md index 7e11d0c58..f1ebf058c 100644 --- a/content/signal_processing/UWB_about/UWB_signal_parameters.md +++ b/content/signal_processing/UWB_about/UWB_signal_parameters.md @@ -4,5 +4,5 @@ tags: - signal - signal-processing - UWB -date: 2024-02-28 +date: 2023-11-02 --- diff --git a/content/signal_processing/basic_knowledge/FT/fourier_transform.md b/content/signal_processing/basic_knowledge/FT/fourier_transform.md index c96fd2329..2a1ad622c 100644 --- a/content/signal_processing/basic_knowledge/FT/fourier_transform.md +++ b/content/signal_processing/basic_knowledge/FT/fourier_transform.md @@ -3,7 +3,7 @@ title: Fourier Transform tags: - math - signal-processing -date: 2024-02-28 +date: 2023-11-30 --- # Almost Fourier Transform diff --git a/content/signal_processing/basic_knowledge/FT/fourier_transform_pairs_derivation.md b/content/signal_processing/basic_knowledge/FT/fourier_transform_pairs_derivation.md index 0da7d5609..7f1f29246 100644 --- a/content/signal_processing/basic_knowledge/FT/fourier_transform_pairs_derivation.md +++ b/content/signal_processing/basic_knowledge/FT/fourier_transform_pairs_derivation.md @@ -5,7 +5,7 @@ tags: - signal - fourier-transform - math -date: 2024-02-28 +date: 2023-11-30 --- # Fourier Transform Paris diff --git a/content/signal_processing/basic_knowledge/concept/FBW.md b/content/signal_processing/basic_knowledge/concept/FBW.md index d5c60a6da..f74c9ec3c 100644 --- a/content/signal_processing/basic_knowledge/concept/FBW.md +++ b/content/signal_processing/basic_knowledge/concept/FBW.md @@ -3,7 +3,7 @@ title: FBW - Fractional Bandwidth tags: - gauss-pulse - basic -date: 2024-02-28 +date: 2023-11-30 --- # Reference diff --git a/content/signal_processing/basic_knowledge/concept/FM_vs_AM.md b/content/signal_processing/basic_knowledge/concept/FM_vs_AM.md index f4a0da2bb..cb0489314 100644 --- a/content/signal_processing/basic_knowledge/concept/FM_vs_AM.md +++ b/content/signal_processing/basic_knowledge/concept/FM_vs_AM.md @@ -3,7 +3,7 @@ title: FM signal vs. AM signal - Learning Signal Transmitting tags: - signal - signal-processing -date: 2024-02-28 +date: 2023-11-30 --- # Reference diff --git a/content/signal_processing/basic_knowledge/concept/SWR.md b/content/signal_processing/basic_knowledge/concept/SWR.md index 319e97cce..0393cf139 100644 --- a/content/signal_processing/basic_knowledge/concept/SWR.md +++ b/content/signal_processing/basic_knowledge/concept/SWR.md @@ -4,7 +4,7 @@ tags: - signal-processing - VNA - antenna -date: 2024-02-28 +date: 2023-11-30 --- 天线的驻波比(Standing Wave Ratio,SWR)是用于**衡量天线与传输线或电路之间的匹配性能的一个关键参数**。SWR是一个无单位的值,通常表示为正数,它用于表示天线的输入阻抗与传输线或电路的特性阻抗之间的比率。SWR的值越低,表示天线与传输线的匹配越好,能更有效地传输能量。 diff --git a/content/signal_processing/basic_knowledge/concept/Spectral_density.md b/content/signal_processing/basic_knowledge/concept/Spectral_density.md index 86a9f42e7..912b794a0 100644 --- a/content/signal_processing/basic_knowledge/concept/Spectral_density.md +++ b/content/signal_processing/basic_knowledge/concept/Spectral_density.md @@ -3,5 +3,5 @@ title: Spectral Density tags: - signal - basic -date: 2024-02-28 +date: 2023-11-30 --- diff --git a/content/signal_processing/basic_knowledge/concept/scattering_parameters.md b/content/signal_processing/basic_knowledge/concept/scattering_parameters.md index 81136779e..ab922522a 100644 --- a/content/signal_processing/basic_knowledge/concept/scattering_parameters.md +++ b/content/signal_processing/basic_knowledge/concept/scattering_parameters.md @@ -4,7 +4,7 @@ tags: - signal-processing - VNA - devices -date: 2024-02-28 +date: 2023-11-30 --- S参数(Scattering Parameters,散射参数)是用于描述射频和微波电路中信号传输和散射特性的一组参数。S参数响应是指S参数随频率变化的响应或值。这些参数用于描述电路中信号的传输、反射和散射情况,通常以矩阵的形式表示。S参数通常有四个值:S11、S12、S21和S22,分别表示反射系数和传输系数。 diff --git a/content/signal_processing/basic_knowledge/concept/smith_graph.md b/content/signal_processing/basic_knowledge/concept/smith_graph.md index 9c8a58e60..1d50ec014 100644 --- a/content/signal_processing/basic_knowledge/concept/smith_graph.md +++ b/content/signal_processing/basic_knowledge/concept/smith_graph.md @@ -3,7 +3,7 @@ title: Smith Graph tags: - signal-processing - VNA -date: 2024-02-28 +date: 2023-11-30 --- Smith图,又称为Smith圆图或史密斯图,是一种常用于射频(RF)和微波工程中的图形工具,用于可视化和分析电路、天线和传输线的阻抗匹配和传输线特性的工具。Smith图以19世纪初美国工程师Philip H. Smith的名字命名,他对电路匹配问题作出了重要贡献。 diff --git a/content/signal_processing/basic_knowledge/concept/what_is_dB.md b/content/signal_processing/basic_knowledge/concept/what_is_dB.md index 0c99b9fe4..f2d917f7c 100644 --- a/content/signal_processing/basic_knowledge/concept/what_is_dB.md +++ b/content/signal_processing/basic_knowledge/concept/what_is_dB.md @@ -3,7 +3,7 @@ title: What is dB tags: - signal-processing - basic -date: 2024-02-28 +date: 2023-11-30 --- dB is short for decibel, which is a unit that indicates ratio or gain. It is often used to measure *sound intensity*, *signal strength*, *attenuation* and other quantities. diff --git a/content/signal_processing/basic_knowledge/random_signal_basic.md b/content/signal_processing/basic_knowledge/random_signal_basic.md index 45f1d3740..502218b42 100644 --- a/content/signal_processing/basic_knowledge/random_signal_basic.md +++ b/content/signal_processing/basic_knowledge/random_signal_basic.md @@ -3,7 +3,7 @@ title: Random Signal Basic tags: - signal-processing - math -date: 2024-02-28 +date: 2023-10-07 --- # What is Random Signals diff --git a/content/signal_processing/basic_knowledge/stability_of_discrete_system.md b/content/signal_processing/basic_knowledge/stability_of_discrete_system.md index 0b3bcee57..a97987677 100644 --- a/content/signal_processing/basic_knowledge/stability_of_discrete_system.md +++ b/content/signal_processing/basic_knowledge/stability_of_discrete_system.md @@ -4,7 +4,7 @@ tags: - signal-processing - basic - system -date: 2024-02-28 +date: 2024-01-15 --- # 离散系统稳定性判别(因果系统) diff --git a/content/signal_processing/device_and_components/SRD.md b/content/signal_processing/device_and_components/SRD.md index 1eb45ddc5..9e5c123de 100644 --- a/content/signal_processing/device_and_components/SRD.md +++ b/content/signal_processing/device_and_components/SRD.md @@ -4,7 +4,7 @@ tags: - signal - ciruit-componets - UWB -date: 2024-02-28 +date: 2023-11-02 --- 阶跃恢复二极管(Step Recovery Diode,SRD)是一种特殊类型的二极管,通常用于高频、脉冲和微波应用中。它的特殊结构和工作原理使其能够产生非常快速的电压和电流变化,因此在信号产生、调制和混频等电子电路中有广泛的应用。以下是关于SRD的详细介绍: diff --git a/content/signal_processing/device_and_components/VNA_learn.md b/content/signal_processing/device_and_components/VNA_learn.md index 13beff29f..0737e64ef 100644 --- a/content/signal_processing/device_and_components/VNA_learn.md +++ b/content/signal_processing/device_and_components/VNA_learn.md @@ -3,7 +3,7 @@ title: Learn VNA in practical way tags: - devices - signal-processing -date: 2024-02-28 +date: 2023-11-30 --- # Background diff --git a/content/signal_processing/device_and_components/cable/AWG.md b/content/signal_processing/device_and_components/cable/AWG.md index 7ba2f6f7f..ebd82c1ae 100644 --- a/content/signal_processing/device_and_components/cable/AWG.md +++ b/content/signal_processing/device_and_components/cable/AWG.md @@ -3,7 +3,7 @@ title: American Wire Gauge tags: - cable - protocols -date: 2024-02-28 +date: 2023-12-05 --- AWG是American Wire Gauge的缩写,它是一种用于表示电线和电缆导线直径大小的标准。AWG标准是在美国制定的,常用于美国、加拿大和其他一些国家。 diff --git a/content/signal_processing/device_and_components/cable/cable.md b/content/signal_processing/device_and_components/cable/cable.md index 6a5962c95..4a9a6310f 100644 --- a/content/signal_processing/device_and_components/cable/cable.md +++ b/content/signal_processing/device_and_components/cable/cable.md @@ -4,7 +4,7 @@ tags: - signal - equipment - devices -date: 2024-02-28 +date: 2023-12-05 --- # Structure diff --git a/content/signal_processing/device_and_components/cable/coax_cable.md b/content/signal_processing/device_and_components/cable/coax_cable.md index ae8f41b78..da18c5e9e 100644 --- a/content/signal_processing/device_and_components/cable/coax_cable.md +++ b/content/signal_processing/device_and_components/cable/coax_cable.md @@ -4,7 +4,7 @@ tags: - devices - equipment - cable -date: 2024-02-28 +date: 2023-12-05 --- diff --git a/content/signal_processing/device_and_components/cable/coax_cable_imbalance.md b/content/signal_processing/device_and_components/cable/coax_cable_imbalance.md index 416b26100..b43c994d0 100644 --- a/content/signal_processing/device_and_components/cable/coax_cable_imbalance.md +++ b/content/signal_processing/device_and_components/cable/coax_cable_imbalance.md @@ -5,7 +5,7 @@ tags: - equipment - devices - cable -date: 2024-02-28 +date: 2023-12-05 --- # You should know: diff --git a/content/signal_processing/device_and_components/cable/skin_effect.md b/content/signal_processing/device_and_components/cable/skin_effect.md index 9e0c58dfe..305c0ba60 100644 --- a/content/signal_processing/device_and_components/cable/skin_effect.md +++ b/content/signal_processing/device_and_components/cable/skin_effect.md @@ -5,7 +5,7 @@ tags: - equipment - signal - signal-processing -date: 2024-02-28 +date: 2023-12-05 --- # Simple review diff --git a/content/signal_processing/device_and_components/feeding_tech/feeding_tech.md b/content/signal_processing/device_and_components/feeding_tech/feeding_tech.md index 338692d96..52e237050 100644 --- a/content/signal_processing/device_and_components/feeding_tech/feeding_tech.md +++ b/content/signal_processing/device_and_components/feeding_tech/feeding_tech.md @@ -3,7 +3,7 @@ title: Antenna Feeding Tech tags: - signal-processing - antenna -date: 2024-02-28 +date: 2023-12-14 --- diff --git a/content/signal_processing/device_and_components/op_amp.md b/content/signal_processing/device_and_components/op_amp.md index 602675249..ed95e26f5 100644 --- a/content/signal_processing/device_and_components/op_amp.md +++ b/content/signal_processing/device_and_components/op_amp.md @@ -2,7 +2,7 @@ title: Operational Amplifier tags: - signal -date: 2024-02-28 +date: 2023-11-02 --- 运算放大器 diff --git a/content/signal_processing/device_and_components/quality_control_certified/qcc.md b/content/signal_processing/device_and_components/quality_control_certified/qcc.md index 45d0c7e94..8af8855c6 100644 --- a/content/signal_processing/device_and_components/quality_control_certified/qcc.md +++ b/content/signal_processing/device_and_components/quality_control_certified/qcc.md @@ -4,7 +4,7 @@ tags: - devices - equipment - protocols -date: 2024-02-28 +date: 2023-12-05 --- Quality Control Certified是指通过一系列认证和标准评估的质量控制体系,其中UL(Underwriters Laboratories)、TUV(Technischer Überwachungsverein)和ISO(International Organization for Standardization)是三个常见的认证和标准机构。下面是它们的简要介绍: diff --git a/content/signal_processing/envelope/hilbert_transform.md b/content/signal_processing/envelope/hilbert_transform.md index 09e824fc8..25d788bd7 100644 --- a/content/signal_processing/envelope/hilbert_transform.md +++ b/content/signal_processing/envelope/hilbert_transform.md @@ -4,7 +4,7 @@ tags: - signal-processing - algorithm - envelope -date: 2024-02-28 +date: 2024-01-12 --- # Introduction diff --git a/content/signal_processing/filter/chebyshev_filter.md b/content/signal_processing/filter/chebyshev_filter.md index d27e256cb..16c655a02 100644 --- a/content/signal_processing/filter/chebyshev_filter.md +++ b/content/signal_processing/filter/chebyshev_filter.md @@ -3,7 +3,7 @@ title: Chebyshev Filter tags: - signal-processing - filter -date: 2024-02-28 +date: 2024-01-12 --- # History diff --git a/content/signal_processing/impulse_generating/gaussian_impulse.md b/content/signal_processing/impulse_generating/gaussian_impulse.md index 0cd2038e0..8e3a5cc80 100644 --- a/content/signal_processing/impulse_generating/gaussian_impulse.md +++ b/content/signal_processing/impulse_generating/gaussian_impulse.md @@ -4,7 +4,7 @@ tags: - UWB - signal-processing - signal-generating -date: 2024-02-28 +date: 2023-11-23 --- # Equation diff --git a/content/signal_processing/radio_communication/Near_far_field.md b/content/signal_processing/radio_communication/Near_far_field.md index 1b9b49bfe..4f965eb46 100644 --- a/content/signal_processing/radio_communication/Near_far_field.md +++ b/content/signal_processing/radio_communication/Near_far_field.md @@ -5,7 +5,7 @@ tags: - radio - physics - electromagnetism -date: 2024-02-28 +date: 2023-12-05 --- diff --git a/content/signal_processing/signal_processing_MOC.md b/content/signal_processing/signal_processing_MOC.md index f5af6ee35..60cce430e 100644 --- a/content/signal_processing/signal_processing_MOC.md +++ b/content/signal_processing/signal_processing_MOC.md @@ -3,7 +3,7 @@ title: Signal Processing - MOC tags: - MOC - signal-processing -date: 2024-02-28 +date: 2024-01-12 --- # Basic diff --git a/content/synthetic_aperture_radar_imaging/Antenna.md b/content/synthetic_aperture_radar_imaging/Antenna.md index 218032200..87a4d0fe0 100644 --- a/content/synthetic_aperture_radar_imaging/Antenna.md +++ b/content/synthetic_aperture_radar_imaging/Antenna.md @@ -4,7 +4,7 @@ tags: - SAR - physics - basic -date: 2024-02-28 +date: 2023-06-30 --- # Theorem you need know diff --git a/content/synthetic_aperture_radar_imaging/Chirp.md b/content/synthetic_aperture_radar_imaging/Chirp.md index 90e6ce066..e5f6848b0 100644 --- a/content/synthetic_aperture_radar_imaging/Chirp.md +++ b/content/synthetic_aperture_radar_imaging/Chirp.md @@ -3,7 +3,7 @@ title: Chirp - 啁啾 tags: - basic - signal -date: 2024-02-28 +date: 2023-06-30 --- 啁啾(Chirp)是指频率随时间而改变(增加或减少)的信号。其名称来源于这种信号听起来类似鸟鸣的啾声。 diff --git a/content/synthetic_aperture_radar_imaging/Radiometric_Calibration.md b/content/synthetic_aperture_radar_imaging/Radiometric_Calibration.md index 45cc747aa..8f5f22338 100644 --- a/content/synthetic_aperture_radar_imaging/Radiometric_Calibration.md +++ b/content/synthetic_aperture_radar_imaging/Radiometric_Calibration.md @@ -3,7 +3,7 @@ title: Radiometric Calibration - 辐射校准 tags: - SAR - basic -date: 2024-02-28 +date: 2023-06-30 --- # Overview diff --git a/content/synthetic_aperture_radar_imaging/SAR_Explained.md b/content/synthetic_aperture_radar_imaging/SAR_Explained.md index d4d5a7b99..75da20fb9 100644 --- a/content/synthetic_aperture_radar_imaging/SAR_Explained.md +++ b/content/synthetic_aperture_radar_imaging/SAR_Explained.md @@ -3,7 +3,7 @@ title: Synthetic Aperture Radar (SAR) Explained tags: - SAR - basic -date: 2024-02-28 +date: 2023-11-30 --- # Radar Basic Concepts diff --git a/content/synthetic_aperture_radar_imaging/SAR_Imaging_Algorithm.md b/content/synthetic_aperture_radar_imaging/SAR_Imaging_Algorithm.md index 09743acc1..db93733c8 100644 --- a/content/synthetic_aperture_radar_imaging/SAR_Imaging_Algorithm.md +++ b/content/synthetic_aperture_radar_imaging/SAR_Imaging_Algorithm.md @@ -5,7 +5,7 @@ tags: - basic - algorithm - state-of-art -date: 2024-02-28 +date: 2023-06-30 --- diff --git a/content/synthetic_aperture_radar_imaging/SAR_MOC.md b/content/synthetic_aperture_radar_imaging/SAR_MOC.md index b7d4cbe37..88eff5235 100644 --- a/content/synthetic_aperture_radar_imaging/SAR_MOC.md +++ b/content/synthetic_aperture_radar_imaging/SAR_MOC.md @@ -3,7 +3,7 @@ title: "Synthetic Aperture Radar (SAR) Imaging - MOC" tags: - SAR - MOC -date: 2024-02-28 +date: 2023-06-30 --- diff --git a/content/tmp_script/Common_Issues_in_DSP_Homework_Script.md b/content/tmp_script/Common_Issues_in_DSP_Homework_Script.md index 13bad6c8c..e1396b569 100644 --- a/content/tmp_script/Common_Issues_in_DSP_Homework_Script.md +++ b/content/tmp_script/Common_Issues_in_DSP_Homework_Script.md @@ -2,7 +2,7 @@ title: Common Issues in DSP Homework tags: - homework -date: 2024-02-28 +date: 2023-11-20 --- # Issue 1- Compute the unit-pulse response h[n] diff --git a/content/tmp_script/interview_31_ans.md b/content/tmp_script/interview_31_ans.md index 27ced14c8..6dcf63ecf 100644 --- a/content/tmp_script/interview_31_ans.md +++ b/content/tmp_script/interview_31_ans.md @@ -2,7 +2,7 @@ title: 2023三位一体 - 生医工面试真题 tags: - tmp -date: 2024-02-28 +date: 2023-06-14 --- diff --git a/content/tmp_script/prefix_sum.md b/content/tmp_script/prefix_sum.md index 2f6df9a07..81796c828 100644 --- a/content/tmp_script/prefix_sum.md +++ b/content/tmp_script/prefix_sum.md @@ -2,7 +2,7 @@ title: Prefix Sum tags: - basic -date: 2024-02-28 +date: 2023-07-12 --- 假设我们有一个长度为n的数组arr,**前缀和**数组prefixSum的定义如下: diff --git a/content/toolkit/git/git_MOC.md b/content/toolkit/git/git_MOC.md index 8c4edad7d..b3bfccdba 100644 --- a/content/toolkit/git/git_MOC.md +++ b/content/toolkit/git/git_MOC.md @@ -3,7 +3,7 @@ title: Git MOC tags: - git - basic -date: 2024-02-28 +date: 2023-06-16 --- * [GitHub Actions](toolkit/git/github_actions.md) \ No newline at end of file diff --git a/content/toolkit/git/github_actions.md b/content/toolkit/git/github_actions.md index ccfddec2a..e186c2d5b 100644 --- a/content/toolkit/git/github_actions.md +++ b/content/toolkit/git/github_actions.md @@ -3,7 +3,7 @@ title: GitHub Actions tags: - git - git-action -date: 2024-02-28 +date: 2023-06-16 --- # Reference diff --git a/content/warehouse/IELTS.md b/content/warehouse/IELTS.md index cd9f85a80..519fe7fef 100644 --- a/content/warehouse/IELTS.md +++ b/content/warehouse/IELTS.md @@ -3,7 +3,7 @@ title: IELTS material tags: - material - IELTS -date: 2024-02-28 +date: 2023-10-16 --- [IELTS Reading Material.zip](https://pinktalk.online/warehouse/attachments/reading_3_4_ieltsonlinetests.com_reading_3_4.zip) \ No newline at end of file diff --git a/content/warehouse/dampers_keeping_a_door_from_slamming shut.md b/content/warehouse/dampers_keeping_a_door_from_slamming shut.md index 374bedc52..2503499d5 100644 --- a/content/warehouse/dampers_keeping_a_door_from_slamming shut.md +++ b/content/warehouse/dampers_keeping_a_door_from_slamming shut.md @@ -1,6 +1,6 @@ --- title: Dampers keeping a door from slamming shut -date: 2024-02-28 +date: 2023-04-04 --- ![](warehouse/attachments/Pasted%20image%2020230404150745.png) \ No newline at end of file