Add timing

This commit is contained in:
PinkR1ver 2024-03-01 20:08:41 +08:00
parent 76be1ca8a3
commit 90149013a3
115 changed files with 205 additions and 19 deletions

View File

View File

Before

Width:  |  Height:  |  Size: 1.4 MiB

After

Width:  |  Height:  |  Size: 1.4 MiB

View File

@ -1,8 +1,9 @@
---
title: "Home"
title: Home
tags:
- catalog
- MOC
- catalog
- MOC
date: 2023-09-13
---
🕵️‍♂️ This is Jude Wang's vault about his notebook, his knowledge, his second brain.

View File

@ -1,7 +1,8 @@
---
title: Atlas - Map of Maps
tags:
- MOC
- MOC
date: 2023-03-16
---
🚧 There are notebooks about his research career:

View File

@ -3,6 +3,7 @@ title: Code Framework Learn
tags:
- web
- code_tool
date: 2023-06-06
---
# Web Framework

View File

@ -1,3 +1,4 @@
---
title: Flask - MOC
date: 2023-06-06
---

View File

@ -4,6 +4,7 @@ tags:
- basic
- coding-language
- MOC
date: 2023-06-06
---
# Python

View File

@ -1,8 +0,0 @@
---
title: Matplotlib Backend Review
tags:
- python
- code
- matplotlib
---

View File

@ -4,6 +4,7 @@ tags:
- python
- coding-language
- basic
date: 2023-06-06
---

View File

@ -4,6 +4,7 @@ tags:
- math
- MOC
- geometry
date: 2024-02-28
---
# 3D Geometry Algorithm

View File

@ -3,6 +3,7 @@ title: Delaunay Triangulation
tags:
- math
- geometry
date: 2024-02-28
---
# What is Delaunay Triangulation?

View File

@ -4,6 +4,7 @@ tags:
- MOC
- algorithm
- data-structure
date: 2024-02-28
---
# Tree-like Structure

View File

@ -4,6 +4,7 @@ tags:
- data-structure
- basic
- algorithm
date: 2024-02-28
---
# Basic Concept

View File

@ -3,5 +3,6 @@ title: Minimum Spanning Tree
tags:
- data-structure
- graph
date: 2024-02-28
---
Not now...

View File

@ -3,5 +3,6 @@ title: Two Pointers
tags:
- algorithm
- pointer
date: 2024-02-28
---

View File

@ -3,6 +3,7 @@ title: Model Evaluation - MOC
tags:
- deep-learning
- evaluation
date: 2024-02-28
---
* [Model Evaluation in Time Series Forecasting](computer_sci/deep_learning_and_machine_learning/Evaluation/time_series_forecasting.md)

View File

@ -3,6 +3,7 @@ title: Famous Model MOC
tags:
- deep-learning
- MOC
date: 2024-02-28
---
# Time-series

View File

@ -4,5 +4,6 @@ tags:
- deep-learning
- model
- time-series-dealing
date: 2024-02-28
---

View File

@ -4,6 +4,7 @@ tags:
- LLM
- basic
- langchain
date: 2024-02-28
---
# What is LangChain

View File

@ -5,6 +5,7 @@ tags:
- metircs
- deep-learning
- benchmark
date: 2024-02-28
---
# Overview

View File

@ -4,5 +4,6 @@ tags:
- dataset
- LLM
- deep-learning
date: 2024-02-28
---

View File

@ -3,5 +3,6 @@ title: How to do use fine tune tech to create your chatbot
tags:
- deep-learning
- LLM
date: 2024-02-28
---

View File

@ -5,6 +5,7 @@ tags:
- LLM
- fine-tune
- LLaMA
date: 2024-02-28
---
![](computer_sci/deep_learning_and_machine_learning/LLM/train/finr_tune/attachments/Pasted%20image%2020230627145954.png)

View File

@ -4,6 +4,7 @@ tags:
- MOC
- deep-learning
- interpretability
date: 2024-02-28
---
* [SHAP](computer_sci/deep_learning_and_machine_learning/Model_interpretability/SHAP.md)

View File

@ -5,5 +5,6 @@ tags:
- deep-learning
- tokenization
- basic
date: 2024-02-28
---

View File

@ -4,6 +4,7 @@ tags:
- machine-learning
- clustering
- algorithm
date: 2024-02-28
---
# Step by Step

View File

@ -3,5 +3,6 @@ title: Gated Recurrent Unit
tags:
- deep-learning
- time-series-dealing
date: 2024-02-28
---

View File

@ -3,6 +3,7 @@ title: AdaBoost
tags:
- deep-learning
- ensemble-learning
date: 2024-02-28
---
# Video you need to watch first

View File

@ -2,6 +2,7 @@
title: Decision Tree
tags:
- machine-learning
date: 2024-02-28
---
Only vedio here:

View File

@ -3,6 +3,7 @@ title: Deep Learning MOC
tags:
- Catalog
- MOC
date: 2024-02-28
---

View File

@ -2,6 +2,7 @@
title: Random Forest
tags:
- machine-learning
date: 2024-02-28
---
# Background

View File

@ -3,5 +3,6 @@ title: Machine Learning MOC
tags:
- MOC
- machine-learning
date: 2024-02-28
---
* [SVM](computer_sci/deep_learning_and_machine_learning/machine_learning/SVM.md)

View File

@ -4,6 +4,7 @@ tags:
- MOC
- hardware
- chip
date: 2024-02-28
---
# Microcontroller unit (MCU)

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

View File

@ -0,0 +1,13 @@
---
title: Conway's Law
tags:
- software-arch
date: 2024-03-01
---
![](computer_sci/software_arch/attachments/Pasted%20image%2020240301112048.png)
Conway's Law is essentially the observation that the **architectures of software systems look remarkably similar to the organization of the development team** that built it. It was originally described to me by saying that if a single team writes a compiler, it will be a one-pass compiler, but if the team is divided into two, then it will be a two-pass compiler. Although we usually discuss it with respect to software, the observation applies broadly to systems in general.
# Reference
* https://martinfowler.com/bliki/ConwaysLaw.html

View File

@ -3,6 +3,7 @@ title: Data science MOC
tags:
- data
- statistics
date: 2024-02-28
---
# Basic Concept

View File

@ -4,6 +4,7 @@ tags:
- MOC
- statistics
- stochastic-process
date: 2024-02-28
---
# Basic Concept

View File

@ -3,6 +3,7 @@ title: Visual Information Theory
tags:
- data
- visualization-tech
date: 2024-02-28
---
# Reference

View File

@ -3,6 +3,7 @@ title: Food - MOC
tags:
- food
- MOC
date: 2023-12-01
---
# Intro

View File

@ -2,6 +2,7 @@
title: Evaluation Criteria
tags:
- food
date: 2023-12-01
---

View File

@ -3,6 +3,7 @@ title: Log 2023.07.01 - 云朵也是会动滴☁️
tags:
- log
- photography
date: 2023-07-01
---
晚上去食堂吃饭的路上,看到了今天最棒的云

View File

@ -4,6 +4,7 @@ tags:
- pixel-art
- log
- clustering
date: 2023-07-03
---
今天用k-means聚类算法做了一个像素化的效果还蛮好玩的

View File

@ -3,6 +3,7 @@ title: Log 2023.09.27 数学建模比赛结束的第二天
tags:
- math
- log
date: 2023-09-27
---
# What I learn from MCM

View File

@ -2,6 +2,7 @@
title: kk's note
tags:
- log
date: 2024-02-28
---
## 2023.02.19

View File

@ -2,6 +2,7 @@
title: kk's Unified National Graduate Entrance Examination —— Study Plan
tags:
- log
date: 2024-02-19
---
# Plan 2.19 - 2.31

View File

@ -4,6 +4,7 @@ tags:
- log
- daily
- 文学
date: 2023-07-01
---
# Log 2023

View File

@ -3,6 +3,7 @@ title: Math MOC
tags:
- math
- MOC
date: 2024-02-28
---
# Statistics

View File

@ -4,5 +4,6 @@ tags:
- paper-draft
date: 2024-02-28
draft: "true"
date: 2024-02-28
---

View File

@ -5,6 +5,7 @@ tags:
- Polaroid
- film
- skill
date: 2024-02-28
---
The most thing you need to know is that, **the right exposure is in your head**.

View File

@ -4,6 +4,7 @@ tags:
- photography
- landscape
- MOC
date: 2024-02-28
---
* [🌊Sea MOC](photography/aesthetic/Landscape/Sea/Sea_MOC.md)

View File

@ -4,6 +4,7 @@ tags:
- photography
- Polaroid
- MOC
date: 2024-02-28
---
* [🖼How to show Polaroid photo in a great way](photography/aesthetic/Polaroid/Polaroid_showcase.md)

View File

@ -4,6 +4,7 @@ tags:
- photography
- portrait
- 摘抄
date: 2024-02-28
---
Credits to [Marta Bevacqua](https://www.martabevacquaphotography.com/),

View File

@ -5,6 +5,7 @@ tags:
- portrait
- 摘抄
- MOC
date: 2024-02-28
---
* [🌸Flower & Girl](photography/aesthetic/Portrait/Flower_and_Girl.md)

View File

@ -5,6 +5,7 @@ tags:
- grainy
- style
- share
date: 2024-02-28
---
![](photography/aesthetic/Style/attachments/cinematicshine_326914596_601425291912114_4038822895364546166_n.jpg)

View File

@ -3,6 +3,7 @@ title: 🎈Warmth - Nguan
tags:
- share
- photography
date: 2024-02-28
---
Credits to [Nguan](https://www.instagram.com/_nguan_/)

View File

@ -3,6 +3,7 @@ title: Saturation - 饱和度
tags:
- basic
- photography
date: 2024-02-28
---
to be written...

View File

@ -5,6 +5,7 @@ tags:
- lens
- MOC
- review
date: 2024-02-28
---
*

View File

@ -5,6 +5,7 @@ tags:
- review
- MOC
- camera
date: 2024-02-28
---
# Rollei

View File

@ -6,6 +6,7 @@ tags:
- rollei
- camera
- review
date: 2024-02-28
---

View File

@ -5,6 +5,7 @@ tags:
- camera
- review
- photography
date: 2024-02-28
---
# Reference

View File

@ -5,6 +5,7 @@ tags:
- photography
- review
- polaroid
date: 2024-02-28
---

View File

@ -4,6 +4,7 @@ tags:
- moodboard
- photography
- landscape
date: 2024-02-28
---

View File

@ -5,6 +5,7 @@ tags:
- meme
- film
- happy
date: 2024-02-28
---
![](photography/photography_meme/attachments/QQ图片20230424193512.png)

View File

@ -3,6 +3,7 @@ title: Photography Resume
tags:
- resume
- photography
date: 2024-02-28
---
<div style="margin:auto;width: 50%; transform: translate(50%, 0);">
<tr>

View File

@ -4,6 +4,7 @@ tags:
- physics
- MOC
- electromagnetism
date: 2024-02-28
---
# Basic

View File

@ -3,6 +3,7 @@ title: Physics MOC
tags:
- physics
- MOC
date: 2024-02-28
---
# Electromagnetism

View File

@ -1,8 +1,9 @@
---
title: Recent note
tags:
- recent
- readme
- recent
- readme
date: 2023-12-03
---
```dataview

View File

@ -3,6 +3,7 @@ title: UWB Board OPA699 I/O Test
tags:
- hardware
- UWB
date: 2024-02-28
---
# OPA699 Pin Configuration

View File

@ -3,6 +3,7 @@ title: UWB Board OPA699 I/O Test 1.1
tags:
- hardware
- UWB
date: 2024-02-28
---
# OPA699 Pin Configuration

View File

@ -3,6 +3,7 @@ title: UWB Board Port 3 Test
tags:
- UWB
- hardware
date: 2024-02-28
---
# Receiver Board Testing

View File

@ -4,6 +4,7 @@ tags:
- UWB
- devices
- hardware
date: 2024-02-28
---
# Key files

View File

@ -3,6 +3,7 @@ title: UWB Device Setup Test Report
tags:
- UWB
- "#hardware"
date: 2024-02-28
---
# Voltage Test Table

View File

@ -4,6 +4,7 @@ tags:
- UWB
- hardware
- devices
date: 2024-02-28
---
# Voltage Test Table

View File

@ -6,6 +6,7 @@ tags:
- VNA
- UWB
- signal-processing
date: 2024-02-28
---
## Objective

View File

@ -4,6 +4,7 @@ tags:
- VNA
- UWB
- report
date: 2024-02-28
---
## Objective
1. A VNA based experiment setup is constructed for mimicking UWB apparatus.

View File

@ -3,4 +3,5 @@ title: InfiniiMax Probes
tags:
- devices
- equipment
date: 2024-02-28
---

View File

@ -4,4 +4,5 @@ tags:
- devices
- equipment
- signal
date: 2024-02-28
---

View File

@ -4,6 +4,7 @@ tags:
- devices
- hardware
- equipment
date: 2024-02-28
---
# ST-link Connection

View File

@ -3,6 +3,7 @@ title: Papers Read
tags:
- work-about
- research-about
date: 2024-02-28
---
* [Papers Read in 2023.10](research_career/papers_read/papers_2023_10.md)

View File

@ -1,8 +1,9 @@
---
title: Resume
tags:
- resume
- readme
- resume
- readme
date: 2023-03-16
---
<div style="margin:auto;width: 50%; transform: translate(50%, 0);">

View File

@ -4,4 +4,5 @@ tags:
- signal
- signal-processing
- UWB
date: 2024-02-28
---

View File

@ -5,6 +5,7 @@ tags:
- signal
- fourier-transform
- math
date: 2024-02-28
---
# Fourier Transform Paris

View File

@ -3,6 +3,7 @@ title: FBW - Fractional Bandwidth
tags:
- gauss-pulse
- basic
date: 2024-02-28
---
# Reference

View File

@ -3,4 +3,5 @@ title: Spectral Density
tags:
- signal
- basic
date: 2024-02-28
---

View File

@ -3,6 +3,7 @@ title: What is dB
tags:
- signal-processing
- basic
date: 2024-02-28
---
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.

View File

@ -4,6 +4,7 @@ tags:
- devices
- equipment
- cable
date: 2024-02-28
---

View File

@ -5,6 +5,7 @@ tags:
- equipment
- devices
- cable
date: 2024-02-28
---
# You should know:

View File

@ -3,6 +3,7 @@ title: Antenna Feeding Tech
tags:
- signal-processing
- antenna
date: 2024-02-28
---

View File

@ -4,6 +4,7 @@ tags:
- UWB
- signal-processing
- signal-generating
date: 2024-02-28
---
# Equation

View File

@ -5,6 +5,7 @@ tags:
- radio
- physics
- electromagnetism
date: 2024-02-28
---

View File

@ -3,6 +3,7 @@ title: Signal Processing - MOC
tags:
- MOC
- signal-processing
date: 2024-02-28
---
# Basic

View File

@ -3,6 +3,7 @@ title: "Synthetic Aperture Radar (SAR) Imaging - MOC"
tags:
- SAR
- MOC
date: 2024-02-28
---

View File

@ -2,6 +2,7 @@
title: Common Issues in DSP Homework
tags:
- homework
date: 2024-02-28
---
# Issue 1- Compute the unit-pulse response h[n]

View File

@ -3,6 +3,7 @@ title: Git MOC
tags:
- git
- basic
date: 2024-02-28
---
* [GitHub Actions](toolkit/git/github_actions.md)

View File

@ -3,6 +3,7 @@ title: GitHub Actions
tags:
- git
- git-action
date: 2024-02-28
---
# Reference

View File

@ -3,6 +3,7 @@ title: IELTS material
tags:
- material
- IELTS
date: 2024-02-28
---
[IELTS Reading Material.zip](https://pinktalk.online/warehouse/attachments/reading_3_4_ieltsonlinetests.com_reading_3_4.zip)

View File

@ -1,5 +1,6 @@
---
title: Dampers keeping a door from slamming shut
date: 2024-02-28
---
![](warehouse/attachments/Pasted%20image%2020230404150745.png)

View File

@ -4,4 +4,5 @@ tags:
- article
- 文学
- MOC
date: 2023-05-01
---

View File

@ -2,6 +2,7 @@
title: Poem in 2018
tags:
- poem
date: 2023-05-01
---
> [!quote]

Some files were not shown because too many files have changed in this diff Show More