thinking-phrases 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +370 -0
- package/bin/thinking-phrases.ts +8 -0
- package/configs/hn-top.config.json +83 -0
- package/launchd/com.austenstone.thinking-phrases.rss.plist +29 -0
- package/launchd/rss-update.error.log +27 -0
- package/launchd/rss-update.log +0 -0
- package/package.json +66 -0
- package/scripts/build.ts +96 -0
- package/scripts/install-rss-updater.zsh +69 -0
- package/scripts/run-rss-update.zsh +16 -0
- package/scripts/uninstall-rss-updater.zsh +11 -0
- package/scripts/update-rss-settings.ts +7 -0
- package/src/core/config.ts +704 -0
- package/src/core/githubModels.ts +208 -0
- package/src/core/interactive.ts +1053 -0
- package/src/core/presets.ts +77 -0
- package/src/core/runner.ts +375 -0
- package/src/core/scheduler.ts +84 -0
- package/src/core/sourceCatalog.ts +18 -0
- package/src/core/staticPacks.ts +66 -0
- package/src/core/types.ts +177 -0
- package/src/core/utils.ts +312 -0
- package/src/sinks/vscodeSettings.ts +44 -0
- package/src/sources/customJson.ts +174 -0
- package/src/sources/earthquakes.ts +100 -0
- package/src/sources/githubActivity.ts +598 -0
- package/src/sources/hackerNews.ts +75 -0
- package/src/sources/rss.ts +256 -0
- package/src/sources/stocks.ts +120 -0
- package/src/sources/weatherAlerts.ts +111 -0
- package/tips/dwyl-quotes.json +1616 -0
- package/tips/javascript-tips.json +102 -0
- package/tips/league-loading-screen-tips.json +102 -0
- package/tips/ruby-tips.json +110 -0
- package/tips/typescript-tips.json +126 -0
- package/tips/vscode/copilot.json +77 -0
- package/tips/vscode/debugging.json +37 -0
- package/tips/vscode/editor.json +52 -0
- package/tips/vscode/funny.json +42 -0
- package/tips/vscode/git.json +42 -0
- package/tips/vscode/shortcuts.json +127 -0
- package/tips/vscode/terminal.json +37 -0
- package/tips/wow-loading-screen-tips.json +111 -0
- package/tsconfig.json +15 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"mac": "Remember to take all things in moderation — including VS Code extensions.",
|
|
4
|
+
"windows": "Remember to take all things in moderation — including VS Code extensions.",
|
|
5
|
+
"linux": "Remember to take all things in moderation — including VS Code extensions."
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"mac": "An unused keyboard shortcut is a wasted keyboard shortcut.",
|
|
9
|
+
"windows": "An unused keyboard shortcut is a wasted keyboard shortcut.",
|
|
10
|
+
"linux": "An unused keyboard shortcut is a wasted keyboard shortcut."
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"mac": "There is no cow level, but there is Zen mode.",
|
|
14
|
+
"windows": "There is no cow level, but there is Zen mode.",
|
|
15
|
+
"linux": "There is no cow level, but there is Zen mode."
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"mac": "A well-placed breakpoint is worth a thousand console.logs.",
|
|
19
|
+
"windows": "A well-placed breakpoint is worth a thousand console.logs.",
|
|
20
|
+
"linux": "A well-placed breakpoint is worth a thousand console.logs."
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"mac": "The Command Palette has over 1000 commands. You've probably used about 12.",
|
|
24
|
+
"windows": "The Command Palette has over 1000 commands. You've probably used about 12.",
|
|
25
|
+
"linux": "The Command Palette has over 1000 commands. You've probably used about 12."
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"mac": "Don't forget to drink water. Your code can wait. Probably.",
|
|
29
|
+
"windows": "Don't forget to drink water. Your code can wait. Probably.",
|
|
30
|
+
"linux": "Don't forget to drink water. Your code can wait. Probably."
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"mac": "50% of coding used to be Googling. The other 50% is now asking Copilot.",
|
|
34
|
+
"windows": "50% of coding used to be Googling. The other 50% is now asking Copilot.",
|
|
35
|
+
"linux": "50% of coding used to be Googling. The other 50% is now asking Copilot."
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"mac": "Your extensions are loading. Have you considered which ones you actually use?",
|
|
39
|
+
"windows": "Your extensions are loading. Have you considered which ones you actually use?",
|
|
40
|
+
"linux": "Your extensions are loading. Have you considered which ones you actually use?"
|
|
41
|
+
}
|
|
42
|
+
]
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"mac": "⌃+⇧+G opens Source Control. See all your changes at a glance.",
|
|
4
|
+
"windows": "Ctrl+Shift+G opens Source Control. See all your changes at a glance.",
|
|
5
|
+
"linux": "Ctrl+Shift+G opens Source Control. See all your changes at a glance."
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"mac": "Git blame shows inline who last changed each line. Hover for the full commit.",
|
|
9
|
+
"windows": "Git blame shows inline who last changed each line. Hover for the full commit.",
|
|
10
|
+
"linux": "Git blame shows inline who last changed each line. Hover for the full commit."
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"mac": "You can stage just part of a file. Select lines and use 'Stage Selected Ranges'.",
|
|
14
|
+
"windows": "You can stage just part of a file. Select lines and use 'Stage Selected Ranges'.",
|
|
15
|
+
"linux": "You can stage just part of a file. Select lines and use 'Stage Selected Ranges'."
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"mac": "Gutter indicators show added, changed, and deleted lines right in the editor margin.",
|
|
19
|
+
"windows": "Gutter indicators show added, changed, and deleted lines right in the editor margin.",
|
|
20
|
+
"linux": "Gutter indicators show added, changed, and deleted lines right in the editor margin."
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"mac": "⌥+F3 jumps to the next inline change. ⇧+⌥+F3 jumps to the previous one.",
|
|
24
|
+
"windows": "Alt+F3 jumps to the next inline change. Shift+Alt+F3 jumps to the previous one.",
|
|
25
|
+
"linux": "Alt+F3 jumps to the next inline change. Shift+Alt+F3 jumps to the previous one."
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"mac": "The Timeline view (bottom of Explorer) shows local file history and git commits.",
|
|
29
|
+
"windows": "The Timeline view (bottom of Explorer) shows local file history and git commits.",
|
|
30
|
+
"linux": "The Timeline view (bottom of Explorer) shows local file history and git commits."
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"mac": "⌘+Enter in the Source Control input box commits your staged changes.",
|
|
34
|
+
"windows": "Ctrl+Enter in the Source Control input box commits your staged changes.",
|
|
35
|
+
"linux": "Ctrl+Enter in the Source Control input box commits your staged changes."
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"mac": "Copilot can generate commit messages. Look for the sparkle ✨ icon in Source Control.",
|
|
39
|
+
"windows": "Copilot can generate commit messages. Look for the sparkle ✨ icon in Source Control.",
|
|
40
|
+
"linux": "Copilot can generate commit messages. Look for the sparkle ✨ icon in Source Control."
|
|
41
|
+
}
|
|
42
|
+
]
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"mac": "⌘+D selects the next occurrence of a word. Keep pressing for more!",
|
|
4
|
+
"windows": "Ctrl+D selects the next occurrence of a word. Keep pressing for more!",
|
|
5
|
+
"linux": "Ctrl+D selects the next occurrence of a word. Keep pressing for more!"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"mac": "⇧+⌘+L selects ALL occurrences of the current selection at once.",
|
|
9
|
+
"windows": "Ctrl+Shift+L selects ALL occurrences of the current selection at once.",
|
|
10
|
+
"linux": "Ctrl+Shift+L selects ALL occurrences of the current selection at once."
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"mac": "⌥+↑/↓ moves the current line up or down. No cut-paste needed.",
|
|
14
|
+
"windows": "Alt+↑/↓ moves the current line up or down. No cut-paste needed.",
|
|
15
|
+
"linux": "Alt+↑/↓ moves the current line up or down. No cut-paste needed."
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"mac": "⇧+⌥+↑/↓ duplicates the current line up or down.",
|
|
19
|
+
"windows": "Shift+Alt+↑/↓ duplicates the current line up or down.",
|
|
20
|
+
"linux": "Shift+Alt+↑/↓ duplicates the current line up or down."
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"mac": "⇧+⌘+K deletes the entire current line. No need to select it first.",
|
|
24
|
+
"windows": "Ctrl+Shift+K deletes the entire current line. No need to select it first.",
|
|
25
|
+
"linux": "Ctrl+Shift+K deletes the entire current line. No need to select it first."
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"mac": "⌘+P opens Quick Open. Start typing a filename to jump to it instantly.",
|
|
29
|
+
"windows": "Ctrl+P opens Quick Open. Start typing a filename to jump to it instantly.",
|
|
30
|
+
"linux": "Ctrl+P opens Quick Open. Start typing a filename to jump to it instantly."
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"mac": "⇧+⌘+P opens the Command Palette — your gateway to every VS Code command.",
|
|
34
|
+
"windows": "Ctrl+Shift+P opens the Command Palette — your gateway to every VS Code command.",
|
|
35
|
+
"linux": "Ctrl+Shift+P opens the Command Palette — your gateway to every VS Code command."
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"mac": "⌘+/ toggles line comments on the current line or selection.",
|
|
39
|
+
"windows": "Ctrl+/ toggles line comments on the current line or selection.",
|
|
40
|
+
"linux": "Ctrl+/ toggles line comments on the current line or selection."
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"mac": "⌘+B toggles the sidebar. More screen real estate, instantly.",
|
|
44
|
+
"windows": "Ctrl+B toggles the sidebar. More screen real estate, instantly.",
|
|
45
|
+
"linux": "Ctrl+B toggles the sidebar. More screen real estate, instantly."
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"mac": "⌘+\\ splits the editor side by side. Compare files like a pro.",
|
|
49
|
+
"windows": "Ctrl+\\ splits the editor side by side. Compare files like a pro.",
|
|
50
|
+
"linux": "Ctrl+\\ splits the editor side by side. Compare files like a pro."
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"mac": "⇧+⌘+O goes to any symbol in the current file. Add : to group by kind.",
|
|
54
|
+
"windows": "Ctrl+Shift+O goes to any symbol in the current file. Add : to group by kind.",
|
|
55
|
+
"linux": "Ctrl+Shift+O goes to any symbol in the current file. Add : to group by kind."
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"mac": "⌃+G jumps to a specific line number. Fast and precise.",
|
|
59
|
+
"windows": "Ctrl+G jumps to a specific line number. Fast and precise.",
|
|
60
|
+
"linux": "Ctrl+G jumps to a specific line number. Fast and precise."
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"mac": "⇧+⌘+\\ jumps to the matching bracket. Never get lost in nested code.",
|
|
64
|
+
"windows": "Ctrl+Shift+\\ jumps to the matching bracket. Never get lost in nested code.",
|
|
65
|
+
"linux": "Ctrl+Shift+\\ jumps to the matching bracket. Never get lost in nested code."
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"mac": "F2 renames a symbol across all files. Way smarter than find-and-replace.",
|
|
69
|
+
"windows": "F2 renames a symbol across all files. Way smarter than find-and-replace.",
|
|
70
|
+
"linux": "F2 renames a symbol across all files. Way smarter than find-and-replace."
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"mac": "⌘+. shows Quick Fixes and refactorings for the code under your cursor.",
|
|
74
|
+
"windows": "Ctrl+. shows Quick Fixes and refactorings for the code under your cursor.",
|
|
75
|
+
"linux": "Ctrl+. shows Quick Fixes and refactorings for the code under your cursor."
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"mac": "⇧+⌥+F formats the entire document. Clean code in one keystroke.",
|
|
79
|
+
"windows": "Shift+Alt+F formats the entire document. Clean code in one keystroke.",
|
|
80
|
+
"linux": "Shift+Alt+F formats the entire document. Clean code in one keystroke."
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"mac": "⌥+Z toggles word wrap. See long lines without horizontal scrolling.",
|
|
84
|
+
"windows": "Alt+Z toggles word wrap. See long lines without horizontal scrolling.",
|
|
85
|
+
"linux": "Alt+Z toggles word wrap. See long lines without horizontal scrolling."
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"mac": "⌘+J toggles the bottom panel — terminal, problems, output, all of it.",
|
|
89
|
+
"windows": "Ctrl+J toggles the bottom panel — terminal, problems, output, all of it.",
|
|
90
|
+
"linux": "Ctrl+J toggles the bottom panel — terminal, problems, output, all of it."
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"mac": "Hold ⌥ and click to place cursors anywhere. Multi-cursor editing is a superpower.",
|
|
94
|
+
"windows": "Hold Alt and click to place cursors anywhere. Multi-cursor editing is a superpower.",
|
|
95
|
+
"linux": "Hold Alt and click to place cursors anywhere. Multi-cursor editing is a superpower."
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"mac": "⌘+L selects the entire current line. Press again to grab the next line too.",
|
|
99
|
+
"windows": "Ctrl+L selects the entire current line. Press again to grab the next line too.",
|
|
100
|
+
"linux": "Ctrl+L selects the entire current line. Press again to grab the next line too."
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"mac": "⌘+K ⌘+0 folds all code. ⌘+K ⌘+J unfolds everything. Manage code visibility fast.",
|
|
104
|
+
"windows": "Ctrl+K Ctrl+0 folds all code. Ctrl+K Ctrl+J unfolds everything.",
|
|
105
|
+
"linux": "Ctrl+K Ctrl+0 folds all code. Ctrl+K Ctrl+J unfolds everything."
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"mac": "⌃+- navigates back to your previous location. Like browser back, but for code.",
|
|
109
|
+
"windows": "Alt+← navigates back to your previous location. Like browser back, but for code.",
|
|
110
|
+
"linux": "Alt+← navigates back to your previous location. Like browser back, but for code."
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"mac": "⇧+⌥+I adds a cursor at the end of every selected line. Bulk editing made easy.",
|
|
114
|
+
"windows": "Shift+Alt+I adds a cursor at the end of every selected line. Bulk editing made easy.",
|
|
115
|
+
"linux": "Shift+Alt+I adds a cursor at the end of every selected line. Bulk editing made easy."
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"mac": "⌘+U undoes the last cursor operation. Went too far with ⌘+D? Step back.",
|
|
119
|
+
"windows": "Ctrl+U undoes the last cursor operation. Went too far with Ctrl+D? Step back.",
|
|
120
|
+
"linux": "Ctrl+U undoes the last cursor operation. Went too far with Ctrl+D? Step back."
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"mac": "⌘+K ⌘+X trims trailing whitespace from the file. Keep your diffs clean.",
|
|
124
|
+
"windows": "Ctrl+K Ctrl+X trims trailing whitespace from the file. Keep your diffs clean.",
|
|
125
|
+
"linux": "Ctrl+K Ctrl+X trims trailing whitespace from the file. Keep your diffs clean."
|
|
126
|
+
}
|
|
127
|
+
]
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"mac": "⌃+` toggles the integrated terminal. Your shell is always one keystroke away.",
|
|
4
|
+
"windows": "Ctrl+` toggles the integrated terminal. Your shell is always one keystroke away.",
|
|
5
|
+
"linux": "Ctrl+` toggles the integrated terminal. Your shell is always one keystroke away."
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"mac": "⌘+\\ splits the terminal into side-by-side panes when it's focused.",
|
|
9
|
+
"windows": "Ctrl+Shift+5 splits the terminal into side-by-side panes when it's focused.",
|
|
10
|
+
"linux": "Ctrl+Shift+5 splits the terminal into side-by-side panes when it's focused."
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"mac": "⌃+⇧+` creates a new terminal instance. Run multiple shells in parallel.",
|
|
14
|
+
"windows": "Ctrl+Shift+` creates a new terminal instance. Run multiple shells in parallel.",
|
|
15
|
+
"linux": "Ctrl+Shift+` creates a new terminal instance. Run multiple shells in parallel."
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"mac": "⌘+K clears the terminal when focused. A fresh start for your shell.",
|
|
19
|
+
"windows": "Ctrl+K clears the terminal when focused. A fresh start for your shell.",
|
|
20
|
+
"linux": "Ctrl+K clears the terminal when focused. A fresh start for your shell."
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"mac": "The terminal has built-in autocomplete. Press ⌃+Space to trigger suggestions.",
|
|
24
|
+
"windows": "The terminal has built-in autocomplete. Press Ctrl+Space to trigger suggestions.",
|
|
25
|
+
"linux": "The terminal has built-in autocomplete. Press Ctrl+Space to trigger suggestions."
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"mac": "⇧+⌘+C opens an external terminal at your workspace root.",
|
|
29
|
+
"windows": "Ctrl+Shift+C opens an external terminal at your workspace root.",
|
|
30
|
+
"linux": "Ctrl+Shift+C opens an external terminal at your workspace root."
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"mac": "Type 'code .' in any terminal to open that folder in VS Code.",
|
|
34
|
+
"windows": "Type 'code .' in any terminal to open that folder in VS Code.",
|
|
35
|
+
"linux": "Type 'code .' in any terminal to open that folder in VS Code."
|
|
36
|
+
}
|
|
37
|
+
]
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
[
|
|
2
|
+
"Nearby questgivers that are awaiting your return are shown as a question mark on your mini-map.",
|
|
3
|
+
"Your spell casting can be cancelled by moving, jumping or hitting the escape key.",
|
|
4
|
+
"Clicking on a player name in the chat window lets you send a private message to them.",
|
|
5
|
+
"If you <Shift>Click on a player name in the chat window it tells you additional information about them.",
|
|
6
|
+
"You can <Control>-Click on an item to see how you would look wearing that item.",
|
|
7
|
+
"An item with its name in gray is a poor quality item and generally can be sold to a vendor.",
|
|
8
|
+
"An item with its name in white is useful to players in some way and can be used or sold at the auction house.",
|
|
9
|
+
"If you are lost trying to complete a quest, the quest log will often tell you what to do next.",
|
|
10
|
+
"You can send mail to other players or even to your other characters from any mailbox in game.",
|
|
11
|
+
"You can <Shift>-Click on an item to place an item link into a chat message.",
|
|
12
|
+
"You can remove a friendly spell enhancement on yourself by right-clicking on the spell effect icon.",
|
|
13
|
+
"When you learn a profession or secondary skill the button that allows you to perform that skill is found in the general tab of your spellbook.",
|
|
14
|
+
"All of your action bars can have their hotkeys remapped in the key bindings interface.",
|
|
15
|
+
"If a profession trainer cannot teach you any more, they will generally tell you where to go to get further training.",
|
|
16
|
+
"On your character sheet is a reputation tab that tells you your status with different groups.",
|
|
17
|
+
"You can use the Tab key to select nearby enemies in front of you.",
|
|
18
|
+
"If you are having trouble finding something in a capital city, try asking a guard for directions.",
|
|
19
|
+
"You can perform many fun actions with the emote system, for instance you can type /dance to dance.",
|
|
20
|
+
"A Blizzard employee will NEVER ask for your password.",
|
|
21
|
+
"You can only know two professions at a time, but you can learn all of the secondary skills (archaeology, fishing, cooking and first-aid).",
|
|
22
|
+
"You can right-click on a beneficial spell that has been cast on you to dismiss it.",
|
|
23
|
+
"The interface options menu <ESC> has lots of ways to customize your game play.",
|
|
24
|
+
"You can turn off the slow scrolling of quest text in the interface options menu.",
|
|
25
|
+
"Spend your talent points carefully as once your talents are chosen, you must spend gold to unlearn them.",
|
|
26
|
+
"A mail icon next to the minimap means you have new mail. Visit a mailbox to retrieve it.",
|
|
27
|
+
"You can add additional action bars to your game interface from the interface options menu.",
|
|
28
|
+
"If you hold down <Shift> while right-clicking on a target to loot, you will automatically loot all items on the target.",
|
|
29
|
+
"Your character can eat and drink at the same time.",
|
|
30
|
+
"If you enjoyed playing with someone, put them on your friends list!",
|
|
31
|
+
"Use the Looking for Group interface (\"I\" Hotkey) to find a group or add more players to your group.",
|
|
32
|
+
"There are a number of different loot options when in a group. The group leader can right-click their own portrait to change the options.",
|
|
33
|
+
"You can choose not to display your helm and/or cloak with an option from the interface options menu.",
|
|
34
|
+
"You can target members of your party with the function keys. F1 targets you; F2 targets the second party member.",
|
|
35
|
+
"Being polite while in a group with others will get you invited back!",
|
|
36
|
+
"Remember to take all things in moderation (even World of Warcraft!)",
|
|
37
|
+
"You can click on a faction in the reputation pane to get additional information and options about that faction.",
|
|
38
|
+
"A monster with a silver dragon around its portrait is a rare monster with better than average treasure.",
|
|
39
|
+
"If you mouse over a chat pane it will become visible and you can right-click on the chat pane tab for options.",
|
|
40
|
+
"Sharing an account with someone else can compromise its security.",
|
|
41
|
+
"You can display the duration of beneficial spells on you from the interface options menu.",
|
|
42
|
+
"You can lock your action bar so you don't accidentally move spells. This is done using the interface options menu.",
|
|
43
|
+
"You can assign a Hotkey to toggle locking/unlocking your action bar. Just look in the Key Bindings options to set it.",
|
|
44
|
+
"You can cast a spell on yourself without deselecting your current target by holding down <Alt> while pressing your hotkey.",
|
|
45
|
+
"Ensure that all party members are on the same stage of an escort quest before beginning it.",
|
|
46
|
+
"You're much less likely to encounter wandering monsters while following a road.",
|
|
47
|
+
"Killing guards gives no honor.",
|
|
48
|
+
"You can hide your interface with <Alt>-Z and take screenshots with <Print Screen>.",
|
|
49
|
+
"Typing /macro will bring up the interface to create macros.",
|
|
50
|
+
"Enemy players whose names appear in gray are much lower level than you are and will not give honor when killed.",
|
|
51
|
+
"From the Raid UI you can drag a player to the game field to see their status or drag a class icon to see all members of that class.",
|
|
52
|
+
"A blue question mark above a quest giver means the quest is repeatable.",
|
|
53
|
+
"Use the assist button (F key) while targeting another player, and it will target the same target as that player.",
|
|
54
|
+
"<Shift>-Clicking on an item being sold by a vendor will let you select how many of that item you wish to purchase.",
|
|
55
|
+
"Playing in a battleground on its holiday weekend increases your honor gained.",
|
|
56
|
+
"If you are having trouble fishing in an area, try attaching a lure to your fishing pole.",
|
|
57
|
+
"You can view messages you previously sent in chat by pressing <Alt> and the up arrow key.",
|
|
58
|
+
"You can Shift-Click on an item stack to split it into smaller stacks.",
|
|
59
|
+
"Pressing both mouse buttons simultaneously will make your character run.",
|
|
60
|
+
"When replying to a tell from a player (Default 'R'), the <TAB> key cycles through people you have recently replied to.",
|
|
61
|
+
"Clicking an item name that appears bracketed in chat will tell you more about the item.",
|
|
62
|
+
"It's considered polite to talk to someone before inviting them into a group, or opening a trade window.",
|
|
63
|
+
"Pressing 'v' will toggle the display of a health bar over nearby enemies.",
|
|
64
|
+
"Your items do not suffer durability damage when you are killed by an enemy player.",
|
|
65
|
+
"<Shift>-click on a quest in your quest log to toggle quest tracking for that quest.",
|
|
66
|
+
"There is no cow level.",
|
|
67
|
+
"The auction houses in each of your faction's major cities are linked together.",
|
|
68
|
+
"Nearby questgivers that are awaiting your return are shown as a yellow question mark on your mini-map.",
|
|
69
|
+
"Quests completed at maximum level award money instead of experience.",
|
|
70
|
+
"<Shift>-B will open all your bags at once.",
|
|
71
|
+
"When interacting with other players a little kindness goes a long way!",
|
|
72
|
+
"Bring your friends to Azeroth, but don't forget to go outside Azeroth with them as well.",
|
|
73
|
+
"If you keep an empty mailbox, the mail icon will let you know when you have new mail waiting!",
|
|
74
|
+
"Never give another player your account information.",
|
|
75
|
+
"When a player not in your group damages a monster before you do, it will display a gray health bar and you will get no loot or experience from killing it.",
|
|
76
|
+
"You can see the spell that your current target is casting by turning on the 'Show Enemy Cast Bar' options in the basic interface options.",
|
|
77
|
+
"You can see the target of your current target by turning on the 'Show Target of Target' option in the advanced interface options tab.",
|
|
78
|
+
"You can access the map either by clicking the map button in the upper left of the mini-map or by hitting the 'M' key.",
|
|
79
|
+
"Many high level dungeons have a heroic mode setting. Heroic mode dungeons are tuned for level 70 players and have improved loot.",
|
|
80
|
+
"Spend your honor points for powerful rewards at the Champion's Hall (Alliance) or Hall of Legends (Horde).",
|
|
81
|
+
"The honor points you earn each day become available immediately. Check the PvP interface to see how many points you have to spend.",
|
|
82
|
+
"You can turn these tips off in the Interface menu.",
|
|
83
|
+
"Dungeon meeting stones can be used to summon absent party members. It requires two players at the stone to do a summoning.",
|
|
84
|
+
"The Parental Controls section of the Account Management site offers tools to help you manage your play time.",
|
|
85
|
+
"Quest items that are in the bank cannot be used to complete quests.",
|
|
86
|
+
"A quest marked as (Failed) in the quest log can be abandoned and then reacquired from the quest giver.",
|
|
87
|
+
"The number next to the quest name in your log is how many other party members are on that quest.",
|
|
88
|
+
"You cannot advance quests other than (Raid) quests while you are in a raid group.",
|
|
89
|
+
"You cannot cancel your bids in the auction house so bid carefully.",
|
|
90
|
+
"To enter a chat channel, type /join [channel name] and /leave [channel name] to exit.",
|
|
91
|
+
"Mail will be kept for a maximum of 30 days before it disappears.",
|
|
92
|
+
"Once you get a key, they can be found in a special key ring bag that is to the left of your bags.",
|
|
93
|
+
"You can replace a gem that is already socketed into your item by dropping a new gem on top of it in the socketing interface.",
|
|
94
|
+
"City Guards will often give you directions to other locations of note in the city.",
|
|
95
|
+
"You can repurchase items you have recently sold to a vendor from the buyback tab.",
|
|
96
|
+
"A group leader can reset their instances from their portrait right-click menu.",
|
|
97
|
+
"You can always get a new hearthstone from any Innkeeper.",
|
|
98
|
+
"You can open a small map of the current zone either with Shift-M or as an option from the world map.",
|
|
99
|
+
"Players cannot dodge, parry, or block attacks that come from behind them.",
|
|
100
|
+
"If you Right Click on a name in the combat log a list of options will appear.",
|
|
101
|
+
"You can only have one Battle Elixir and one Guardian Elixir on you at a time.",
|
|
102
|
+
"The calendar can tell you when raids reset.",
|
|
103
|
+
"Creatures cannot make critical hits with spells, but players can.",
|
|
104
|
+
"Creatures can dodge attacks from behind, but players cannot. Neither creatures nor players can parry attacks from behind.",
|
|
105
|
+
"Players with the Inscription profession can make glyphs to improve your favorite spells and abilities.",
|
|
106
|
+
"Don't stand in the fire!",
|
|
107
|
+
"The Raid UI can be customized in a number of different ways, such as how it shows debuffs or current health.",
|
|
108
|
+
"Dungeons are more fun when everyone works together as a team. Be patient with players who are still learning the game.",
|
|
109
|
+
"Smile early and often!",
|
|
110
|
+
"Thank you for playing World of Warcraft. You rock!"
|
|
111
|
+
]
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2022",
|
|
4
|
+
"module": "NodeNext",
|
|
5
|
+
"moduleResolution": "NodeNext",
|
|
6
|
+
"allowImportingTsExtensions": true,
|
|
7
|
+
"noEmit": true,
|
|
8
|
+
"strict": true,
|
|
9
|
+
"esModuleInterop": true,
|
|
10
|
+
"types": ["node"],
|
|
11
|
+
"outDir": "dist",
|
|
12
|
+
"rootDir": "."
|
|
13
|
+
},
|
|
14
|
+
"include": ["scripts/**/*", "src/**/*"]
|
|
15
|
+
}
|