Live data from Hacker News

Viewing profile — vishaltelangre

vishaltelangre

HN member
Joined
Fri, Nov 02, 2012, 7:50 PM UTC
HN karma
507
Public activity
97 items

About vishaltelangre

https://vishaltelangre.com

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

  1. 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…

  2. story
  3. story
  4. 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…

  5. comment
    Comment #31027263

    Very inspiring and insightful story! Thanks for sharing it.

  6. 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://…

  7. 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 …

  8. story
  9. story
  10. story
  11. story
  12. story
  13. story
  14. story
  15. story
  16. story
  17. story
  18. story
  19. 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...

  20. 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…

  21. comment
    Comment #19272399

    UPDATE: Now ff also uses threads to achieve parallelism.

  22. 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

  23. 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' …

  24. 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…

  25. comment
    Comment #19264133

    Related discussion - https://www.reddit.com/r/rust/comments/av31ae/ff_find_files_... .