SundaraRaman R

Results 27 comments of SundaraRaman R

Hi! There's a question on Stackoverflow about [reading scanned PDFs](https://stackoverflow.com/questions/74134131/in-julia-how-to-read-a-scanned-multipage-pdf-and-convert-to-image-for-ocr), where I believe the goal is to extract images out from a PDF. Is that the functionality this issue is...

I looked into how other languages did it, since I assumed this would be a very common function. To my surprise, I found that a lot of languages - Javascript,...

#### (Bonus info about other languages, in case it's useful in the future) Kotlin and Ruby have something sort of like Julia's `rsplit`, but not quite: * Kotlin has [substringAfterLast](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/substring-after-last.html)...

The code for `Pkg.REPLMode._shared_envs` is quite close to what you've written: ```julia function _shared_envs() possible = String[] for depot in Base.DEPOT_PATH envdir = joinpath(depot, "environments") isdir(envdir) || continue append!(possible, readdir(envdir))...

Thanks for the quick reply! I wasn't able to find any add-on that specifically tracks per-tab time, but [LeechBlock](https://addons.mozilla.org/en-US/firefox/addon/leechblock/) tracks time by matching the full URL against a pattern, thus...

@Spitfire1900 I might end up agreeing with you, if the code ends up being of even moderate complexity. I originally envisioned this as just a cool bit of easily-obtained stats,...

On [this goggle](https://github.com/digital-carver/julia_brave_goggle/blob/main/julia_programming.goggle), I tried the generic `$downrank` goggle, and the results were the same whether the line was: 1. `$downrank` 2. `$downrank=10` 3. `! $downrank` (i.e. no downranking) I...

@Mathnerd314 Since your fork of the repo doesn't have an Issues tab, I'll ask it here: could you link us to a compiled xpi of your version of this addon?...

Thank you very much for the xpi release. It [looks like](https://wiki.mozilla.org/Add-ons/Extension_Signing#Timeline) from Firefox 48 and above, "Release and Beta versions of Firefox for Desktop will not allow unsigned extensions to...

> At any rate it would be possible to check to see if the current cursor character is whitespace and trigger a 'w' event. It also happens when the cursor...