Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commita45315e

Browse files
committed
web: fix build for pnpm
1 parent3de4780 commita45315e

File tree

4 files changed

+20
-26
lines changed

4 files changed

+20
-26
lines changed

‎apps/website/.npmrc‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
public-hoist-pattern[]=@docusaurus/theme-common*
2+
public-hoist-pattern[]=@mdx-js/react

‎apps/website/contents/algorithms/binary.md‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ Some helpful utility snippets:
4646

4747
| Technique| Code|
4848
| ---| ---|
49-
| Test k<sup>th</sup> bit is set|`num & (1 << k) != 0`.|
50-
| Set k<sup>th</sup> bit| <code>num&#124;= (1<< k)</code>|
51-
| Turn off k<sup>th</sup> bit|`num &= ~(1 << k)`.|
52-
| Toggle the k<sup>th</sup> bit|`num ^= (1 << k)`.|
49+
| Test k<sup>th</sup> bit is set|`num & (1 << k) != 0`|
50+
| Set k<sup>th</sup> bit| <code>num&#124;= (1&gt;&gt; k)</code>|
51+
| Turn off k<sup>th</sup> bit|`num &= ~(1 << k)`|
52+
| Toggle the k<sup>th</sup> bit|`num ^= (1 << k)`|
5353
| Multiply by 2<sup>k</sup>|`num << k`|
5454
| Divide by 2<sup>k</sup>|`num >> k`|
5555
| Check if a number is a power of 2|`(num & num - 1) == 0` or`(num & (-num)) == num`|

‎apps/website/contents/landscape.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Companies have different focuses depending on the stage they are at and the type
7373

7474
| Dimension| Early-stage startup| Late-stage startup| Large company|
7575
| ---| ---| ---| ---|
76-
| Company size|<100| 100-1000|>1000|
76+
| Company size|&lt;100| 100-1000|&gt;1000|
7777
| Compensation| Base salary is a bit higher than big companies. Higher equity amount but its value is hard to judge as the company's valuation is unclear and stocks are not worth money yet. High risk, high return.| Base salary is a bit higher than big companies. Company valuation is clearer and stocks have higher chance of being worth money.| Depends on the prestige of the company. Compensation is usually market standard or better. Stocks are worth money if company has gone public.|
7878
| Types of work| Mainly product development. Engineers have to wear multiple hats - Front End, Back End, DevOps, Design, etc.| Product development and some infra.| Diverse roles and specialized work; dedicated people for each role. Infra and prod infra work is more common. More opportunities for internal transfers, sometimes even across the globe.|
7979
| Career ladder| Unstructured. No (or very vague) career levels. Not much formal mentorship nor training.| Somewhat structured.| Very structured. Well-defined career levels.|

‎pnpm-lock.yaml‎

Lines changed: 13 additions & 21 deletions
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp