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 ---  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 ---  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 ---  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 ---  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 ---  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 ---  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 ---  \ 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 ---