mani-calc 1.1.0

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.
@@ -0,0 +1,110 @@
1
+ # Contributing to Mani-Calc
2
+
3
+ Thank you for your interest in contributing to Mani-Calc! 🎉
4
+
5
+ ## How to Contribute
6
+
7
+ ### Reporting Bugs
8
+ 1. Check if the bug has already been reported in [Issues](https://github.com/manireddy/mani-calc/issues)
9
+ 2. If not, create a new issue with:
10
+ - Clear title and description
11
+ - Steps to reproduce
12
+ - Expected vs actual behavior
13
+ - Your environment (Windows version, Node.js version)
14
+
15
+ ### Suggesting Features
16
+ 1. Check existing [Issues](https://github.com/manireddy/mani-calc/issues) for similar suggestions
17
+ 2. Create a new issue with:
18
+ - Clear description of the feature
19
+ - Use cases and benefits
20
+ - Possible implementation approach
21
+
22
+ ### Code Contributions
23
+
24
+ #### Setup Development Environment
25
+ ```bash
26
+ # Clone the repository
27
+ git clone https://github.com/manireddy/mani-calc.git
28
+ cd mani-calc
29
+
30
+ # Install dependencies
31
+ npm install
32
+
33
+ # Run tests
34
+ npm test
35
+
36
+ # Test locally
37
+ node bin/cli.js "2 + 3 * 5"
38
+ ```
39
+
40
+ #### Making Changes
41
+ 1. Fork the repository
42
+ 2. Create a feature branch (`git checkout -b feature/amazing-feature`)
43
+ 3. Make your changes
44
+ 4. Add tests for new functionality
45
+ 5. Ensure all tests pass (`npm test`)
46
+ 6. Commit with clear messages (`git commit -m 'Add amazing feature'`)
47
+ 7. Push to your fork (`git push origin feature/amazing-feature`)
48
+ 8. Open a Pull Request
49
+
50
+ #### Code Style
51
+ - Use clear, descriptive variable names
52
+ - Add comments for complex logic
53
+ - Follow existing code structure
54
+ - Keep functions focused and small
55
+ - Use ES6+ features where appropriate
56
+
57
+ #### Testing
58
+ - Add tests for new features
59
+ - Ensure existing tests pass
60
+ - Test on Windows 10/11
61
+ - Test both CLI and Windows Search integration
62
+
63
+ ### Areas for Contribution
64
+
65
+ #### High Priority
66
+ - [ ] PowerToys Run plugin integration
67
+ - [ ] Advanced math functions
68
+ - [ ] Currency conversion (with offline rates)
69
+ - [ ] Date/time calculations
70
+
71
+ #### Medium Priority
72
+ - [ ] Graph plotting
73
+ - [ ] Step-by-step solutions
74
+ - [ ] Custom user commands
75
+ - [ ] Plugin system
76
+
77
+ #### Nice to Have
78
+ - [ ] Voice input support
79
+ - [ ] Themes for CLI
80
+ - [ ] Export history to CSV
81
+ - [ ] Sync history across devices
82
+
83
+ ## Code of Conduct
84
+
85
+ ### Our Standards
86
+ - Be respectful and inclusive
87
+ - Welcome newcomers
88
+ - Accept constructive criticism
89
+ - Focus on what's best for the community
90
+
91
+ ### Unacceptable Behavior
92
+ - Harassment or discrimination
93
+ - Trolling or insulting comments
94
+ - Publishing others' private information
95
+ - Other unprofessional conduct
96
+
97
+ ## Questions?
98
+
99
+ Feel free to:
100
+ - Open an issue for discussion
101
+ - Reach out to maintainers
102
+ - Check existing documentation
103
+
104
+ ## License
105
+
106
+ By contributing, you agree that your contributions will be licensed under the MIT License.
107
+
108
+ ---
109
+
110
+ **Thank you for making Mani-Calc better!** 🚀
package/EXAMPLES.md ADDED
@@ -0,0 +1,220 @@
1
+ # Examples - Mani-Calc
2
+
3
+ Comprehensive examples of what you can do with Mani-Calc.
4
+
5
+ ## 📐 Basic Math
6
+
7
+ ### Arithmetic
8
+ ```bash
9
+ mani-calc "2 + 3" # 5
10
+ mani-calc "10 - 4" # 6
11
+ mani-calc "5 * 6" # 30
12
+ mani-calc "20 / 4" # 5
13
+ mani-calc "2 + 3 * 5" # 17 (order of operations)
14
+ mani-calc "(2 + 3) * 5" # 25 (parentheses)
15
+ ```
16
+
17
+ ### Powers & Roots
18
+ ```bash
19
+ mani-calc "2^8" # 256
20
+ mani-calc "10^3" # 1000
21
+ mani-calc "sqrt(49)" # 7
22
+ mani-calc "sqrt(144)" # 12
23
+ mani-calc "cbrt(27)" # 3 (cube root)
24
+ ```
25
+
26
+ ### Advanced Math
27
+ ```bash
28
+ mani-calc "sin(pi/2)" # 1
29
+ mani-calc "cos(0)" # 1
30
+ mani-calc "tan(pi/4)" # 1
31
+ mani-calc "log(100)" # 2 (log base 10)
32
+ mani-calc "ln(e)" # 1 (natural log)
33
+ mani-calc "abs(-42)" # 42
34
+ ```
35
+
36
+ ### Constants
37
+ ```bash
38
+ mani-calc "pi" # 3.14159...
39
+ mani-calc "e" # 2.71828...
40
+ mani-calc "pi * 2" # 6.28318...
41
+ mani-calc "e^2" # 7.38906...
42
+ ```
43
+
44
+ ## 💬 Natural Language
45
+
46
+ ### Percentages
47
+ ```bash
48
+ mani-calc "what is 25 percent of 200" # 50
49
+ mani-calc "15% of 300" # 45
50
+ mani-calc "calculate 10 percent of 500" # 50
51
+ mani-calc "what is 7.5 percent of 1000" # 75
52
+ ```
53
+
54
+ ### Fractions
55
+ ```bash
56
+ mani-calc "half of 80" # 40
57
+ mani-calc "quarter of 100" # 25
58
+ mani-calc "third of 90" # 30
59
+ ```
60
+
61
+ ### Powers (Natural Language)
62
+ ```bash
63
+ mani-calc "10 squared" # 100
64
+ mani-calc "5 cubed" # 125
65
+ mani-calc "2 to the power of 10" # 1024
66
+ mani-calc "3 raised to 4" # 81
67
+ ```
68
+
69
+ ### Square Roots (Natural Language)
70
+ ```bash
71
+ mani-calc "square root of 64" # 8
72
+ mani-calc "sqrt of 100" # 10
73
+ ```
74
+
75
+ ## 🔄 Unit Conversions
76
+
77
+ ### Length
78
+ ```bash
79
+ mani-calc "10 km to miles" # 6.21 miles
80
+ mani-calc "5 miles to km" # 8.05 km
81
+ mani-calc "100 cm to inches" # 39.37 inches
82
+ mani-calc "6 feet to meters" # 1.83 meters
83
+ mani-calc "1000 mm to cm" # 100 cm
84
+ mani-calc "2 yards to feet" # 6 feet
85
+ ```
86
+
87
+ ### Weight
88
+ ```bash
89
+ mani-calc "10 kg to pounds" # 22.05 pounds
90
+ mani-calc "5 pounds to kg" # 2.27 kg
91
+ mani-calc "1000 grams to kg" # 1 kg
92
+ mani-calc "16 oz to pounds" # 1 pound
93
+ mani-calc "2 tons to kg" # 2000 kg
94
+ ```
95
+
96
+ ### Temperature
97
+ ```bash
98
+ mani-calc "0 celsius to fahrenheit" # 32 fahrenheit
99
+ mani-calc "100 celsius to fahrenheit" # 212 fahrenheit
100
+ mani-calc "98.6 fahrenheit to celsius" # 37 celsius
101
+ mani-calc "273.15 kelvin to celsius" # 0 celsius
102
+ mani-calc "32 fahrenheit to kelvin" # 273.15 kelvin
103
+ ```
104
+
105
+ ### Time
106
+ ```bash
107
+ mani-calc "2 hours to minutes" # 120 minutes
108
+ mani-calc "120 seconds to minutes" # 2 minutes
109
+ mani-calc "1 day to hours" # 24 hours
110
+ mani-calc "1 week to days" # 7 days
111
+ mani-calc "365 days to hours" # 8760 hours
112
+ ```
113
+
114
+ ### Volume
115
+ ```bash
116
+ mani-calc "5 liters to gallons" # 1.32 gallons
117
+ mani-calc "1 gallon to liters" # 3.79 liters
118
+ mani-calc "500 ml to liters" # 0.5 liters
119
+ mani-calc "2 cups to ml" # 473.18 ml
120
+ mani-calc "1 quart to liters" # 0.95 liters
121
+ ```
122
+
123
+ ### Speed
124
+ ```bash
125
+ mani-calc "100 km/h to mph" # 62.14 mph
126
+ mani-calc "60 mph to km/h" # 96.56 km/h
127
+ mani-calc "10 m/s to km/h" # 36 km/h
128
+ ```
129
+
130
+ ## 📚 History Commands
131
+
132
+ ```bash
133
+ mani-calc history # View last 10 calculations
134
+ mani-calc "clear history" # Clear all history
135
+ ```
136
+
137
+ ## 🎯 Real-World Use Cases
138
+
139
+ ### Shopping
140
+ ```bash
141
+ # Calculate discount
142
+ mani-calc "what is 20 percent of 150" # 30 (discount amount)
143
+ mani-calc "150 - 30" # 120 (final price)
144
+
145
+ # Tax calculation
146
+ mani-calc "what is 8.5 percent of 100" # 8.5 (tax)
147
+ ```
148
+
149
+ ### Cooking
150
+ ```bash
151
+ mani-calc "2 cups to ml" # 473.18 ml
152
+ mani-calc "350 fahrenheit to celsius" # 176.67 celsius
153
+ mani-calc "half of 250" # 125 (halving recipe)
154
+ ```
155
+
156
+ ### Travel
157
+ ```bash
158
+ mani-calc "500 km to miles" # 310.69 miles
159
+ mani-calc "120 km/h to mph" # 74.56 mph
160
+ mani-calc "10 kg to pounds" # 22.05 pounds (luggage weight)
161
+ ```
162
+
163
+ ### Fitness
164
+ ```bash
165
+ mani-calc "5 miles to km" # 8.05 km (running distance)
166
+ mani-calc "150 pounds to kg" # 68.04 kg (body weight)
167
+ ```
168
+
169
+ ### Science & Engineering
170
+ ```bash
171
+ mani-calc "9.8 * 5" # 49 (acceleration * time)
172
+ mani-calc "sqrt(2) * 10" # 14.14 (diagonal calculation)
173
+ mani-calc "pi * 5^2" # 78.54 (circle area)
174
+ ```
175
+
176
+ ## 🔧 Advanced Features
177
+
178
+ ### Chaining Calculations
179
+ ```bash
180
+ # In interactive mode
181
+ calc> x = 100
182
+ calc> x * 2
183
+ ✓ 200
184
+
185
+ calc> x / 4
186
+ ✓ 25
187
+ ```
188
+
189
+ ### Complex Expressions
190
+ ```bash
191
+ mani-calc "((10 + 5) * 3 - 20) / 5" # 5
192
+ mani-calc "sqrt(16) + sqrt(9)" # 7
193
+ mani-calc "2^3 + 3^2" # 17
194
+ ```
195
+
196
+ ## 💡 Tips
197
+
198
+ 1. **Quotes**: Use quotes for queries with spaces
199
+ ```bash
200
+ mani-calc "10 km to miles" # ✓ Correct
201
+ mani-calc 10 km to miles # ✗ Won't work
202
+ ```
203
+
204
+ 2. **Case Insensitive**: Units are case-insensitive
205
+ ```bash
206
+ mani-calc "10 KM to MILES" # Works!
207
+ mani-calc "10 Km to Miles" # Works!
208
+ ```
209
+
210
+ 3. **Flexible Syntax**: Multiple ways to express the same thing
211
+ ```bash
212
+ mani-calc "10 kilometers to miles"
213
+ mani-calc "10 km to miles"
214
+ mani-calc "10 kilometer to mile"
215
+ # All work!
216
+ ```
217
+
218
+ ---
219
+
220
+ **Want more examples? Check out the [README](README.md) or run `mani-calc --help`**
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Manideep Reddy Eevuri
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,361 @@
1
+ # 🎨 Overlay Mode - Floating Search Box
2
+
3
+ ## ✨ New Feature: Spotlight-Style Overlay
4
+
5
+ Mani-Calc now includes a **beautiful floating search box** that appears anywhere on your screen with a simple keyboard shortcut!
6
+
7
+ ---
8
+
9
+ ## 🚀 Quick Start
10
+
11
+ ### 1. Install Dependencies
12
+ ```bash
13
+ npm install
14
+ ```
15
+
16
+ ### 2. Start Overlay Mode
17
+ ```bash
18
+ npm run overlay
19
+ ```
20
+
21
+ Or after global installation:
22
+ ```bash
23
+ mani-calc-overlay
24
+ ```
25
+
26
+ ### 3. Use the Hotkey
27
+ Press **`Alt+Space`** anywhere in Windows to toggle the search box!
28
+
29
+ ---
30
+
31
+ ## 🎯 Features
32
+
33
+ ### ⚡ Global Hotkey
34
+ - **Default**: `Alt+Space`
35
+ - Works from any application
36
+ - Instant access to calculations
37
+ - Always-on-top overlay
38
+
39
+ ### 🧮 All Calculation Features
40
+ - Math expressions
41
+ - Natural language queries
42
+ - Unit conversions
43
+ - Calculation history
44
+
45
+ ### 💻 System Commands
46
+ Control your computer with simple commands:
47
+
48
+ | Command | Action |
49
+ |---------|--------|
50
+ | `sleep` | Put computer to sleep |
51
+ | `shutdown` | Shutdown computer |
52
+ | `restart` | Restart computer |
53
+ | `lock` | Lock computer |
54
+ | `logout` | Log out current user |
55
+ | `empty recycle bin` | Empty recycle bin |
56
+ | `volume up` | Increase volume |
57
+ | `volume down` | Decrease volume |
58
+ | `mute` | Mute volume |
59
+ | `unmute` | Unmute volume |
60
+
61
+ ### 🎨 Beautiful UI
62
+ - Glassmorphism design
63
+ - Smooth animations
64
+ - Live preview
65
+ - Auto-hide on blur
66
+ - Keyboard shortcuts
67
+
68
+ ---
69
+
70
+ ## 📖 Usage
71
+
72
+ ### Basic Calculations
73
+ ```
74
+ Type: 2 + 3 * 5
75
+ Result: ✓ 2 + 3 * 5 = 17
76
+ ```
77
+
78
+ ### Natural Language
79
+ ```
80
+ Type: what is 25% of 200
81
+ Result: ✓ what is 25% of 200 = 50
82
+ ```
83
+
84
+ ### Unit Conversions
85
+ ```
86
+ Type: 10 km to miles
87
+ Result: ✓ 10 km = 6.21 miles
88
+ ```
89
+
90
+ ### System Commands
91
+ ```
92
+ Type: sleep
93
+ Result: ✓ System going to sleep...
94
+ ```
95
+
96
+ ```
97
+ Type: lock
98
+ Result: ✓ Locking computer...
99
+ ```
100
+
101
+ ---
102
+
103
+ ## ⌨️ Keyboard Shortcuts
104
+
105
+ | Shortcut | Action |
106
+ |----------|--------|
107
+ | `Alt+Space` | Toggle search box |
108
+ | `Enter` | Execute query |
109
+ | `Esc` | Close search box |
110
+ | `Ctrl+C` | Exit overlay mode |
111
+
112
+ ---
113
+
114
+ ## 🎨 UI Features
115
+
116
+ ### Glassmorphism Design
117
+ - Semi-transparent white background
118
+ - Blur effect
119
+ - Smooth shadows
120
+ - Modern aesthetic
121
+
122
+ ### Live Preview
123
+ - See results as you type
124
+ - Instant feedback
125
+ - No need to press Enter for simple calculations
126
+
127
+ ### Auto-Hide
128
+ - Automatically hides when you click outside
129
+ - Keeps your desktop clean
130
+ - Instant recall with hotkey
131
+
132
+ ### Smooth Animations
133
+ - Slide-down effect for results
134
+ - Fade transitions
135
+ - Professional feel
136
+
137
+ ---
138
+
139
+ ## 🔧 Advanced Configuration
140
+
141
+ ### Change Hotkey
142
+ Edit `src/ui/floating-search.js`:
143
+
144
+ ```javascript
145
+ this.hotkey = 'Ctrl+Shift+Space'; // Your custom hotkey
146
+ ```
147
+
148
+ ### Customize Position
149
+ Edit `src/ui/floating-search.js`:
150
+
151
+ ```javascript
152
+ const y = Math.floor(height * 0.3); // Change 0.3 to adjust vertical position
153
+ ```
154
+
155
+ ### Customize Appearance
156
+ Edit `src/ui/overlay.html` CSS section to change:
157
+ - Colors
158
+ - Size
159
+ - Transparency
160
+ - Border radius
161
+ - Shadows
162
+
163
+ ---
164
+
165
+ ## 💡 Use Cases
166
+
167
+ ### Quick Calculations While Working
168
+ ```
169
+ Working in Excel → Alt+Space → "2500 * 0.15" → Enter
170
+ Result copied → Paste in Excel
171
+ ```
172
+
173
+ ### System Control
174
+ ```
175
+ Finishing work → Alt+Space → "lock" → Enter
176
+ Computer locked instantly
177
+ ```
178
+
179
+ ### Unit Conversions
180
+ ```
181
+ Reading recipe → Alt+Space → "2 cups to ml" → Enter
182
+ Result: 473.18 ml
183
+ ```
184
+
185
+ ### Quick Sleep
186
+ ```
187
+ Alt+Space → "sleep" → Enter
188
+ Computer goes to sleep
189
+ ```
190
+
191
+ ---
192
+
193
+ ## 🛠️ Troubleshooting
194
+
195
+ ### Hotkey Not Working?
196
+
197
+ **Check for conflicts:**
198
+ ```bash
199
+ # Other apps might be using Alt+Space
200
+ # Change the hotkey in floating-search.js
201
+ ```
202
+
203
+ ### Overlay Not Appearing?
204
+
205
+ **Restart overlay mode:**
206
+ ```bash
207
+ # Press Ctrl+C to stop
208
+ # Run: npm run overlay
209
+ ```
210
+
211
+ ### System Commands Not Working?
212
+
213
+ **Run as Administrator:**
214
+ ```bash
215
+ # Right-click Command Prompt → Run as Administrator
216
+ # Then: npm run overlay
217
+ ```
218
+
219
+ ---
220
+
221
+ ## 🎯 Comparison: Overlay vs Windows Search
222
+
223
+ | Feature | Overlay Mode | Windows Search |
224
+ |---------|--------------|----------------|
225
+ | **Hotkey** | Alt+Space (customizable) | Win+S |
226
+ | **Position** | Center screen | Top-right |
227
+ | **Design** | Modern glassmorphism | Windows default |
228
+ | **System Commands** | ✅ Yes | ❌ No |
229
+ | **Live Preview** | ✅ Yes | ❌ No |
230
+ | **Always Available** | ✅ Yes | ✅ Yes |
231
+
232
+ **Use Both!**
233
+ - **Overlay**: Quick calculations, system commands
234
+ - **Windows Search**: File search, web search, calculations
235
+
236
+ ---
237
+
238
+ ## 🚀 Auto-Start on Windows Boot
239
+
240
+ ### Option 1: Task Scheduler
241
+ 1. Open Task Scheduler
242
+ 2. Create Basic Task
243
+ 3. Name: "Mani-Calc Overlay"
244
+ 4. Trigger: At log on
245
+ 5. Action: Start program
246
+ 6. Program: `C:\Program Files\nodejs\node.exe`
247
+ 7. Arguments: `C:\Users\[YourName]\AppData\Roaming\npm\node_modules\mani-calc\bin\overlay.js`
248
+
249
+ ### Option 2: Startup Folder
250
+ 1. Press `Win+R`
251
+ 2. Type: `shell:startup`
252
+ 3. Create shortcut to overlay.js
253
+ 4. Restart computer
254
+
255
+ ---
256
+
257
+ ## 📊 Performance
258
+
259
+ - **Memory Usage**: ~50-80 MB (Electron)
260
+ - **CPU Usage**: <1% when idle
261
+ - **Startup Time**: ~2 seconds
262
+ - **Response Time**: <100ms
263
+
264
+ ---
265
+
266
+ ## 🎨 Customization Ideas
267
+
268
+ ### Change Theme
269
+ Edit `overlay.html` CSS:
270
+ ```css
271
+ /* Dark theme */
272
+ .search-box {
273
+ background: rgba(30, 30, 30, 0.95);
274
+ color: white;
275
+ }
276
+ ```
277
+
278
+ ### Add More System Commands
279
+ Edit `floating-search.js`:
280
+ ```javascript
281
+ 'screenshot': {
282
+ action: async () => {
283
+ await execAsync('snippingtool');
284
+ return 'Opening Snipping Tool...';
285
+ }
286
+ }
287
+ ```
288
+
289
+ ### Change Size
290
+ Edit `floating-search.js`:
291
+ ```javascript
292
+ width: 800, // Make wider
293
+ height: 100, // Make taller
294
+ ```
295
+
296
+ ---
297
+
298
+ ## 🔐 Privacy & Security
299
+
300
+ ### System Commands
301
+ - All commands run locally
302
+ - No network requests
303
+ - Requires user confirmation (Enter key)
304
+ - Can be disabled by removing commands
305
+
306
+ ### Data Storage
307
+ - Same as CLI mode
308
+ - History stored locally
309
+ - No telemetry
310
+
311
+ ---
312
+
313
+ ## 🎉 Tips & Tricks
314
+
315
+ ### 1. Quick Math
316
+ ```
317
+ Alt+Space → "15*23" → Enter
318
+ Result copied instantly
319
+ ```
320
+
321
+ ### 2. Chain Commands
322
+ ```
323
+ Alt+Space → "100 km to miles" → Enter
324
+ Alt+Space → "lock" → Enter
325
+ ```
326
+
327
+ ### 3. Use as Calculator Replacement
328
+ ```
329
+ Never open Calculator app again!
330
+ Alt+Space is faster
331
+ ```
332
+
333
+ ### 4. System Control Hub
334
+ ```
335
+ Alt+Space → "sleep"
336
+ Alt+Space → "lock"
337
+ Alt+Space → "mute"
338
+ ```
339
+
340
+ ---
341
+
342
+ ## 🗺️ Future Enhancements
343
+
344
+ - [ ] Custom themes
345
+ - [ ] Plugin system
346
+ - [ ] File search integration
347
+ - [ ] Web search integration
348
+ - [ ] Clipboard history
349
+ - [ ] Snippets/templates
350
+ - [ ] Multi-monitor support
351
+ - [ ] Custom hotkeys per command
352
+
353
+ ---
354
+
355
+ ## 🤝 Contributing
356
+
357
+ Want to add more system commands or features? See [CONTRIBUTING.md](../CONTRIBUTING.md)
358
+
359
+ ---
360
+
361
+ **Enjoy your new productivity superpower!** ⚡