A Journal Through My Activities, Thoughts, and Notes
来自豆瓣网友 透明 的书评: “中国制造”的普遍问题:太重视成本,对细节重视不足。其实把细节做得更好,很多时候并不需要更高的成本,只是需要更用心、更在意。在乎成本太久,就忘了对完美的追求。#网摘
#网友语录 Jess 独裁者生活在真空泡泡里
独裁者不只是政治家。那些在生活中习惯支配、拒绝反馈的人,也是一个个小型独裁者。
所以“理应见多识广”的他们满嘴荒唐话--不是源于无知,而是因为他们活在一个只有回音、不容反驳的泡泡里。
权力越集中,认知越封闭。不是他们没见过世界,而是只见过围着他们转的世界。
独裁者不只是政治家。那些在生活中习惯支配、拒绝反馈的人,也是一个个小型独裁者。
所以“理应见多识广”的他们满嘴荒唐话--不是源于无知,而是因为他们活在一个只有回音、不容反驳的泡泡里。
权力越集中,认知越封闭。不是他们没见过世界,而是只见过围着他们转的世界。
We live our lives in chains and we never know we have the key. --The Eagles (我们的人生被锁链束缚,却不知钥匙就在自己手中)#网摘
We do not use tools simply because they are friendly. We use tools to accomplish tasks, and we abandon tools when the effort required to make the tool deliver exceeds our threshold of indignation. 我们不会仅仅因为工具好用就使用工具。我们使用工具是为了解决问题。当使用工具需要的努力超过人能忍耐的极限时,就会放弃使用工具。#观点
Advice from a tree
• Stand tall and proud
• Go out on a limb
• Remember your roots
• Drink plenty of water
• Be content with your natural beauty
• Enjoy the view
#网摘
• Stand tall and proud
• Go out on a limb
• Remember your roots
• Drink plenty of water
• Be content with your natural beauty
• Enjoy the view
#网摘
#网友语录 mtfront 今天和朋友聊到了一些传统行业的人觉得厌班的一个原因是工作太 repetitive。只在科技行业干过的我确实完全没有意识到自己确实每天都在处理新的 challenge ,完全不会觉得工作 repetitive 这件事(厌班有别的理由)。
之前一直觉得科技行业不配 getting paid this much,因为做的东西也就是一些草台班子糊弄根本不高级没什么技术含量。但压根没想过可能很多别的工作真的是非常机械重复。从处理新的 challenge 这个角度来看,或许可能 maybe 这些草台班子 bullshit job 里还是有一丝丝含金量的?(not saying it's worth the pay though)
之前一直觉得科技行业不配 getting paid this much,因为做的东西也就是一些草台班子糊弄根本不高级没什么技术含量。但压根没想过可能很多别的工作真的是非常机械重复。从处理新的 challenge 这个角度来看,或许可能 maybe 这些草台班子 bullshit job 里还是有一丝丝含金量的?(not saying it's worth the pay though)
“假如你遇到一种可疑的说法,这种说法对自己又过于有利,这种说法准不对,因为它是编出来自己骗自己的!”
“凡把复杂的问题说得小葱拌豆腐一清二白者,凡把困难的任务说得如探囊取物唾手可得者,皆不可信。”
--王小波
#书摘
“凡把复杂的问题说得小葱拌豆腐一清二白者,凡把困难的任务说得如探囊取物唾手可得者,皆不可信。”
--王小波
#书摘
The GitHub CLI (gh) does indeed have functionality to create a remote repository from a local Git repository and push to it. This is accomplished using the gh repo create command.
The specific command that would accomplish what you're asking about is:
Breaking down this command:
-
-
-
-
-
-
Or more simply, you can omit the name parameter. This will use your current directory name as the remote repository name by default.
#github #gh
The specific command that would accomplish what you're asking about is:
gh repo create <repository-name> --public|private --source=. --push
Breaking down this command:
-
gh repo create
is the base command to create a GitHub repository-
<repository-name>
is the name you want to give your GitHub repository-
--public
specifies the newly created repo is public-
--private
specifies the newly created repo is private-
--source=.
specifies that the current directory is the source (local Git repository)-
--push
automatically pushes the local repository contents to the new GitHub repositoryOr more simply, you can omit the name parameter. This will use your current directory name as the remote repository name by default.
#github #gh