DonaldDuck313
DonaldDuck313
If I start with this code for example: ``` function foo(bar){ return bar + 1; } ``` This code gets minified to: ``` function foo(bar){return bar+1} ``` I would expect...
The API says that it's cloudy right now (July 21st 2022 at 13.00) in Lund, Sweden (latitude 55.42N, longitude 13.11E), but in reality it's sunny. If I make a request...
I have the following Javascript code that I would like to minify with JShrink: ``` function airplaneIsCarrierBased(model){ return /^(FI-167|Swordfish|Fulmar|Firefly|F4F Wildcat|F6F-[35] Hellcat|Latécoère 298|A[567]M)$/.test(model); } console.log(airplaneIsCarrierBased("F6F-5 Hellcat")); ``` This unminified code logs...
I'm trying to use this library in Android. To import it, I use this in build.gradle: ``` dependencies{ implementation group: 'net.iakovlev', name: 'timeshape', version: '2020d.12' } ``` Then I use...
If a post has a code block surrounded by three backticks (```` ``` ````), the magic editor will remove all backticks except one and indent with 4 spaces. For example...
### Description of the bug When I try to collapse a block by clicking on the arrow next to the line number, nothing happens. When I don't hover over the...
**OS** Windows **Gmail Desktop Version** 2.25.3.0 **Describe the bug** When I download a file and choose a different name than the original name, the extension isn't automatically added to the...
I think it would be useful to have the weather temperature in the Marine Weather API.
I'm trying to write a program on Windows that uses cmark as a library, but I can't get it to compile. I tried running the following commands in a WSL...
## Problem I have a tippy bubble to which I've added a button: ```javascript const bubble = tippy("#someElement", { content: "Click here", allowHTML: true, showOnCreate: true, trigger: "manual", hideOnClick: false...