Boop
Boop copied to clipboard
A scriptable scratchpad for developers. In slow yet steady progress.
Hi, know you guys have been busy fixing and doing great things in main Boop app, I just wanted to add and suggest that I've created a script that generates...
Would it be great to be able to capitalize a title? I usually [go to this site](https://capitalizemytitle.com/), but it would be a time-saver to do it directly from boop.
Input: ``` this is a test of the emergency broadcasting system ``` Output: ``` This Is a Test of the Emergency Broadcasting System ```
This script joins lines into a JS array, converting to numbers to numbers along the way: Sample input: ``` line 1, 23.12 another option -85 ``` Output: ``` ["line 1,",23.12,"another","option",-85]...
It's common to see timestamps in both seconds since epoch, as well as milliseconds. It'd be great if Boop could tell the difference and give the appropriate GMT date!
To address https://github.com/IvanMathy/Boop/issues/280 Supports timestamps in both seconds (10 numbers) or milliseconds (13 numbers) Input: ``` 1625842985835 ``` Output: ``` 2021-07-09T15:03:05.835Z ```
Start Case does nothing on `THIS IS UPPERCASE` Current workaround: 1) Downcase 2) Start Case
Thanks for making Boop, I'm loving it so far! I noticed a couple typos in the 'Custom Scripts' docs, so figured I'd help out 😄
I noticed that a lot of the scripts in the `Scripts/` folder actually contain invalid JSON. These files contain a trailing comma which is disallowed by JSON: * Scripts/FullURLDecode.js *...
This week I started using Boop in earnest and as a Dash and Launchbar user I expect Control-{N,J} to advance a selection to the next item, or Control-{P,K} to move...