Skip to content

Commit 4dc3ef0

Browse files
committed
URL encoding Markdown links with spaces (Japanese version)
1 parent 86329f7 commit 4dc3ef0

File tree

3 files changed

+64
-64
lines changed

3 files changed

+64
-64
lines changed

jp/1-Beginner/README.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
# 1. Beginner
22
[//]: # (Version:1.0.0)
33
- Personal Skills
4-
- [Learn to Debug](Personal-Skills/01-Learn To Debug.md)
5-
- [How to Debug by Splitting the Problem Space](Personal-Skills/02-How to Debug by Splitting the Problem Space.md)
6-
- [How to Remove an Error](Personal-Skills/03-How to Remove an Error.md)
7-
- [How to Debug Using a Log](Personal-Skills/04-How to Debug Using a Log.md)
8-
- [How to Understand Performance Problems](Personal-Skills/05-How to Understand Performance Problems.md)
9-
- [How to Fix Performance Problems](Personal-Skills/06-How to Fix Performance Problems.md)
10-
- [How to Optimize Loops](Personal-Skills/07-How to Optimize Loops.md)
11-
- [How to Deal with I/O Expense](Personal-Skills/08-How to Deal with IO Expense.md)
12-
- [How to Manage Memory](Personal-Skills/09-How to Manage Memory.md)
13-
- [How to Deal with Intermittent Bugs](Personal-Skills/10-How to Deal with Intermittent Bugs.md)
14-
- [How to Learn Design Skills](Personal-Skills/11-How to Learn Design Skills.md)
15-
- [How to Conduct Experiments](Personal-Skills/12-How to Conduct Experiments.md)
4+
- [Learn to Debug](Personal-Skills/01-Learn%20To%20Debug.md)
5+
- [How to Debug by Splitting the Problem Space](Personal-Skills/02-How%20to%20Debug%20by%20Splitting%20the%20Problem%20Space.md)
6+
- [How to Remove an Error](Personal-Skills/03-How%20to%20Remove%20an%20Error.md)
7+
- [How to Debug Using a Log](Personal-Skills/04-How%20to%20Debug%20Using%20a%20Log.md)
8+
- [How to Understand Performance Problems](Personal-Skills/05-How%20to%20Understand%20Performance%20Problems.md)
9+
- [How to Fix Performance Problems](Personal-Skills/06-How%20to%20Fix%20Performance%20Problems.md)
10+
- [How to Optimize Loops](Personal-Skills/07-How%20to%20Optimize%20Loops.md)
11+
- [How to Deal with I/O Expense](Personal-Skills/08-How%20to%20Deal%20with%20IO%20Expense.md)
12+
- [How to Manage Memory](Personal-Skills/09-How%20to%20Manage%20Memory.md)
13+
- [How to Deal with Intermittent Bugs](Personal-Skills/10-How%20to%20Deal%20with%20Intermittent%20Bugs.md)
14+
- [How to Learn Design Skills](Personal-Skills/11-How%20to%20Learn%20Design%20Skills.md)
15+
- [How to Conduct Experiments](Personal-Skills/12-How%20to%20Conduct%20Experiments.md)
1616
- Team Skills
17-
- [Why Estimation is Important](Team-Skills/01-Why Estimation is Important.md)
18-
- [How to Estimate Programming Time](Team-Skills/02-How to Estimate Programming Time.md)
19-
- [How to Find Out Information](Team-Skills/03-How to Find Out Information.md)
20-
- [How to Utilize People as Information Sources](Team-Skills/04-How to Utilize People as Information Sources.md)
21-
- [How to Document Wisely](Team-Skills/05-How to Document Wisely.md)
22-
- [How to Work with Poor Code](Team-Skills/06-How to Work with Poor Code.md)
23-
- [How to Use Source Code Control](Team-Skills/07-How to Use Source Code Control.md)
24-
- [How to Unit Test](Team-Skills/08-How to Unit Test.md)
25-
- [Take Breaks when Stumped](Team-Skills/09-Take Breaks when Stumped.md)
26-
- [How to Recognize When to Go Home](Team-Skills/10-How to Recognize When to Go Home.md)
27-
- [How to Deal with Difficult People](Team-Skills/11-How to Deal with Difficult People.md)
17+
- [Why Estimation is Important](Team-Skills/01-Why%20Estimation%20is%20Important.md)
18+
- [How to Estimate Programming Time](Team-Skills/02-How%20to%20Estimate%20Programming%20Time.md)
19+
- [How to Find Out Information](Team-Skills/03-How%20to%20Find%20Out%20Information.md)
20+
- [How to Utilize People as Information Sources](Team-Skills/04-How%20to%20Utilize%20People%20as%20Information%20Sources.md)
21+
- [How to Document Wisely](Team-Skills/05-How%20to%20Document%20Wisely.md)
22+
- [How to Work with Poor Code](Team-Skills/06-How%20to%20Work%20with%20Poor%20Code.md)
23+
- [How to Use Source Code Control](Team-Skills/07-How%20to%20Use%20Source%20Code%20Control.md)
24+
- [How to Unit Test](Team-Skills/08-How%20to%20Unit%20Test.md)
25+
- [Take Breaks when Stumped](Team-Skills/09-Take%20Breaks%20when%20Stumped.md)
26+
- [How to Recognize When to Go Home](Team-Skills/10-How%20to%20Recognize%20When%20to%20Go%20Home.md)
27+
- [How to Deal with Difficult People](Team-Skills/11-How%20to%20Deal%20with%20Difficult%20People.md)

jp/2-Intermediate/README.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
# 2. Intermediate
22
[//]: # (Version:1.0.0)
33
- Personal Skills
4-
- [How to Stay Motivated](Personal-Skills/01-How to Stay Motivated.md)
5-
- [How to be Widely Trusted](Personal-Skills/02-How to be Widely Trusted.md)
6-
- [How to Tradeoff Time vs. Space](Personal-Skills/03-How to Tradeoff Time vs Space.md)
7-
- [How to Stress Test](Personal-Skills/04-How to Stress Test.md)
8-
- [How to Balance Brevity and Abstraction](Personal-Skills/05-How to Balance Brevity and Abstraction.md)
9-
- [How to Learn New Skills](Personal-Skills/06-How to Learn New Skills.md)
10-
- [Learn to Type](Personal-Skills/07-Learn to Type.md)
11-
- [How to Do Integration Testing](Personal-Skills/08-How to Do Integration Testing.md)
12-
- [Communication Languages](Personal-Skills/09-Communication Languages.md)
13-
- [Heavy Tools](Personal-Skills/10-Heavy Tools.md)
14-
- [How to analyze data](Personal-Skills/11-How to analyze data.md)
4+
- [How to Stay Motivated](Personal-Skills/01-How%20to%20Stay%20Motivated.md)
5+
- [How to be Widely Trusted](Personal-Skills/02-How%20to%20be%20Widely%20Trusted.md)
6+
- [How to Tradeoff Time vs. Space](Personal-Skills/03-How%20to%20Tradeoff%20Time%20vs%20Space.md)
7+
- [How to Stress Test](Personal-Skills/04-How%20to%20Stress%20Test.md)
8+
- [How to Balance Brevity and Abstraction](Personal-Skills/05-How%20to%20Balance%20Brevity%20and%20Abstraction.md)
9+
- [How to Learn New Skills](Personal-Skills/06-How%20to%20Learn%20New%20Skills.md)
10+
- [Learn to Type](Personal-Skills/07-Learn%20to%20Type.md)
11+
- [How to Do Integration Testing](Personal-Skills/08-How%20to%20Do%20Integration%20Testing.md)
12+
- [Communication Languages](Personal-Skills/09-Communication%20Languages.md)
13+
- [Heavy Tools](Personal-Skills/10-Heavy%20Tools.md)
14+
- [How to analyze data](Personal-Skills/11-How%20to%20analyze%20data.md)
1515
- Team Skills
16-
- [How to Manage Development Time](Team-Skills/01-How to Manage Development Time.md)
17-
- [How to Manage Third-Party Software Risks](Team-Skills/02-How to Manage Third-Party Software Risks.md)
18-
- [How to Manage Consultants](Team-Skills/03-How to Manage Consultants.md)
19-
- [How to Communicate the Right Amount](Team-Skills/04-How to Communicate the Right Amount.md)
20-
- [How to Disagree Honestly and Get Away with It](Team-Skills/05-How to Disagree Honestly and Get Away with It.md)
16+
- [How to Manage Development Time](Team-Skills/01-How%20to%20Manage%20Development%20Time.md)
17+
- [How to Manage Third-Party Software Risks](Team-Skills/02-How%20to%20Manage%20Third-Party%20Software%20Risks.md)
18+
- [How to Manage Consultants](Team-Skills/03-How%20to%20Manage%20Consultants.md)
19+
- [How to Communicate the Right Amount](Team-Skills/04-How%20to%20Communicate%20the%20Right%20Amount.md)
20+
- [How to Disagree Honestly and Get Away with It](Team-Skills/05-How%20to%20Disagree%20Honestly%20and%20Get%20Away%20with%20It.md)
2121
- Judgment
22-
- [How to Tradeoff Quality Against Development Time](Judgment/01-How to Tradeoff Quality Against Development Time.md)
23-
- [How to Manage Software System Dependence](Judgment/02-How to Manage Software System Dependence.md)
24-
- [How to Decide if Software is Too Immature](Judgment/03-How to Decide if Software is Too Immature.md)
25-
- [How to Make a Buy vs. Build Decision](Judgment/04-How to Make a Buy vs Build Decision.md)
26-
- [How to Grow Professionally](Judgment/05-How to Grow Professionally.md)
27-
- [How to Evaluate Interviewees](Judgment/06-How to Evaluate Interviewees.md)
28-
- [How to Know When to Apply Fancy Computer Science](Judgment/07-How to Know When to Apply Fancy Computer Science.md)
29-
- [How to Talk to Non-Engineers](Judgment/08-How to Talk to Non-Engineers.md)
22+
- [How to Tradeoff Quality Against Development Time](Judgment/01-How%20to%20Tradeoff%20Quality%20Against%20Development%20Time.md)
23+
- [How to Manage Software System Dependence](Judgment/02-How%20to%20Manage%20Software%20System%20Dependence.md)
24+
- [How to Decide if Software is Too Immature](Judgment/03-How%20to%20Decide%20if%20Software%20is%20Too%20Immature.md)
25+
- [How to Make a Buy vs. Build Decision](Judgment/04-How%20to%20Make%20a%20Buy%20vs%20Build%20Decision.md)
26+
- [How to Grow Professionally](Judgment/05-How%20to%20Grow%20zProfessionally.md)
27+
- [How to Evaluate Interviewees](Judgment/06-How%20to%20Evaluate%20Interviewees.md)
28+
- [How to Know When to Apply Fancy Computer Science](Judgment/07-How%20to%20Know%20When%20to%20Apply%20Fancy%20Computer%20Science.md)
29+
- [How to Talk to Non-Engineers](Judgment/08-How%20to%20Talk%20to%20Non-Engineers.md)

jp/3-Advanced/README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
# 3. Advanced
22
[//]: # (Version:1.0.0)
33
- Technological Judgment
4-
- [How to Tell the Hard From the Impossible](Technical-Judgment/01-How to Tell the Hard From the Impossible.md)
5-
- [How to Utilize Embedded Languages](Technical-Judgment/02-How to Utilize Embedded Languages.md)
6-
- [Choosing Languages](Technical-Judgment/03-Choosing Languages.md)
4+
- [How to Tell the Hard From the Impossible](Technical-Judgment/01-How%20to%20Tell%20the%20Hard%20From%20the%20Impossible.md)
5+
- [How to Utilize Embedded Languages](Technical-Judgment/02-How%20to%20Utilize%20Embedded%20Languages.md)
6+
- [Choosing Languages](Technical-Judgment/03-Choosing%20Languages.md)
77
- Compromising Wisely
8-
- [How to Fight Schedule Pressure](Compromising-Wisely/01-How to Fight Schedule Pressure.md)
9-
- [How to Understand the User](Compromising-Wisely/02-How to Understand the User.md)
10-
- [How to Get a Promotion](Compromising-Wisely/03-How to Get a Promotion.md)
8+
- [How to Fight Schedule Pressure](Compromising-Wisely/01-How%20to%20Fight%20Schedule%20Pressure.md)
9+
- [How to Understand the User](Compromising-Wisely/02-How%20to%20Understand%20the%20User.md)
10+
- [How to Get a Promotion](Compromising-Wisely/03-How%20to%20Get%20a%20Promotion.md)
1111
- Serving Your Team
12-
- [How to Develop Talent](Serving-Your-Team/01-How to Develop Talent.md)
13-
- [How to Choose What to Work On](Serving-Your-Team/02-How to Choose What to Work On.md)
14-
- [How to Get the Most From Your Team-mates](Serving-Your-Team/03-How to Get the Most From Your Teammates.md)
15-
- [How to Divide Problems Up](Serving-Your-Team/04-How to Divide Problems Up.md)
16-
- [How to Handle Boring Tasks](Serving-Your-Team/05-How to Handle Boring Tasks.md)
17-
- [How to Gather Support for a Project](Serving-Your-Team/06-How to Gather Support for a Project.md)
18-
- [How to Grow a System](Serving-Your-Team/07-How to Grow a System.md)
19-
- [How to Communicate Well](Serving-Your-Team/08-How to Communicate Well.md)
20-
- [How to Tell People Things They Don't Want to Hear](Serving-Your-Team/09-How to Tell People Things They Don't Want to Hear.md)
21-
- [How to Deal with Managerial Myths](Serving-Your-Team/10-How to Deal with Managerial Myths.md)
22-
- [How to Deal with Organizational Chaos](Serving-Your-Team/11-How to Deal with Organizational Chaos.md)
12+
- [How to Develop Talent](Serving-Your-Team/01-How%20to%20Develop%20Talent.md)
13+
- [How to Choose What to Work On](Serving-Your-Team/02-How%20to%20Choose%20What%20to%20Work%20On.md)
14+
- [How to Get the Most From Your Team-mates](Serving-Your-Team/03-How%20to%20Get%20the%20Most%20From%20Your%20Teammates.md)
15+
- [How to Divide Problems Up](Serving-Your-Team/04-How%20to%20Divide%20Problems%20Up.md)
16+
- [How to Handle Boring Tasks](Serving-Your-Team/05-How%20to%20Handle%20Boring%20Tasks.md)
17+
- [How to Gather Support for a Project](Serving-Your-Team/06-How%20to%20Gather%20Support%20for%20a%20Project.md)
18+
- [How to Grow a System](Serving-Your-Team/07-How%20to%20Grow%20a%20System.md)
19+
- [How to Communicate Well](Serving-Your-Team/08-How%20to%20Communicate%20Well.md)
20+
- [How to Tell People Things They Don't Want to Hear](Serving-Your-Team/09-How%20to%20Tell%20People%20Things%20They%20Don't%20Want%20to%20Hear.md)
21+
- [How to Deal with Managerial Myths](Serving-Your-Team/10-How%20to%20Deal%20with%20Managerial%20Myths.md)
22+
- [How to Deal with Organizational Chaos](Serving-Your-Team/11-How%20to%20Deal%20with%20Organizational%20Chaos.md)

0 commit comments

Comments
 (0)