how to clear goal write down your goal set a deadline avoid distractions recording give a list a check
Beancount复式记账(一):为什么 - https://byvoid.com/zhs/blog/beancount-bookkeeping-1/
使用 Beancount 记账篇零:Beancount 入门使用 | Verne in GitHub - https://einverne.github.io/post/2021/02/beancount-introduction.html
equity = (Assets+ income)- (liability+expenses)
-: Debit +: credit
what: 每笔交易要记录到两个不同账户中, 且有借方和贷方
why:
错误检测: 所有账户借方需要等于贷方 知道资金流向 example:
Debit Credit Cash $10,000 Loan Payable $10,000 how: account example:
1 2 3 4 5 Assets:US:BofA:Checking Liabilities:CA:RBC:CreditCard Equity:Retained-Earnings Income:US:Acme:Salary Expenses:Food:Groceries tree hier:
1 2 3 4 5 6 7 8 9 `-- Assets |-- Receivables `-- US |-- BofA | |-- Checking | `-- Savings `-- Vanguard |-- Cash `-- RGAGX pad && balance
logseq what: 是一个网络化的大纲工具
feture:
网络化; 大纲; 网络化: 大纲: a list which use bullet to mark
123 123 213 1111 how to start:
在journal 使用大纲记录 使用缩进建立层级关系 使用聚集专注在某个项目下 使用slide bar 同时打开不同的block network create link: 1 2 [[xxx]] #tag use query todo task how to shortcuts Click to edit any block. Type Enter to start a new block. Type Shift+Enter to create a new line in the current block. Type / to show all the commands.
pass by value: pass the copy value of the arguments feture: any change made to the parameter won’t affect the origin value
pass by reference: pass the reference of the arguments feature: any change made to the parameter will affect the orgin value
example:
1 2 3 4 5 def increse(number): # number= the copy of x number++ x=100 increae(x) 1 2 3 4 5 6 7 8 9 // num = the reference(pointer) of x void increment(int& num) { num++; } int x = 5; increment(x); cout << x; // output: 6 problem: 为什么指针作为参数可以改变指针指向的值,却不是传递引用
use delimited symbol
1 2 summarize the text delimited by triple backticks into a single sentence ```xxxxx``` use step
1 2 3 1. translate to chinese 2. give more info 3. list each name think as much as possible instruct to model to work out its own solution before rushing to a conclusion