Leonid Shevtsov
Leonid Shevtsov
π this plugin needs a release I can't use it as long as shift+click is still broken ( #31 )
Apparently running `react-native link` only adds a reference to `RNI18n` to the Podfile. You still need to run `pod install` afterwards. At least that's how I fixed it. Also I...
I entirely support this idea, but you'll probably need to change the way URLs are opened right now (with the `webbrowser` module), and it has to remain cross-platform.
Thanks, it does make sense to enhance the regex to support non-ASCII urls.
I will add the quote character to the URL regex, but the bad news is - it's going to stop at "Γ©". URL regexes are tricky, and I picked a...
If you haven't found such a plugin yet I'm willing to try this.
With division and multiplication it's even easier to confuse precedence: https://prettier.github.io/prettier/#%7B%22content%22%3A%22function%20shareInPercent(total%2C%20part)%7B%5Cn%20%20return%20(part%20%2F%20total)%20*%20100%3B%5Cn%7D%22%2C%22options%22%3A%7B%22printWidth%22%3A80%2C%22tabWidth%22%3A2%2C%22singleQuote%22%3Afalse%2C%22trailingComma%22%3A%22none%22%2C%22bracketSpacing%22%3Atrue%2C%22jsxBracketSameLine%22%3Afalse%2C%22parser%22%3A%22babylon%22%2C%22semi%22%3Afalse%2C%22useTabs%22%3Afalse%2C%22doc%22%3Afalse%7D%7D Division is a very powerful semantic separator of divisor from dividend in an expression. I have to make an...
I didn't mean that prettier breaks code. The code works fine. It's us humans who have a hard time understanding the expression without brackets because for humans the division operator...
I don't know if it's too convoluted or not (also not a pythonist), but this PR sure helped me produce a chart for all of our repos together π
Here's a short Go snippet using the [official client](https://miniflux.app/docs/api.html#go-client) It moves all feeds into the same category. ``` package main import ( "log" miniflux "miniflux.app/client" ) func main() { client...