Viewing profile — vishaltelangre
vishaltelangre
HN member- Joined
- Fri, Nov 02, 2012, 7:50 PM UTC
- HN karma
- 507
- Public activity
- 97 items
- HN profile
- View on Hacker News ↗
About vishaltelangre
https://github.com/vishaltelangre
https://twitter.com/suruwat
my public key: https://keybase.io/vishaltelangre; my proof: https://keybase.io/vishaltelangre/sigs/F8hb34zCZlPNp-TcVXWRxaJ1sHiz6UN5M08gxYfJtKs
Recent public activity
-
comment
Comment #48459621
I wrote NerdCalci ( https://github.com/vishaltelangre/NerdCalci ), a free calculator app for Android. Besides, I made a lot of automation scripts (mostly using Ruby) that run on my…
- story
- story
-
comment
Comment #31069652
> when MBA/MBP are consistently achieving 10-16+ with real-world use. Really? I have a 2019 MBP and it doesn't last more than 3 hrs on 100% charge. The only usage is for the web de…
-
comment
Comment #31027263
Very inspiring and insightful story! Thanks for sharing it.
-
comment
Comment #30941879
https://vishaltelangre.com I write about general programming stuff (but not active for a year now). A little zine book on Consul I had written last year (it's free, btw) - https://…
-
comment
Comment #23817771
Messages app on iOS is the most frustrating app I have to use often and Apple doesn't allow any alternative as well. There is no way to star/pin certain messages in it. It doesn't …
- story
- story
- story
- story
- story
- story
- story
- story
- story
- story
- story
-
comment
Comment #19272826
Here[1] is the detailed case study of rewriting Stylo in Rust which Steve mentioned in the above comment. [1] https://hacks.mozilla.org/2019/02/rewriting-a-browser-compon...
-
comment
Comment #19272748
This is no longer true. `ff` searches through all files recursively by default no matter whether a file or directory is enlisted in ".gitignore" or is hidden. There are flags to ch…
-
comment
Comment #19272399
UPDATE: Now ff also uses threads to achieve parallelism.
-
comment
Comment #19270350
In ff v0.1.4, the results are dramatically improved. > ff '.*.js' ~/projects > /dev/null 7.59s user 24.21s system 337% cpu 9.413 total
-
comment
Comment #19269028
In ff v0.1.3, the slowness is reduced to some extent. > ff '.*.js' ~/projects > /dev/null 5.79s user 14.77s system 97% cpu 21.024 total > find -E ~/projects -type f -regex '.*.js' …
-
comment
Comment #19264216
> `fd` uses threads and `ff` does not. Author here. This is true. ff does not use threads right now. I have started learning Rust just a few days ago. I am not quite yet familiar w…
-
comment
Comment #19264133
Related discussion - https://www.reddit.com/r/rust/comments/av31ae/ff_find_files_... .