@ -0,0 +1,3 @@ |
|||
{ |
|||
"extends": ["@commitlint/config-conventional"] |
|||
} |
@ -0,0 +1,9 @@ |
|||
root = true |
|||
|
|||
[*] |
|||
indent_style = space |
|||
indent_size = 2 |
|||
charset = utf-8 |
|||
end_of_line = lf |
|||
trim_trailing_whitespace = true |
|||
insert_final_newline = true |
@ -0,0 +1,55 @@ |
|||
{ |
|||
"plugins": ["prettier"], |
|||
"extends": ["next", "next/core-web-vitals", "prettier"], |
|||
"rules": { |
|||
"prettier/prettier": "error", |
|||
"camelcase": "off", |
|||
"import/prefer-default-export": "off", |
|||
"react/jsx-filename-extension": "off", |
|||
"react/jsx-props-no-spreading": "off", |
|||
"react/no-unused-prop-types": "off", |
|||
"react/require-default-props": "off", |
|||
"import/extensions": [ |
|||
"error", |
|||
"ignorePackages", |
|||
{ |
|||
"ts": "never", |
|||
"tsx": "never", |
|||
"js": "never", |
|||
"jsx": "never" |
|||
} |
|||
], |
|||
"quotes": "off", |
|||
"jsx-a11y/anchor-is-valid": [ |
|||
"error", |
|||
{ |
|||
"components": ["Link"], |
|||
"specialLink": ["hrefLeft", "hrefRight"], |
|||
"aspects": ["invalidHref", "preferButton"] |
|||
} |
|||
] |
|||
}, |
|||
"overrides": [ |
|||
{ |
|||
"files": "**/*.+(ts|tsx)", |
|||
"parser": "@typescript-eslint/parser", |
|||
"plugins": ["@typescript-eslint/eslint-plugin"], |
|||
"extends": ["plugin:@typescript-eslint/recommended", "prettier"], |
|||
"rules": { |
|||
"@typescript-eslint/explicit-function-return-type": "off", |
|||
"@typescript-eslint/explicit-module-boundary-types": "off", |
|||
"no-use-before-define": [0], |
|||
"@typescript-eslint/no-use-before-define": [1], |
|||
"@typescript-eslint/no-explicit-any": "off", |
|||
"@typescript-eslint/no-var-requires": "off", |
|||
"@typescript-eslint/quotes": [ |
|||
2, |
|||
"backtick", |
|||
{ |
|||
"avoidEscape": true |
|||
} |
|||
] |
|||
} |
|||
} |
|||
] |
|||
} |
@ -0,0 +1,29 @@ |
|||
name: Check PR |
|||
|
|||
on: [ pull_request ] |
|||
|
|||
jobs: |
|||
run-ci: |
|||
|
|||
name: Run Type Check & Linters |
|||
runs-on: ubuntu-latest |
|||
|
|||
steps: |
|||
- name: Checkout repository |
|||
uses: actions/checkout@v3 |
|||
with: |
|||
fetch-depth: 0 |
|||
|
|||
- name: Set up Node |
|||
uses: actions/setup-node@v3 |
|||
with: |
|||
node-version: 16 |
|||
|
|||
- name: Install dependencies (with cache) |
|||
uses: bahmutov/npm-install@v1 |
|||
|
|||
- name: Check types |
|||
run: yarn type-check |
|||
|
|||
- name: Check linting |
|||
run: yarn lint |
@ -0,0 +1,39 @@ |
|||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. |
|||
|
|||
# dependencies |
|||
/node_modules |
|||
/.pnp |
|||
.pnp.js |
|||
|
|||
# JetBrains IDE files |
|||
.idea/ |
|||
|
|||
# testing |
|||
/coverage |
|||
|
|||
# next.js |
|||
/.next/ |
|||
/out/ |
|||
|
|||
# production |
|||
/build |
|||
|
|||
# misc |
|||
.DS_Store |
|||
*.pem |
|||
tsconfig.tsbuildinfo |
|||
|
|||
# debug |
|||
npm-debug.log* |
|||
yarn-debug.log* |
|||
yarn-error.log* |
|||
|
|||
# local env files |
|||
.env |
|||
.env.local |
|||
.env.development.local |
|||
.env.test.local |
|||
.env.production.local |
|||
|
|||
# vercel |
|||
.vercel |
@ -0,0 +1,5 @@ |
|||
#!/bin/sh |
|||
. "$(dirname "$0")/_/husky.sh" |
|||
. "$(dirname "$0")/common.sh" |
|||
|
|||
yarn commitlint --edit $1 |
@ -0,0 +1,8 @@ |
|||
command_exists () { |
|||
command -v "$1" >/dev/null 2>&1 |
|||
} |
|||
|
|||
# Workaround for Windows 10, Git Bash and Yarn |
|||
if command_exists winpty && test -t 1; then |
|||
exec < /dev/tty |
|||
fi |
@ -0,0 +1,5 @@ |
|||
#!/bin/sh |
|||
. "$(dirname "$0")/_/husky.sh" |
|||
. "$(dirname "$0")/common.sh" |
|||
|
|||
yarn lint-staged |
@ -0,0 +1 @@ |
|||
save-exact = true |
@ -0,0 +1 @@ |
|||
12.22 |
@ -0,0 +1,6 @@ |
|||
{ |
|||
"trailingComma": "all", |
|||
"singleQuote": true, |
|||
"printWidth": 80, |
|||
"tabWidth": 2 |
|||
} |
@ -0,0 +1,5 @@ |
|||
/// <reference types="next" />
|
|||
/// <reference types="next/image-types/global" />
|
|||
|
|||
// NOTE: This file should not be edited
|
|||
// see https://nextjs.org/docs/basic-features/typescript for more information.
|
@ -0,0 +1,6 @@ |
|||
const withNextra = require("nextra")({ |
|||
theme: "nextra-theme-docs", |
|||
themeConfig: "./theme.config.js", |
|||
unstable_staticImage: true |
|||
}); |
|||
module.exports = withNextra(); |
@ -0,0 +1,53 @@ |
|||
{ |
|||
"name": "run", |
|||
"private": true, |
|||
"author": "Himself65 <[email protected]>", |
|||
"scripts": { |
|||
"dev": "next", |
|||
"build": "next build", |
|||
"start": "next start", |
|||
"type-check": "tsc", |
|||
"lint": "eslint --ignore-path .gitignore \"pages/**/*.+(ts|js|tsx)\"", |
|||
"format": "prettier --ignore-path .gitignore \"pages/**/*.+(ts|js|tsx)\" --write", |
|||
"postinstall": "husky install", |
|||
"commit": "cz" |
|||
}, |
|||
"lint-staged": { |
|||
"./pages/**/*.{ts,js,jsx,tsx}": [ |
|||
"yarn lint --fix", |
|||
"yarn format" |
|||
] |
|||
}, |
|||
"dependencies": { |
|||
"next": "^12.1.5", |
|||
"nextra": "^2.0.0-beta.5", |
|||
"nextra-theme-docs": "^2.0.0-beta.5", |
|||
"react": "^18.0.0", |
|||
"react-dom": "^18.0.0" |
|||
}, |
|||
"devDependencies": { |
|||
"@commitlint/cli": "^16.2.3", |
|||
"@commitlint/config-conventional": "^16.2.1", |
|||
"@types/node": "^16.11.27", |
|||
"@types/react": "^18.0.5", |
|||
"@types/react-dom": "^18.0.1", |
|||
"@typescript-eslint/eslint-plugin": "^5.19.0", |
|||
"@typescript-eslint/parser": "^5.19.0", |
|||
"commitizen": "^4.2.4", |
|||
"cz-conventional-changelog": "^3.3.0", |
|||
"eslint": "^8.13.0", |
|||
"eslint-config-next": "^12.1.5", |
|||
"eslint-config-prettier": "^8.5.0", |
|||
"eslint-import-resolver-typescript": "^2.7.1", |
|||
"eslint-plugin-prettier": "^4.0.0", |
|||
"husky": "^7.0.4", |
|||
"lint-staged": "^12.3.8", |
|||
"prettier": "^2.6.2", |
|||
"typescript": "^4.6.3" |
|||
}, |
|||
"config": { |
|||
"commitizen": { |
|||
"path": "cz-conventional-changelog" |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,6 @@ |
|||
import { AppProps } from 'next/app'; |
|||
import 'nextra-theme-docs/style.css'; |
|||
|
|||
export default function Nextra({ Component, pageProps }: AppProps) { |
|||
return <Component {...pageProps} />; |
|||
} |
@ -0,0 +1,7 @@ |
|||
{ |
|||
"index": "目录", |
|||
"weiwei-zhang": "张维为", |
|||
"yi-shen": "沈逸", |
|||
"xijin-hu": "胡锡进", |
|||
"ping-chen": "陈平" |
|||
} |
@ -0,0 +1,5 @@ |
|||
 |
|||
|
|||
# 陈平决策过程(Champion Decision Process)与赢化学习(Winning Learning) |
|||
|
|||
文章无法正常渲染,正在修复 |
@ -1,21 +1,23 @@ |
|||
 |
|||
|
|||
### 陈平原话 |
|||
|
|||
“把中国的发展目的定为进入高收入社会是西方的一个陷阱,是希望中国像它一样,然后就不干活了。 |
|||
所以讲那个高收入的优势,是不存在的。 |
|||
照我的计算,我在中国,如果我一个月有2000块钱,这个工资,我国的比在美国,有3000美元还要舒服的多。 |
|||
所以美国现在在水深火热里面,你明白吗?”(之后的省略……) |
|||
|
|||
视频源地址:https://www.bilibili.com/video/BV1nz4y1Q7KG/ |
|||
|
|||
看视频55秒处的讲台背景,应该是陈平在2019年5月30日的清华大学国情讲坛上的发言。类似的还有“美国人民生活在水深火热之中”等等,然而他本人却在新冠肺炎疫情期间跑到美国德州享受生活去了🤣。 |
|||
|
|||
转自网友评论: |
|||
|
|||
鲁迅不断公开批评自己所在的国家,但这个国家无论再糟糕他也没有离开它,他是爱国者。 |
|||
陈平不断公开批评自己所在的国家,但这个国家无论再糟糕他也没有离开它,所以他也是爱国者。 |
|||
|
|||
### 知名不等式的意义 |
|||
|
|||
陈平不等式就此诞生,又称Champion Inequality,后经互联网的传播而广为人知,成为21世纪中国对世界所作出的最重要的数学和经济学贡献之一。 |
|||
# 陈平不等式 |
|||
|
|||
 |
|||
|
|||
### 陈平原话 |
|||
|
|||
“把中国的发展目的定为进入高收入社会是西方的一个陷阱,是希望中国像它一样,然后就不干活了。 |
|||
所以讲那个高收入的优势,是不存在的。 |
|||
照我的计算,我在中国,如果我一个月有2000块钱,这个工资,我国的比在美国,有3000美元还要舒服的多。 |
|||
所以美国现在在水深火热里面,你明白吗?”(之后的省略……) |
|||
|
|||
视频源地址:https://www.bilibili.com/video/BV1nz4y1Q7KG/ |
|||
|
|||
看视频55秒处的讲台背景,应该是陈平在2019年5月30日的清华大学国情讲坛上的发言。类似的还有“美国人民生活在水深火热之中”等等,然而他本人却在新冠肺炎疫情期间跑到美国德州享受生活去了🤣。 |
|||
|
|||
转自网友评论: |
|||
|
|||
鲁迅不断公开批评自己所在的国家,但这个国家无论再糟糕他也没有离开它,他是爱国者。 |
|||
陈平不断公开批评自己所在的国家,但这个国家无论再糟糕他也没有离开它,所以他也是爱国者。 |
|||
|
|||
### 知名不等式的意义 |
|||
|
|||
陈平不等式就此诞生,又称Champion Inequality,后经互联网的传播而广为人知,成为21世纪中国对世界所作出的最重要的数学和经济学贡献之一。 |
@ -0,0 +1,6 @@ |
|||
{ |
|||
"index": "目录", |
|||
"inequality": "陈平不等式", |
|||
"with-yifu-lin": "陈平与林毅夫", |
|||
"chenpin-decision-and-double-win": "陈平决策过程与赢化学习" |
|||
} |
@ -0,0 +1,45 @@ |
|||
# 陈平与林毅夫 |
|||
|
|||
[原文链接](https://www.zhihu.com/question/444844068/answer/1742205871) |
|||
|
|||
[//todo]: # (fix link) |
|||
|
|||
**虚假的国士林毅夫老师**:冒着溺水和地雷的危险,靠一件救生衣只身自金门泅渡至厦门投共。隐性埋名留学后回国长居大陆 |
|||
,顶着上个时代的舆论风向压力,坚持谏言建设有为政府以引导市场 |
|||
,作为首席专家列席最高层经济规划座谈,是迄今中国大陆在国外经济学期刊发表最多论文的经济学者 |
|||
,官至世界银行副行长兼首席经济学家,与诺奖得主谈笑风生 |
|||
,但仍于北大每周亲自授课。至今仍被对岸小岛通缉 |
|||
,亲人去世只能远程视频遥祭。 |
|||
|
|||
**真正的国士陈平老师**:冒着疫情和断电的危险,深入敌后居住德州大house |
|||
。顶着国内996群体的无病呻吟,提出顾全大局严防美国打马恩牌保护劳工权益 |
|||
。坚持与小部分盲流单身国男做斗争,倡导为友邦贡献优质女性资源的和亲政策。加盟美籍商人 |
|||
领导下的观察者网,列席顶流全明星阵容, |
|||
引领反美舆论浪潮。远走美国多有苦衷,皆因个人在国内的科研效率仅有美国的5%。在中美两国间畅通无阻,陪同家人两全其美。 |
|||
|
|||
在这个时代下,迎合推荐算法帮助资本提升流量股价估值的是哪种人,真正决策者信任能在幕后运筹帷幄呼风唤雨的又是哪种人,相信不必多言了吧。 |
|||
|
|||
<img src="https://pica.zhimg.com/80/v2-0be677d3169bf72e80644ded65b441b1_1440w.jpg?source=1940ef5c" alt="img" /> |
|||
|
|||
## 参考 |
|||
|
|||
1. [林毅夫叛逃事件 - 维基百科](https://zh.wikipedia.org/wiki/林毅夫叛逃事件) |
|||
2. [林毅夫 · 留美结束回到中国大陆 - 维基百科 ](https://zh.wikipedia.org/wiki/林毅夫#留美結束回到中國大陸) |
|||
3. [林毅夫与杨小凯、张维迎的学术交锋 - 北大商学在线](http://www.pkubiz.com/news/edp.asp?id=588) |
|||
4. [2020 年经济社会领域专家座谈会 - 新华网](http://finance.people.com.cn/n1/2020/0728/c1004-31800736.html) |
|||
5. [2020 年经济社会领域专家座谈会 - 新华网](http://www.xinhuanet.com/politics/leaders/2020-08/24/c_1126407763.htm) |
|||
6. [林毅夫 · 研究领域 - 百度百科](https://baike.baidu.com/item/林毅夫#2_3) |
|||
7. [林毅夫 · 工作简历 - 维基百科 ](https://zh.wikipedia.org/wiki/林毅夫#工作簡歷) |
|||
8. [诺奖得主斯蒂格利茨对话林毅夫 - 21 财经 ](https://m.21jingji.com/article/20200705/herald/6f5d3f991bd616d40eb69732bbb2b528.html) |
|||
9. [如何评价林毅夫?- 知乎](https://www.zhihu.com/question/21447982/answer/22251283) |
|||
10. [台军方称继续“通缉”世界银行副行长林毅夫 - 凤凰网](http://news.ifeng.com/mil/taiwan/200803/0310_1569_433801.shtml) |
|||
11. [林毅夫奔丧争议与台湾法律追诉 - 维基百科](https://zh.wikipedia.org/zh-hk/林毅夫奔喪爭議與臺灣法律追訴) |
|||
12. [拜登宣布得克萨斯州进入重大灾难状态 - 腾讯新闻](https://new.qq.com/rain/a/20210221A04RQS00) |
|||
13. [陈平在美定居 - 网易新闻](https://www.163.com/dy/article/G35AAPD50545AUFL.html) |
|||
14. [拜登上台后会如何对付中国 - 微博搜索](https://s.weibo.com/weibo?q=%23拜登上台后会如何对付中国%23) |
|||
15. [对陈平和亲主张的评论 - 腾讯新闻](https://new.qq.com/rain/a/20200911A0LNR200) |
|||
16. [李世默国籍之我考 - 哔哩哔哩](https://www.bilibili.com/read/cv7851930/) |
|||
17. [陈平专栏 - 观察者网](https://www.guancha.cn/chenping1) |
|||
18. [观天下特邀陈平活动预告 - 观察者网](https://www.guancha.cn/essence/2018_04_05_452705.shtml) |
|||
19. 见文末附图 |
|||
20. 见文末附图 |
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.4 MiB |
Before Width: | Height: | Size: 438 KiB After Width: | Height: | Size: 438 KiB |
Before Width: | Height: | Size: 744 KiB After Width: | Height: | Size: 744 KiB |
@ -1,5 +1,5 @@ |
|||
语出B站《这就是中国》42集2分20秒处,网站: |
|||
|
|||
[这就是中国第42集-纪录片-高清正版在线观看-bilibili-哔哩哔哩](https://www.bilibili.com/bangumi/play/ep301215) |
|||
|
|||
 |
|||
语出B站《这就是中国》42集2分20秒处,网站: |
|||
|
|||
[这就是中国第42集-纪录片-高清正版在线观看-bilibili-哔哩哔哩](https://www.bilibili.com/bangumi/play/ep301215) |
|||
|
|||
 |
@ -0,0 +1,3 @@ |
|||
{ |
|||
"index": "目录" |
|||
} |
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.4 MiB |
@ -1,5 +1,5 @@ |
|||
语出叼盘侠2021年1月28日的一篇微博。 |
|||
|
|||
 |
|||
|
|||
|
|||
语出叼盘侠2021年1月28日的一篇微博。 |
|||
|
|||
 |
|||
|
|||
|
@ -0,0 +1,3 @@ |
|||
{ |
|||
"index": "目录" |
|||
} |
Before Width: | Height: | Size: 395 KiB After Width: | Height: | Size: 395 KiB |
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
@ -0,0 +1,3 @@ |
|||
{ |
|||
"index": "目录" |
|||
} |
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 316 KiB After Width: | Height: | Size: 316 KiB |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 49 KiB After Width: | Height: | Size: 49 KiB |
Before Width: | Height: | Size: 59 KiB After Width: | Height: | Size: 59 KiB |
Before Width: | Height: | Size: 77 KiB After Width: | Height: | Size: 77 KiB |
Before Width: | Height: | Size: 69 KiB After Width: | Height: | Size: 69 KiB |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 92 KiB |
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 70 KiB |
Before Width: | Height: | Size: 125 KiB After Width: | Height: | Size: 125 KiB |
Before Width: | Height: | Size: 118 KiB After Width: | Height: | Size: 118 KiB |
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 63 KiB |
Before Width: | Height: | Size: 121 KiB After Width: | Height: | Size: 121 KiB |
@ -1,7 +1,7 @@ |
|||
[来源](http://www.qstheory.cn/llqikan/2020-04/30/c_1125929217.htm) |
|||
|
|||
# 党的领导,是打赢疫情防控阻击战的根本保证 |
|||
|
|||
[来源](http://www.qstheory.cn/llqikan/2020-04/30/c_1125929217.htm) |
|||
|
|||
> 中国共产党的领导是中国特色社会主义最本质的特征,也是我国国家制度和国家治理体系的最大优势,这一制度优势在抗击新冠肺炎疫情过程中得到充分体现 |
|||
|
|||
这次新冠肺炎疫情,是新中国成立以来在我国发生的传播速度最快、感染范围最广、防控难度最大的一次重大突发公共卫生事件。对我们来说,这是一次危机,也是一次大考。经过艰苦努力,目前疫情防控形势积极向好的态势正在拓展,打赢疫情防控战争的曙光已经出现。 |
Before Width: | Height: | Size: 967 KiB After Width: | Height: | Size: 967 KiB |
Before Width: | Height: | Size: 716 KiB After Width: | Height: | Size: 716 KiB |
Before Width: | Height: | Size: 552 KiB After Width: | Height: | Size: 552 KiB |
Before Width: | Height: | Size: 776 KiB After Width: | Height: | Size: 776 KiB |
Before Width: | Height: | Size: 595 KiB After Width: | Height: | Size: 595 KiB |
Before Width: | Height: | Size: 927 KiB After Width: | Height: | Size: 927 KiB |
Before Width: | Height: | Size: 464 KiB After Width: | Height: | Size: 464 KiB |
Before Width: | Height: | Size: 940 KiB After Width: | Height: | Size: 940 KiB |
Before Width: | Height: | Size: 665 KiB After Width: | Height: | Size: 665 KiB |
Before Width: | Height: | Size: 498 KiB After Width: | Height: | Size: 498 KiB |
Before Width: | Height: | Size: 478 KiB After Width: | Height: | Size: 478 KiB |
Before Width: | Height: | Size: 514 KiB After Width: | Height: | Size: 514 KiB |
Before Width: | Height: | Size: 279 KiB After Width: | Height: | Size: 279 KiB |
Before Width: | Height: | Size: 487 KiB After Width: | Height: | Size: 487 KiB |
Before Width: | Height: | Size: 611 KiB After Width: | Height: | Size: 611 KiB |
Before Width: | Height: | Size: 133 KiB After Width: | Height: | Size: 133 KiB |
Before Width: | Height: | Size: 321 KiB After Width: | Height: | Size: 321 KiB |
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 86 KiB |
Before Width: | Height: | Size: 100 KiB After Width: | Height: | Size: 100 KiB |
Before Width: | Height: | Size: 240 KiB After Width: | Height: | Size: 240 KiB |
@ -0,0 +1,43 @@ |
|||
# 上海疫情逝者名单 |
|||
|
|||
记录在案的次生伤害: |
|||
|
|||
 |
|||
|
|||
 |
|||
|
|||
## Airtable |
|||
|
|||
链接: https://airtable.com/shrQw3CYR9N14a4iw/tblTv0f9KVySJACSN |
|||
|
|||
## 截图 |
|||
|
|||
 |
|||
|
|||
 |
|||
|
|||
 |
|||
|
|||
 |
|||
|
|||
 |
|||
|
|||
 |
|||
|
|||
 |
|||
|
|||
 |
|||
|
|||
 |
|||
|
|||
 |
|||
|
|||
 |
|||
|
|||
 |
|||
|
|||
 |
|||
|
|||
 |
|||
|
|||
 |
@ -0,0 +1,5 @@ |
|||
{ |
|||
"article-1": "党的领导是打赢疫情防控阻击战的根本保证", |
|||
"list": "上海疫情逝者名单", |
|||
"news": "方舱医院现状" |
|||
} |
@ -0,0 +1,7 @@ |
|||
# 搜狐报道方舱医院的情况 |
|||
|
|||
 |
|||
|
|||
 |
|||
|
|||
 |
@ -1,3 +1,5 @@ |
|||
# 当代互联网大厂的“岁静人” |
|||
|
|||
作者:[立党](https://twitter.com/lidangzzz),[原文](https://lidang.medium.com/%E5%BD%93%E4%BB%A3%E4%BA%92%E8%81%94%E7%BD%91%E5%A4%A7%E5%8E%82%E7%9A%84-%E5%B2%81%E9%9D%99%E4%BA%BA-53e29e326562) |
|||
|
|||
我其实不理解当代互联网大厂岁静人的逻辑。 |
@ -1,3 +1,5 @@ |
|||
# 我理解为什么有人会留在国内 |
|||
|
|||
我很明白现在,很多人,特别是有点小钱,有几套小房子,既得利益者群体留在国内的想法。 |
|||
|
|||
1990-2010年,是中国经济飞黄腾达飞速发展的20年。也是互联网刚刚兴起,网络监控技术手段欠缺,言论氛围非常宽松的年代。当然,和美国关系进入蜜月期,领导人也很开明。 |
@ -1,4 +1,6 @@ |
|||
> Author: @Andrew1771-re |
|||
# 润文解字 |
|||
|
|||
> > Author: @Andrew1771-re |
|||
|
|||
润者,走也。普天之下,莫非王土。然王土虽大,亦有边界。王土之界,乃国门也。国门之外,大洋浩瀚。故润字,象润者离王土、出国门、渡远洋三事。古人云,三十六计走为上。今人曰,三十六行润为上。 |
|||
|
@ -0,0 +1,6 @@ |
|||
{ |
|||
"article-1": "当代互联网大厂的“岁静人”", |
|||
"article-2": "我理解为什么有人会留在国内", |
|||
"article-3": "润文解字", |
|||
"article-4": "成都往事" |
|||
} |
Before Width: | Height: | Size: 138 KiB After Width: | Height: | Size: 138 KiB |
Before Width: | Height: | Size: 149 KiB After Width: | Height: | Size: 149 KiB |
Before Width: | Height: | Size: 101 KiB After Width: | Height: | Size: 101 KiB |
@ -1,3 +1,4 @@ |
|||
# 如何在国内申请美国绿卡 |
|||
|
|||
## 前言 |
|||
如果你的润的目的地是美国,那么润的终点是什么?不是刷题进大厂,也不是抽到H1B。润美国的终点是拿到绿卡。只有拿到了绿卡,你才真正成为美国永久居民,才可以自由自在的换工作、搬家。在你拿到绿卡之前,你都有工作突然被雷、签证续签被拒不得不卷铺盖回国的风险。而且考虑到美国绿卡排期问题,绿卡的难度越来越大。所以,润美国的成功标志是最终拿到绿卡。 |
@ -1,3 +1,5 @@ |
|||
# 浙大本科美国三本弗罗里达数据工程师 |
|||
|
|||
本人(普通人)的经历可供参考。 |
|||
|
|||
第一步:国内本科 |
@ -0,0 +1,5 @@ |
|||
# 硕士秋招SDE找工时间线总结 |
|||
|
|||
原文链接: [原文链接](https://github.com/yiyangiliu/US-MS-CS-Student-Find-A-Job/blob/master/README.md) |
|||
|
|||
P.S. 原文 markdown 格式有误,渲染直接崩溃了 |
@ -0,0 +1 @@ |
|||
# |
@ -0,0 +1,8 @@ |
|||
{ |
|||
"index": "目录", |
|||
"article-1": "一些常见的计算机去美国问题总结", |
|||
"article-2": "去美国当程序员V2.5.0", |
|||
"article-3": "如何在国内申请美国绿卡", |
|||
"article-4": "浙大本科美国三本弗罗里达数据工程师", |
|||
"article-5": "硕士秋招SDE找工时间线总结" |
|||
} |
@ -0,0 +1,4 @@ |
|||
# 爱尔兰双非非计算机 |
|||
|
|||
 |
|||
 |
@ -0,0 +1,3 @@ |
|||
{ |
|||
"article-1": "爱尔兰双非非计算机" |
|||
} |
Before Width: | Height: | Size: 210 KiB After Width: | Height: | Size: 210 KiB |
Before Width: | Height: | Size: 213 KiB After Width: | Height: | Size: 213 KiB |
@ -0,0 +1,6 @@ |
|||
{ |
|||
"cs": "计算机", |
|||
"accounting": "会计", |
|||
"liberal-arts": "文科", |
|||
"10043": "10043学校如何润" |
|||
} |